summaryrefslogtreecommitdiff
path: root/support/w2latex/rtf.context.c
blob: b7ce8a5e67c7ea520aa628a21e8ba0bfa3328acd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
void parcourscontexts(void);
/**************************************************************************************************
**	Function name : nouvcontext
**
**	Description : Cree un nouveau maillon contexte a partir de sa description et retourne un
                      pointeur sur ce maillon
**	Input : Etat: Centre, aligne a gauche, aligne a droite ou justifie.
**	Output : Pointeur sur le maillon cree.
**************************************************************************************************/
p_contexte nouvcontext(int Etatctxt)
{
  p_contexte contextemp=DebLisContextes;
  p_contexte contextaux=NULL;
  /*fprintf(stderr,"NouvContextIn\n");*/
  if (contextemp!=NULL)
    {
      while(contextemp->suiv!=NULL)
	contextemp=contextemp->suiv;
      contextaux=(p_contexte) malloc (sizeof(t_contexte));
      if (contextaux==NULL)
	{
	  fprintf(stderr,"FATAL ERROR: MALLOC FAILED\n");
	  exit(0);
	}
      contextemp->suiv=contextaux;
      contextemp->suiv->prec=contextemp;
      contextemp=contextemp->suiv;
    }
  else
    {
      contextemp=(p_contexte) malloc (sizeof(t_contexte));
      if (contextemp==NULL)
	{
	  fprintf(stderr,"FATAL ERROR: MALLOC FAILED\n");
	  exit(0);
	}
      DebLisContextes=contextemp;
      contextemp->prec=NULL;
    };
  contextemp->EtatTexte=Etatctxt;
  contextemp->suiv=NULL;
  /*fprintf(stderr,"NouvContextOut\n");*/
  return contextemp;
}

/**************************************************************************************************
**	Function name : contextback
**
**	Description :
**	Input :
**	Output :
**************************************************************************************************/
contextback()
{
  /*fprintf(stderr,"ContextBackIn\n");*/
  parcourscontexts();
  if (ContextActuel!=NULL)
    {
      switch (ContextActuel->EtatTexte)
	{
      case JUST:
	break;
      case CENTER:
	FLAG_Center=0;
	fprintf(SORT,"\n\\end{center}%%\n");
	break;
      case RIGHT:
	FLAG_FlushRight=0;
	fprintf(SORT,"\n\\end{flushright}%%\n");
	break;
      case LEFT:
	FLAG_FlushLeft=0;
	fprintf(SORT,"\n\\end{flushleft}%%\n");
	break;
      default:
	/*fprintf(SORT,"\nERROR: Contexte\n");*/
	break;
	}
      ContextActuel=ContextActuel->prec;
      if (ContextActuel!=NULL)
	{
	  free(ContextActuel->suiv);
	  ContextActuel->suiv=NULL;
	}
      else
	{
	  free(DebLisContextes);
	  DebLisContextes=NULL;
	  ContextActuel=NULL;
	}
    }
}

/**************************************************************************************************
**	Function name : parcourscontexts
**
**	Description : Parcours de la liste chainee de contextes. (Debuggage);
**	Input :void
**	Output :void 
**************************************************************************************************/
void parcourscontexts(void)
{
  /*p_contexte contextemp=DebLisContextes;
  while (contextemp!=NULL)
    {
      contextemp=contextemp->suiv;
    }
  fprintf(stderr,"ParcoursContextOut\n");*/
}

/**************************************************************************************************
**	Function name : endkeepcontext
**
**	Description : Termine le contexte courrant mais le garde en tant que contexte courrant.
                      Utile pour les Tableaux, car TeX impose de terminer les environnements
                      avant de sortir de la minipage, alors que RTF ne le fait pas.
                      A utiliser suivi immediatement de showcontext...
**	Input :void
**	Output :void
**************************************************************************************************/
void endkeepcontext(void)
{
  if (ContextActuel!=NULL)
    {
      switch (ContextActuel->EtatTexte)
	{
      case JUST:
	break;
      case CENTER:
	FLAG_Center=1;
	fprintf(SORT,"\n\\end{center}%%\n");
	break;
      case RIGHT:
	FLAG_FlushRight=1;
	fprintf(SORT,"\n\\end{flushright}%%\n");
	break;
      case LEFT:
	FLAG_FlushLeft=1;
	fprintf(SORT,"\n\\end{flushleft}%%\n");
	break;
      default:
	fprintf(SORT,"\nERROR: Contexte\n");
	}
    }
}


/**************************************************************************************************
**	Function name : showcontext
**
**	Description : Exprime les caracteristiques du contexte courrant. A utiliser en particulier
                      pour les tableaux apres endkeepcontext
**	Input :void
**	Output :void
**************************************************************************************************/
void showcontext(void)
{
  if (ContextActuel!=NULL)
    {
      switch (ContextActuel->EtatTexte)
	{
      case JUST:
	break;
      case CENTER:
	FLAG_Center=1;
	fprintf(SORT,"\n\\begin{center}%%\n");
	break;
      case RIGHT:
	FLAG_FlushRight=1;
	fprintf(SORT,"\n\\begin{flushright}%%\n");
	break;
      case LEFT:
	FLAG_FlushLeft=1;
	fprintf(SORT,"\n\\begin{flushleft}%%\n");
	break;
      default:
	fprintf(SORT,"\nERROR: Contexte\n");
	}
    }
}