Initial revision
[ssr] / StraySrc / Glass / !Glass / h / editWin
1 /*
2 * editWindow.c
3 *
4 * Edit icon dialigue box
5 *
6 * © 1994-1998 Straylight
7 */
8
9 /*----- Licensing note ----------------------------------------------------*
10 *
11 * This file is part of Straylight's Glass.
12 *
13 * Glass is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2, or (at your option)
16 * any later version.
17 *
18 * Glass is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with Glass. If not, write to the Free Software Foundation,
25 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 */
27
28 #ifndef __editWin_h
29 #define __editWin_h
30
31 /*----- Required header files ---------------------------------------------*/
32
33 #ifndef __gStruct_h
34 #include "gStruct.h"
35 #endif
36
37 /*----- External routines -------------------------------------------------*/
38
39 /*
40 * void editWindow_windowMoved(glass_windPointer *w)
41 *
42 * Use
43 * Informs an edit dialogue that a window has been moved.
44 *
45 * Parameters
46 * glass_windPointer *w == the window containing the icon
47 */
48
49 void editWindow_windowMoved(glass_windPointer *w);
50
51 /*
52 * void editWindow_readData(glass_windPointer *w)
53 *
54 * Use
55 * Forces a re-read of the title data for the given window edit
56 *
57 * Parameters
58 * glass_windPointer *w == the window containing the icon
59 */
60
61 void editWindow_readData(glass_windPointer *w);
62
63 /*
64 * void editWindow_close(glass_windPointer *w)
65 *
66 * Use
67 * Closes an edit window
68 *
69 * Parameters
70 * glass_windPointer *w == the window containing the icon
71 */
72
73 void editWindow_close(glass_windPointer *w);
74
75 /*
76 * void editWindow(glass_windPointer *w)
77 *
78 * Use
79 * Edits the given window in a dialogue box.
80 *
81 * Parameters
82 * glass_windPointer *w == the window to edit
83 */
84
85 void editWindow(glass_windPointer *w);
86
87 #endif