File: findnote.c

package info (click to toggle)
xpostitplus 2.3.1-10
  • links: PTS
  • area: non-free
  • in suites: potato
  • size: 464 kB
  • ctags: 661
  • sloc: ansic: 4,831; makefile: 527; sh: 70
file content (307 lines) | stat: -rw-r--r-- 6,243 bytes parent folder | download | duplicates (3)
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
#ifndef lint
static char	*RCSid = "$Id$";
#endif

/*
 * findnote.c - routines to handle the alarm feature.
 *
 * Michael J. Hammel
 * Contractor
 * 1150 Inca St. TH 70
 * Denver, CO 80204
 * mjhammel@csn.net
 *
 * $Log$
 * 
 */
#include <X11/StringDefs.h>
#include <X11/Intrinsic.h>
#include <X11/Xaw/Form.h>
#include <X11/Xaw/Box.h>
#include <X11/Xaw/Label.h>
#include <X11/Xaw/Command.h>
#include <X11/Xaw/Text.h>
#include <X11/Xaw/AsciiText.h>
#include <X11/Xaw/Viewport.h>
#include <X11/Shell.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "xpostit.h"

/* globals */

/* local variables */
Widget		find_widget, find_viewport, find_viewform;

/* external variables */
extern Widget			toplevel;

/* external routines */
extern void ErrPopUp();

/* prototypes */
void FindPopDown();
void FindPopUpChild();

/*
 * CreateFindNotePrompt - create a scrollable window in which 
 * all notes can be listed
 */
void
CreateFindNotePrompt(notes, hidden)
PostItNote	*notes;
Boolean		hidden;
{
	Arg 		args[15];
	register int 	nargs;
	XtCallbackRec	callbacks[2];
	Boolean		first;
	Widget		entry[DefaultMaxNotes];
	Widget		find_form, find_cancel;
	PostItNote	*pn;
	Window 		root, child;
	unsigned int 	buttons;
	int 		root_x, root_y, child_x, child_y;
	int		maxwidth, i, last;
	Dimension	width;

	/* get mouse location */
	XQueryPointer(display, XtWindow(toplevel), &root, &child,
	      &root_x, &root_y, &child_x, &child_y, &buttons);

	/*
	 * Create a popup shell widget
	 */
	nargs = 0;
	if ( hidden )
	{
		SetArg(XtNtitle, PostItNoteList);
	}
	else
	{
		SetArg(XtNtitle, PostItFindPrompt);
	}
	SetArg(XtNx, root_x);
	SetArg(XtNy, root_y);
	find_widget = XtCreatePopupShell(
			"FindShell", 
			transientShellWidgetClass,
			toplevel, 
			args, nargs);

	/* the form inside which all other windows will be put */
	nargs = 0;
	SetArg(XtNborderWidth, 0);
	find_form = XtCreateManagedWidget(
			"FindForm", 
			formWidgetClass,
			find_widget, 
			args, nargs);

	/* the scrollable window */
	nargs = 0;
	SetArg(XtNallowHoriz, TRUE);
	SetArg(XtNallowVert, TRUE);
	SetArg(XtNuseBottom, TRUE);
	find_viewport = XtCreateManagedWidget(
			"FindViewport", 
			viewportWidgetClass,
			find_form, 
			args, nargs);

	/*
	 * create the form inside which all the buttons go
	 */
	nargs = 0;
	SetArg(XtNborderWidth, 0);
	find_viewform = XtCreateManagedWidget(
			"FindViewForm", 
			formWidgetClass,
			find_viewport, 
			args, nargs);


	/* now create each button */
	first = True;
	maxwidth=0;
	i=0;
	for (pn = notes; pn != NULL; pn = pn->pn_next)
	{
		if ( hidden ) 
		{
			if ( pn->pn_hidden )
			{
				nargs = 0;
				SetArg(XtNborderWidth, 1);
				SetArg(XtNlabel, pn->pn_name);
				SetArg(XtNshapeStyle, XmuShapeRectangle);
				SetArg(XtNhorizDistance, 0);
				if ( !first )
				{
					SetArg(XtNfromVert, entry[i-1]);
					SetArg(XtNvertDistance, 0);
				}
				entry[i] = XtCreateManagedWidget(
						"FindButton", 
						commandWidgetClass,
						find_viewform, 
						args, nargs);
				XtAddCallback(entry[i], XtNcallback, 
					FindPopUpChild, (XtPointer)pn);
		
				nargs = 0;
				SetArg(XtNwidth, &width);
				XtGetValues(entry[i], args, nargs);
				if (width>maxwidth)
					maxwidth=width;
		
				first=False;
				i++;
			}
		}
		else
		{
			nargs = 0;
			SetArg(XtNborderWidth, 1);
			SetArg(XtNlabel, pn->pn_name);
			SetArg(XtNshapeStyle, XmuShapeRectangle);
			SetArg(XtNhorizDistance, 0);
			if ( !first )
			{
				SetArg(XtNfromVert, entry[i-1]);
				SetArg(XtNvertDistance, 0);
			}
			entry[i] = XtCreateManagedWidget(
					"FindButton", 
					commandWidgetClass,
					find_viewform, 
					args, nargs);
			XtAddCallback(entry[i], XtNcallback, 
				FindPopUpChild, (XtPointer)pn);
	
			nargs = 0;
			SetArg(XtNwidth, &width);
			XtGetValues(entry[i], args, nargs);
			if (width>maxwidth)
				maxwidth=width;
	
			first=False;
			i++;
		}
	}

	if ( first )
	{
		if ( hidden )
			ErrPopUp("There are no hidden notes." );
		else
			ErrPopUp("You have no notes.");
		FindPopDown();
		return;
	}

	/* readjust the widths of all buttons */
	last=i;
	for (i=0;i<last;i++)
	{
		nargs = 0;
		SetArg(XtNwidth, width);
		SetArg(XtNleft, XtChainLeft);
		SetArg(XtNright, XtChainRight);
		SetArg(XtNtop, XtChainTop);
		SetArg(XtNbottom, XtChainTop);
		XtSetValues(entry[i], args, nargs);
	}

	/* reset height of viewport, so its not too big */
	nargs = 0;
	SetArg(XtNheight, 100);
	SetArg(XtNwidth, 200);
	XtSetValues(find_viewport,args, nargs);


	/* a cancel button */
	bzero(callbacks, sizeof(callbacks));
	SetCallback(FindPopDown, NULL);
	nargs = 0;
	SetArg(XtNcallback, callbacks);
	SetArg(XtNfromVert, find_viewport);
	SetArg(XtNlabel, "Cancel");
	SetArg(XtNleft, XtChainLeft);
	SetArg(XtNright, XtChainLeft);
	SetArg(XtNtop, XtChainBottom);
	SetArg(XtNbottom, XtChainBottom);
	find_cancel = XtCreateManagedWidget(
			"FindCancel", 
			commandWidgetClass,
			find_form, 
			args, nargs);

	XtPopup( find_widget, XtGrabNonexclusive );
}

/*
 * FindPopDown - close the Find window
 */
void
FindPopDown(w, client_data, call_data)
caddr_t client_data, call_data;
Widget w;
{
	XtPopdown(find_widget);
	if ( find_widget != NULL )
	{
		XtDestroyWidget(find_widget);
		find_widget = NULL;
	}
}

/*
 * FindPopUpChild - bring the note to the current location
 */
void
FindPopUpChild(w, client_data, call_data)
caddr_t client_data, call_data;
Widget w;
{
	Arg		args[3];
	int		nargs;
	PostItNote	*pn;
	Window 		root, child;
	unsigned int 	buttons;
	int 		root_x, root_y, child_x, child_y;

	pn = (PostItNote *)client_data;

	/*
	 * if its a hidden note, then just unhide it
	 */
	if ( pn->pn_hidden )
	{
		/* XtPopup( pn->pn_shellwidget, XtGrabNonexclusive );
		 */
		XtPopup(pn->pn_shellwidget, XtGrabNone);
		pn->pn_hidden = False;
		FindPopDown(NULL, NULL, NULL);
		return;
	}	

	/* get mouse location */
	XQueryPointer(display, XtWindow(toplevel), &root, &child,
	      &root_x, &root_y, &child_x, &child_y, &buttons);

	/* pop up the note at the cursor */
	nargs = 0;
	SetArg(XtNx, root_x);
	SetArg(XtNy, root_y);
	XtSetValues(pn->pn_shellwidget, args, nargs);
	pn->pn_shellx = root_x;
	pn->pn_shelly = root_y;
	XtPopup( pn->pn_shellwidget, XtGrabNonexclusive );

	/* and close the Find window */
	FindPopDown(NULL, NULL, NULL);
}