File: style.c

package info (click to toggle)
fvwm1 1.24r-56
  • links: PTS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 2,060 kB
  • ctags: 2,032
  • sloc: ansic: 23,586; sh: 108; makefile: 91
file content (399 lines) | stat: -rw-r--r-- 10,120 bytes parent folder | download | duplicates (9)
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
/****************************************************************************
 * This module is all original code 
 * by Rob Nation 
 * Copyright 1993, Robert Nation
 *     You may use this code for any purpose, as long as the original
 *     copyright remains in the source code and all documentation
 ****************************************************************************/

/***********************************************************************
 *
 * code for parsing the fvwm style command
 *
 ***********************************************************************/
#include "../configure.h"

#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
#include <unistd.h>

#include "fvwm.h"
#include "menus.h"
#include "misc.h"
#include "parse.h"
#include "screen.h"
#include "../version.h"

void ParseStyle(char *text, FILE *fd, char **list, int *junk)
{
  extern char *orig_tline;
  char *name, *line;
  char *restofline,*tmp;
  char *icon_name = NULL;
  char *forecolor = NULL;
  char *backcolor = NULL;
  unsigned long off_buttons=0;
  unsigned long on_buttons=0;
  int butt;

  int len,desknumber = 0,bw=0, nobw = 0;
  unsigned long off_flags = 0;
  unsigned long on_flags = 0;
  
  name = stripcpy2(text,FALSE,TRUE);
  /* in case there was no argument! */
  if(name == NULL)
    return;

  restofline = stripcpy3(text,FALSE);
  line = restofline;

  if(restofline == NULL)return;
  while((*restofline != 0)&&(*restofline != '\n'))
    {
      while(isspace(*restofline))restofline++;
      if(mystrncasecmp(restofline,"ICON",4)==0)
	{
	  restofline +=4;
	  while(isspace(*restofline))restofline++;
	  tmp = restofline;
	  len = 0;
	  while((tmp != NULL)&&(*tmp != 0)&&(*tmp != ',')&&(*tmp != '\n'))
	    {
	      tmp++;
	      len++;
	    }
	  if(len > 0)
	    {
	      icon_name = safemalloc(len+1);
	      strncpy(icon_name,restofline,len);
	      icon_name[len] = 0;
	      off_flags |= ICON_FLAG;
	      on_flags |= SUPPRESSICON_FLAG;
	    }
	  else
	    on_flags |= SUPPRESSICON_FLAG;	    
	  restofline = tmp;
	}
      if(mystrncasecmp(restofline,"COLOR",5)==0)
	{
	  restofline +=5;
	  while(isspace(*restofline))restofline++;
	  tmp = restofline;
	  len = 0;
	  while((tmp != NULL)&&(*tmp != 0)&&(*tmp != ',')&&
		(*tmp != '\n')&&(*tmp != '/')&&(!isspace(*tmp)))
	    {
	      tmp++;
	      len++;
	    }
	  if(len > 0)
	    {
	      forecolor = safemalloc(len+1);
	      strncpy(forecolor,restofline,len);
	      forecolor[len] = 0;
	      off_flags |= FORE_COLOR_FLAG;
	    }

	  while(isspace(*tmp))tmp++;
	  if(*tmp == '/')
	    {
	      tmp++;
	      while(isspace(*tmp))tmp++;
	      restofline = tmp;
	      len = 0;
	      while((tmp != NULL)&&(*tmp != 0)&&(*tmp != ',')&&
		    (*tmp != '\n')&&(*tmp != '/')&&(!isspace(*tmp)))
		{
		  tmp++;
		  len++;
		}
	      if(len > 0)
		{
		  backcolor = safemalloc(len+1);
		  strncpy(backcolor,restofline,len);
		  backcolor[len] = 0;
		  off_flags |= BACK_COLOR_FLAG;
		}
	    }
	  restofline = tmp;
	}
      if(mystrncasecmp(restofline,"FORECOLOR",9)==0)
	{
	  restofline +=9;
	  while(isspace(*restofline))restofline++;
	  tmp = restofline;
	  len = 0;
	  while((tmp != NULL)&&(*tmp != 0)&&(*tmp != ',')&&
		(*tmp != '\n')&&(*tmp != '/')&&(!isspace(*tmp)))
	    {
	      tmp++;
	      len++;
	    }
	  if(len > 0)
	    {
	      forecolor = safemalloc(len+1);
	      strncpy(forecolor,restofline,len);
	      forecolor[len] = 0;
	      off_flags |= FORE_COLOR_FLAG;
	    }
	  restofline = tmp;
	}

      if(mystrncasecmp(restofline,"BACKCOLOR",9)==0)
	{
	  restofline +=9;
	  while(isspace(*restofline))restofline++;
	  tmp = restofline;
	  len = 0;
	  while((tmp != NULL)&&(*tmp != 0)&&(*tmp != ',')&&
		(*tmp != '\n')&&(*tmp != '/')&&(!isspace(*tmp)))
	    {
	      tmp++;
	      len++;
	    }
	  if(len > 0)
	    {
	      backcolor = safemalloc(len+1);
	      strncpy(backcolor,restofline,len);
	      backcolor[len] = 0;
	      off_flags |= BACK_COLOR_FLAG;
	    }
	  restofline = tmp;
	}
      else if(mystrncasecmp(restofline,"NoIconTitle",11)==0)
	{
	  off_flags |= NOICON_TITLE_FLAG;
	  restofline +=11;
	}	
      else if(mystrncasecmp(restofline,"IconTitle",9)==0)
	{
	  on_flags |= NOICON_TITLE_FLAG;
	  restofline +=9;
	}	
      else if(mystrncasecmp(restofline,"NOICON",6)==0)
	{
	  restofline +=6;
	  off_flags |= SUPPRESSICON_FLAG;
	}
      else if(mystrncasecmp(restofline,"NOTITLE",7)==0)
	{
	  restofline +=7;
	  off_flags |= NOTITLE_FLAG;
	}
      else if(mystrncasecmp(restofline,"TITLE",5)==0)
	{
	  restofline +=5;
	  on_flags |= NOTITLE_FLAG;
	}
      else if(mystrncasecmp(restofline,"NOHANDLES",9)==0)
	{
	  restofline +=9;
	  off_flags |= NOBORDER_FLAG;
	}	
      else if(mystrncasecmp(restofline,"HANDLES",7)==0)
	{
	  restofline +=7;
	  on_flags |= NOBORDER_FLAG;
	}
      else if (mystrncasecmp(restofline,"NOBUTTON",8)==0)
      {
        restofline +=8;

        sscanf(restofline,"%d",&butt);
        while(isspace(*restofline))restofline++;
        while((!isspace(*restofline))&&(*restofline!= 0)&&
              (*restofline != ',')&&(*restofline != '\n'))
          restofline++;
        while(isspace(*restofline))restofline++;

        off_buttons |= (1<<(butt-1));
      }
      else if (mystrncasecmp(restofline,"BUTTON",6)==0)
	{
	  restofline +=6;
	  
	  sscanf(restofline,"%d",&butt);
	  while(isspace(*restofline))restofline++;
	  while((!isspace(*restofline))&&(*restofline!= 0)&&
		(*restofline != ',')&&(*restofline != '\n'))
	    restofline++;
	  while(isspace(*restofline))restofline++;
	  
	  on_buttons |= (1<<(butt-1));        
	}
      else if(mystrncasecmp(restofline,"WindowListSkip",14)==0)
	{
	  restofline +=14;
	  off_flags |= LISTSKIP_FLAG;
	}	
      else if(mystrncasecmp(restofline,"WindowListHit",13)==0)
	{
	  restofline +=13;
	  on_flags |= LISTSKIP_FLAG;
	}	
      else if(mystrncasecmp(restofline,"CirculateSkip",13)==0)
	{
	  restofline +=13;
	  off_flags |= CIRCULATESKIP_FLAG;
	}	
      else if(mystrncasecmp(restofline,"CirculateHit",12)==0)
	{
	  restofline +=12;
	  on_flags |= CIRCULATESKIP_FLAG;
	}	
      else if(mystrncasecmp(restofline,"StartIconic",11)==0)
	{
	  restofline +=11;
	  off_flags |= START_ICONIC_FLAG;
	}	
      else if(mystrncasecmp(restofline,"StartNormal",11)==0)
	{
	  restofline +=11;
	  on_flags |= START_ICONIC_FLAG;
	}	
      else if(mystrncasecmp(restofline,"StaysOnTop",10)==0)
	{
	  restofline +=10;
	  off_flags |= STAYSONTOP_FLAG;	  
	}	
      else if(mystrncasecmp(restofline,"StaysPut",8)==0)
	{
	  restofline +=8;
	  on_flags |= STAYSONTOP_FLAG;	  
	}	
      else if(mystrncasecmp(restofline,"Sticky",6)==0)
	{
	  off_flags |= STICKY_FLAG;	  
	  restofline +=6;
	}	
      else if(mystrncasecmp(restofline,"Slippery",8)==0)
	{
	  on_flags |= STICKY_FLAG;	  
	  restofline +=8;
	}	
      else if(mystrncasecmp(restofline,"BorderWidth",11)==0)
	{
	  restofline +=11;
	  off_flags |= BW_FLAG;
	  sscanf(restofline,"%d",&bw);
	  while(isspace(*restofline))restofline++;
	  while((!isspace(*restofline))&&(*restofline!= 0)&&
		 (*restofline != ',')&&(*restofline != '\n'))
	    restofline++;
	  while(isspace(*restofline))restofline++;
	}
      else if(mystrncasecmp(restofline,"HandleWidth",11)==0)
	{
	  restofline +=11;
	  off_flags |= NOBW_FLAG;
	  sscanf(restofline,"%d",&nobw);
	  while(isspace(*restofline))restofline++;
	  while((!isspace(*restofline))&&(*restofline!= 0)&&
		 (*restofline != ',')&&(*restofline != '\n'))
	    restofline++;
	  while(isspace(*restofline))restofline++;
	}
      else if(mystrncasecmp(restofline,"STARTSONDESK",12)==0)
	{
	  restofline +=12;
	  off_flags |= STAYSONDESK_FLAG;
	  sscanf(restofline,"%d",&desknumber);
	  while(isspace(*restofline))restofline++;
	  while((!isspace(*restofline))&&(*restofline!= 0)&&
		 (*restofline != ',')&&(*restofline != '\n'))
	    restofline++;
	  while(isspace(*restofline))restofline++;
	}
      else if(mystrncasecmp(restofline,"STARTSANYWHERE",14)==0)
	{
	  restofline +=14;
	  on_flags |= STAYSONDESK_FLAG;
	}
      while(isspace(*restofline))restofline++;
      if(*restofline == ',')
	restofline++;
      else if((*restofline != 0)&&(*restofline != '\n'))
	{
	  fvwm_err("bad style command in line %s at %s",
		   orig_tline,restofline,NULL);
	  return;
	}
    }
  /* capture default icons */
  if(strcmp(name,"*") == 0)
    {
      if(off_flags & ICON_FLAG)
	Scr.DefaultIcon = icon_name;
      off_flags &= ~ICON_FLAG;
      icon_name = NULL;
    }

  /* capture default colors */
  if(strcmp(name,"*") == 0)
    {
      extern char *Stdfore, *Stdback;

      if(off_flags & FORE_COLOR_FLAG)
	Stdfore = forecolor;
      off_flags &= ~FORE_COLOR_FLAG;
      forecolor = NULL;
      if(off_flags & BACK_COLOR_FLAG)
	Stdback = backcolor;
      off_flags &= ~BACK_COLOR_FLAG;
      backcolor = NULL;
    }
  free(line);
  AddToList(name,icon_name,off_flags,on_flags,desknumber,bw,nobw,
	    forecolor,backcolor,off_buttons,on_buttons);
}


void AddToList(char *name, char *icon_name, unsigned long off_flags, 
	       unsigned long on_flags, int desk, int bw, int nobw,
	       char *forecolor, char *backcolor,
               unsigned long off_buttons, unsigned long on_buttons)
{
  name_list *nptr,*lastptr = NULL;

  if((name == NULL)||((off_flags == 0)&&(on_flags == 0)&&(on_buttons == 0)&&
		      (off_buttons == 0)))
    {
      if(name)
	free(name);
      if(icon_name)
	free(icon_name);
      return;
    }

  /* used to merge duplicate entries, but that is no longer
   * appropriate since conficting styles are possible, and the
   * last match should win! */
  for (nptr = Scr.TheList; nptr != NULL; nptr = nptr->next)
    {
      lastptr=nptr;
    }

  nptr = (name_list *)safemalloc(sizeof(name_list));
  nptr->next = NULL;
  nptr->name = name;
  nptr->on_flags = on_flags;
  nptr->off_flags = off_flags;
  nptr->value = icon_name;
  nptr->Desk = desk;
  nptr->border_width = bw;
  nptr->resize_width = nobw;
  nptr->ForeColor = forecolor;
  nptr->BackColor = backcolor;

  nptr->off_buttons = off_buttons;
  nptr->on_buttons = on_buttons;

  if(lastptr != NULL)
    lastptr->next = nptr;
  else
    Scr.TheList = nptr;
}