forked from Ermentrout/xppaut
-
Notifications
You must be signed in to change notification settings - Fork 1
/
choice_box.c
executable file
·214 lines (176 loc) · 3.99 KB
/
choice_box.c
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
#include "choice_box.h"
#include <stdlib.h>
#include <string.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/keysym.h>
#include <X11/keysymdef.h>
#include <X11/cursorfont.h>
#include <stdio.h>
#define ALL_DONE 2
#define DONE_WITH_THIS 1
#define FORGET_ALL 0
#define FORGET_THIS 3
#include "struct.h"
#include "pop_list.h"
#include "ggets.h"
#include "browse.h"
#define EV_MASK (ButtonPressMask |\
KeyPressMask |\
ExposureMask |\
StructureNotifyMask)
extern Display *display;
extern Window main_win;
extern unsigned int MyBackColor,MyForeColor;
extern int screen;
extern GC gc;
extern int xor_flag,DCURY,DCURX,CURY_OFF,CURS_X,CURS_Y;
void destroy_choice(p)
CHOICE_BOX p;
{
waitasec(ClickTime);
XDestroySubwindows(display,p.base);
XDestroyWindow(display,p.base);
}
void display_choice(w,p)
Window w;
CHOICE_BOX p;
{
int i;
int n=p.n;
XSetFillStyle(display,gc,FillSolid);
XSetForeground(display,gc,MyForeColor);
if(w==p.ok)XDrawString(display,w,gc,0,CURY_OFF,"Ok",2);
if(w==p.cancel)
XDrawString(display,w,gc,0,CURY_OFF,"Cancel",6);
for(i=0;i<n;i++)
{
if(w!=p.cw[i])continue;
XDrawString(display,w,gc,0,CURY_OFF,p.name[i],strlen(p.name[i]));
if(p.flag[i]==1)set_fore();
else set_back();
XDrawString(display,w,gc,(p.mc+1)*DCURX,CURY_OFF,"X",1);
}
set_fore();
}
void do_checks(p)
CHOICE_BOX p;
{
int i;
for(i=0;i<p.n;i++)
{
if(p.flag[i]==1)set_fore();
else set_back();
XDrawString(display,p.cw[i],gc,(p.mc+1)*DCURX,CURY_OFF,"X",1);
}
set_fore();
}
void base_choice(wname,n,mcc,names,check,type)
int type,mcc,n,*check;
char **names,*wname;
{
do_choice_box(RootWindow(display,screen),wname,n,mcc,names,check,type);
}
int do_choice_box(root,wname,n,mcc,names,check,type)
Window root;
int type,mcc,n,*check;
char **names,*wname;
{
CHOICE_BOX p;
int i;
int width,height;
int maxchar;
int oldcheck[MAXENTRY];
int xpos,ypos,status;
int xstart,ystart;
XTextProperty winname;
XSizeHints size_hints;
Window base;
maxchar=mcc;
if(mcc<10)maxchar=10;
width=(maxchar+5)*DCURX;
height=(n+4)*(DCURY+16);
base=make_plain_window(root,0,0,width,height,4);
XStringListToTextProperty(&wname,1,&winname);
size_hints.flags=PPosition|PSize|PMinSize|PMaxSize;
size_hints.x=0;
size_hints.y=0;
size_hints.width=width;
size_hints.height=height;
size_hints.min_width=width;
size_hints.min_height=height;
size_hints.max_width=width;
size_hints.max_height=height;
XSetWMProperties(display,base,&winname,NULL,NULL,0,&size_hints,NULL,NULL);
ystart=DCURY;
xstart=DCURX;
p.name=names;
p.flag=check;
for(i=0;i<n;i++){
oldcheck[i]=check[i];
xpos=xstart;
ypos=ystart+i*(DCURY+10);
p.cw[i]=make_window(base,xpos,ypos,(mcc+3)*DCURX,DCURY,1);
}
ypos=height-2*DCURY;
xpos=(width-12*DCURX)/2;
p.ok=make_window(base,xpos,ypos,2*DCURX,DCURY,2);
p.cancel=make_window(base,xpos+4*DCURX,ypos,6*DCURX,DCURY,2);
p.base=base;
p.n=n;
p.type=type;
p.mc=mcc;
do_checks(p);
while(1)
{
status=choice_box_event_loop(p);
if(status!=-1)break;
}
destroy_choice(p);
if(status==FORGET_ALL)for(i=0;i<n;i++)check[i]=oldcheck[i];
return(status);
}
int choice_box_event_loop(p)
CHOICE_BOX p;
{
int i,j,nn=p.n;
int status=-1;
XEvent ev;
XNextEvent(display,&ev);
switch(ev.type){
case ConfigureNotify:
case Expose:
case MapNotify:
display_choice(ev.xany.window,p);
break;
case ButtonPress:
if(ev.xbutton.window==p.ok)
{
bar(0,0,200,200,p.ok);
status=ALL_DONE;
}
if(ev.xbutton.window==p.cancel)
{
bar(0,0,200,200,p.cancel);
status=FORGET_ALL;
}
for(i=0;i<nn;i++)
{
if(ev.xbutton.window==p.cw[i]){
if(p.type==RADIO){
for(j=0;j<nn;j++)p.flag[j]=0;
p.flag[i]=1;
do_checks(p);
}
if(p.type==CHOICE){
p.flag[i]=1-p.flag[i];
do_checks(p);
}
}
}
break;
case KeyPress:
break;
}
return(status);
}