File: PushButton.c

package info (click to toggle)
fvwm95 2.0.43ba-15
  • links: PTS
  • area: main
  • in suites: potato
  • size: 6,356 kB
  • ctags: 4,759
  • sloc: ansic: 46,398; makefile: 1,586; sh: 782; perl: 328
file content (304 lines) | stat: -rw-r--r-- 8,317 bytes parent folder | download | duplicates (6)
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
#include "Tools.h"

/***********************************************/
/***********************************************/
/* Fonction pour PushButton                    */
/***********************************************/
/***********************************************/
void InitPushButton(struct XObj *xobj)
{
 unsigned long mask;
 XSetWindowAttributes Attr;
 int i;
 char *str;
 int asc,desc,dir;
 XCharStruct struc;

 /* Enregistrement des couleurs et de la police */
 MyAllocNamedColor(xobj->display,*xobj->colormap,xobj->forecolor,&xobj->TabColor[fore]); 
 MyAllocNamedColor(xobj->display,*xobj->colormap,xobj->backcolor,&xobj->TabColor[back]);
 MyAllocNamedColor(xobj->display,*xobj->colormap,xobj->licolor,&xobj->TabColor[li]); 
 MyAllocNamedColor(xobj->display,*xobj->colormap,xobj->shadcolor,&xobj->TabColor[shad]);
 MyAllocNamedColor(xobj->display,*xobj->colormap,"#000000",&xobj->TabColor[black]);
 MyAllocNamedColor(xobj->display,*xobj->colormap,"#FFFFFF",&xobj->TabColor[white]);


 mask=0;
 Attr.cursor=XCreateFontCursor(xobj->display,XC_hand2); 
 mask|=CWCursor;
 Attr.background_pixel=xobj->TabColor[back].pixel;
 mask|=CWBackPixel;


 /* Epaisseur de la fenetre = 0 */
 xobj->win=XCreateWindow(xobj->display,*xobj->ParentWin,
		xobj->x,xobj->y,xobj->width,xobj->height,0,
		CopyFromParent,InputOutput,CopyFromParent,
		mask,&Attr);
 xobj->gc=XCreateGC(xobj->display,xobj->win,0,NULL);
 XSetForeground(xobj->display,xobj->gc,xobj->TabColor[fore].pixel);
 XSetBackground(xobj->display,xobj->gc,xobj->TabColor[back].pixel);
 if ((xobj->xfont=XLoadQueryFont(xobj->display,xobj->font))==NULL)
  {
   fprintf(stderr,"Can't load font %s\n",xobj->font);
  }
 else
  XSetFont(xobj->display,xobj->gc,xobj->xfont->fid);
 XSetLineAttributes(xobj->display,xobj->gc,1,LineSolid,CapRound,JoinMiter);
 
 /* Redimensionnement du widget */
 str=(char*)GetMenuTitle(xobj->title,1);
 if (xobj->icon==NULL)
 {
  XTextExtents(xobj->xfont,"lp",strlen("lp"),&dir,&asc,&desc,&struc);
  i=asc+desc+12;
  if (xobj->height<i)
   xobj->height=i;
  i=XTextWidth(xobj->xfont,str,strlen(str))+16;
  if (xobj->width<i)
   xobj->width=i;
 }
 else if (strlen(str)==0)
 {
  if (xobj->height<xobj->icon_h+10)
   xobj->height=xobj->icon_h+10;
  if (xobj->width<xobj->icon_w+10)
   xobj->width=xobj->icon_w+10;
 }
 else
 {
  if (xobj->icon_w+10>XTextWidth(xobj->xfont,str,strlen(str))+16)
   i=xobj->icon_w+10;
  else
   i=XTextWidth(xobj->xfont,str,strlen(str))+16;
  if (xobj->width<i)
   xobj->width=i;
  i=xobj->icon_h+2*(asc+desc+10);
  if (xobj->height<i)
   xobj->height=i;
 }
 XResizeWindow(xobj->display,xobj->win,xobj->width,xobj->height);
 xobj->value3=CountOption(xobj->title);
}

void DestroyPushButton(struct XObj *xobj)
{
 XFreeFont(xobj->display,xobj->xfont);
 XFreeGC(xobj->display,xobj->gc);
 XDestroyWindow(xobj->display,xobj->win);
}


void DrawPushButton(struct XObj *xobj)
{
 DrawReliefRect(0,0,xobj->width,xobj->height,xobj,
   xobj->TabColor[li].pixel,xobj->TabColor[shad].pixel,xobj->TabColor[black].pixel,0);
 DrawIconStr(0,xobj,True);
}

void EvtMousePushButton(struct XObj *xobj,XButtonEvent *EvtButton)
{
 static XEvent event;
 int End=1;
 unsigned int modif;
 int x1,x2,y1,y2,i,j,oldy;
 Window Win1,Win2,WinPop;
 Window WinBut=0;
 int In;
 char *str;
 int x,y,hOpt,yMenu,hMenu,wMenu;
 int oldvalue,newvalue;
 unsigned long mask;
 XSetWindowAttributes Attr;
 int asc,desc,dir;
 XCharStruct struc;


 if (EvtButton->button==Button1)
 {
  j=xobj->height/2+3;
  i=(xobj->width-XTextWidth(xobj->xfont,xobj->title,strlen(xobj->title)))/2;

  while (End)
  {
   XNextEvent(xobj->display, &event);
   switch (event.type)
   {
      case EnterNotify:
	   XQueryPointer(xobj->display,*xobj->ParentWin,
		&Win1,&Win2,&x1,&y1,&x2,&y2,&modif);
	   if (WinBut==0)
	   {
	    WinBut=Win2;
	    DrawReliefRect(0,0,xobj->width,xobj->height,xobj,
		xobj->TabColor[shad].pixel,xobj->TabColor[li].pixel,xobj->TabColor[black].pixel,0);
	    DrawIconStr(1,xobj,True);
	    In=1;
	   }
	   else
	   {
	    if (Win2==WinBut)
	    {
	     DrawReliefRect(0,0,xobj->width,xobj->height,xobj,
		xobj->TabColor[shad].pixel,xobj->TabColor[li].pixel,xobj->TabColor[black].pixel,0);
	     DrawIconStr(1,xobj,True);
	     In=1;
	    }
	    else if (In)
	    {
	     In=0;
	     DrawReliefRect(0,0,xobj->width,xobj->height,xobj,
		xobj->TabColor[li].pixel,xobj->TabColor[shad].pixel,xobj->TabColor[black].pixel,0);
	     DrawIconStr(0,xobj,True);
	    }
	   }
	  break;
      case LeaveNotify:
	   XQueryPointer(xobj->display,*xobj->ParentWin,
		&Win1,&Win2,&x1,&y1,&x2,&y2,&modif);
	   if (Win2==WinBut)
	   {
	    In=1;
	    DrawReliefRect(0,0,xobj->width,xobj->height,xobj,
		xobj->TabColor[shad].pixel,xobj->TabColor[li].pixel,xobj->TabColor[black].pixel,0);
	    DrawIconStr(1,xobj,True);
	   }
	   else if (In)
	   {
	    DrawReliefRect(0,0,xobj->width,xobj->height,xobj,
		xobj->TabColor[li].pixel,xobj->TabColor[shad].pixel,xobj->TabColor[black].pixel,0);
	    DrawIconStr(0,xobj,True);
	    In=0;
	   }
	  break;
      case ButtonRelease:
	   End=0;
	   DrawReliefRect(0,0,xobj->width,xobj->height,xobj,
		xobj->TabColor[li].pixel,xobj->TabColor[shad].pixel,xobj->TabColor[black].pixel,0);
	   DrawIconStr(0,xobj,True);
	   if (In)
	   {
	    /* Envoie d'un message vide de type SingleClic pour un clique souris */
	    xobj->value=1;
	    SendMsg(xobj,SingleClic);
	    xobj->value=0;
	   }
	  break;
     }
   }
  }
  else if (EvtButton->button==Button3)		/* affichage du popup menu */
   if (xobj->value3>1)
   {
    XTextExtents(xobj->xfont,"lp",strlen("lp"),&dir,&asc,&desc,&struc);
    hOpt=asc+desc+10;
    hMenu=(xobj->value3-1)*hOpt;			/* Hauteur totale du menu */
    yMenu=xobj->y+xobj->height;
    wMenu=0;
    for (i=2;i<=xobj->value3;i++)
    {
     str=(char*)GetMenuTitle(xobj->title,i);
     if (wMenu<XTextWidth(xobj->xfont,str,strlen(str))+34)
      wMenu=XTextWidth(xobj->xfont,str,strlen(str))+34;
     free(str);
    }

    /* Creation de la fenetre menu */
    XTranslateCoordinates(xobj->display,*xobj->ParentWin,
 		XRootWindow(xobj->display,XDefaultScreen(xobj->display)),xobj->x,yMenu,&x,&y,&Win1);
    if (x<0) x=0;
    if (y<0) y=0;
    if (x+wMenu>XDisplayWidth(xobj->display,XDefaultScreen(xobj->display)))
     x=XDisplayWidth(xobj->display,XDefaultScreen(xobj->display))-wMenu;
    if (y+hMenu>XDisplayHeight(xobj->display,XDefaultScreen(xobj->display)))
    {
     /*y=XDisplayHeight(xobj->display,XDefaultScreen(xobj->display))-hMenu;*/
     y=y-hMenu-xobj->height;
    }

    mask=0;
    Attr.background_pixel=xobj->TabColor[back].pixel;
    mask|=CWBackPixel;
    Attr.cursor=XCreateFontCursor(xobj->display,XC_hand2); 
    mask|=CWCursor;		/* Curseur pour la fenetre */
    Attr.override_redirect=True;
    mask|=CWOverrideRedirect;
    WinPop=XCreateWindow(xobj->display,XRootWindow(xobj->display,XDefaultScreen(xobj->display)),
 	x,y,wMenu-5,hMenu,1,
 	CopyFromParent,InputOutput,CopyFromParent,mask,&Attr);
   XMapRaised(xobj->display,WinPop);

   /* Dessin du menu */
   DrawPMenu(xobj,WinPop,hOpt,2);
   do
   {
    XQueryPointer(xobj->display,XRootWindow(xobj->display,XDefaultScreen(xobj->display)),
  			&Win1,&Win2,&x1,&y1,&x2,&y2,&modif);
   /* Determiner l'option courante */
   y2=y2-y;
   x2=x2-x;
   {
    oldy=y2;
    /* calcule de xobj->value */
    if ((x2>0)&&(x2<wMenu)&&(y2>0)&&(y2<hMenu))
     newvalue=y2/hOpt+1;
    else
     newvalue=0;
    if (newvalue!=oldvalue)
    {
     SelectMenu(xobj,WinPop,hOpt,oldvalue,0);
     SelectMenu(xobj,WinPop,hOpt,newvalue,1);
     oldvalue=newvalue;
    }
   } 
  }
  while (!XCheckTypedEvent(xobj->display,ButtonRelease,&event));
  XDestroyWindow(xobj->display,WinPop);
  if (newvalue!=0)
  {
   xobj->value=newvalue;
   SendMsg(xobj,SingleClic);
   xobj->value=0;
  }
  xobj->DrawObj(xobj);

 }
}

void EvtKeyPushButton(struct XObj *xobj,XKeyEvent *EvtKey)
{
 char car[11];
 char *carks2;
 char *carks;
 KeySym ks;
 int Size;

 Size=XLookupString(EvtKey,car,10,&ks,NULL);
 car[Size]='\0';
 carks2=XKeysymToString(ks);
 if (carks2!=NULL)
 {
  carks=(char*)calloc(sizeof(char),30);
  sprintf(carks,"%s",carks2);
  if (strcmp(carks,"Return")==0)
  {
   xobj->value=1;
   SendMsg(xobj,SingleClic);
   xobj->value=0;
  }
  free(carks);
 }
}

void ProcessMsgPushButton(struct XObj *xobj,unsigned long type,unsigned long *body)
{
}