Adjust more copyright headers
[alexxy/gromacs.git] / src / programs / view / xdlgitem.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5  * Copyright (c) 2001-2004, The GROMACS development team.
6  * Copyright (c) 2013, by the GROMACS development team, led by
7  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8  * and including many others, as listed in the AUTHORS file in the
9  * top-level source directory and at http://www.gromacs.org.
10  *
11  * GROMACS is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public License
13  * as published by the Free Software Foundation; either version 2.1
14  * of the License, or (at your option) any later version.
15  *
16  * GROMACS is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with GROMACS; if not, see
23  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
25  *
26  * If you want to redistribute modifications to GROMACS, please
27  * consider that scientific software is very special. Version
28  * control is crucial - bugs must be traceable. We will be happy to
29  * consider code for inclusion in the official distribution, but
30  * derived work must not be called official GROMACS. Details are found
31  * in the README & COPYING files - if they are missing, get the
32  * official version at http://www.gromacs.org.
33  *
34  * To help us fund GROMACS development, we humbly ask that you cite
35  * the research papers on the package. Check out http://www.gromacs.org.
36  */
37
38 #ifndef _xdlgitem_h
39 #define _xdlgitem_h
40
41 #include <typedefs.h>
42 #include "Xstuff.h"
43 #include "xutil.h"
44 #include "x11.h"
45
46 typedef enum {
47     edlgBN, edlgRB, edlgGB, edlgCB, edlgPM, edlgST, edlgET, edlgNR
48 } edlgitem;
49 #define XCARET  2
50
51 enum {
52     ITEMOK, RBPRESSED, BNPRESSED, CBPRESSED, ETCHANGED, HELPPRESSED, ENTERPRESSED
53 };
54
55 typedef int t_id;
56
57 typedef struct {
58     bool bDefault;  /* This is the default button */
59 } t_button;
60
61 typedef struct {
62     bool bSelect;   /* Is this rb selected ? */
63 } t_radiobutton;
64
65 typedef struct {
66     bool bChecked;  /* Is this cb checked ? */
67 } t_checkbox;
68
69 typedef struct {
70     Pixmap pm;      /* The pixmap bits */
71 } t_pixmap;
72
73 typedef struct {
74     int    nlines;
75     char **lines;
76 } t_statictext;
77
78 typedef struct {
79     int  buflen, strbegin; /* Length of the screen buf and begin of string  */
80     int  pos;              /* Current length of the string and pos of caret */
81     /* Pos is relative to strbegin, and is the pos   */
82     /* in the window.                                */
83     bool     bChanged;
84     char    *buf;
85 } t_edittext;
86
87 typedef struct {
88     int   nitems;
89     t_id *item;
90 } t_groupbox;
91
92
93 typedef struct t_dlgitem {
94     t_windata         win;
95     t_id              ID, GroupID;
96     bool              bUseMon;
97     char             *set, *get, *help;
98     edlgitem          type;
99     int       (*WndProc)(t_x11 *x11, struct t_dlgitem *dlgitem, XEvent *event);
100     union {
101         t_button      button;
102         t_radiobutton radiobutton;
103         t_groupbox    groupbox;
104         t_checkbox    checkbox;
105         t_pixmap      pixmap;
106         t_statictext  statictext;
107         t_edittext    edittext;
108     } u;
109 } t_dlgitem;
110
111 /*****************************
112  *
113  * Routines to create dialog items, all items have an id
114  * which you can use to extract info. It is possible to have
115  * multiple items with the same id but it may then not be possible
116  * to extract information.
117  * All routines take the position relative to the parent dlg
118  * and the size and border width.
119  * If the width and height are set to zero initially, they will
120  * be calculated and set by the routine. With the dlgitem manipulation
121  * routines listed below, the application can then move the items around
122  * on the dlg box, and if wished resize them.
123  *
124  ****************************/
125 extern t_dlgitem *CreateButton(t_x11 *x11, const char *szLab, bool bDef,
126                                t_id id, t_id groupid,
127                                int x0, int y0, int w, int h, int bw);
128
129 extern t_dlgitem *CreateRadioButton(t_x11 *x11,
130                                     const char *szLab, bool bSet, t_id id,
131                                     t_id groupid,
132                                     int x0, int y0, int w, int h, int bw);
133
134 extern t_dlgitem *CreateGroupBox(t_x11 *x11, const char *szLab, t_id id,
135                                  int nitems, t_id items[],
136                                  int x0, int y0, int w, int h, int bw);
137
138 extern t_dlgitem *CreateCheckBox(t_x11 *x11, const char *szLab,
139                                  bool bCheckedInitial,
140                                  t_id id, t_id groupid,
141                                  int x0, int y0, int w, int h, int bw);
142
143 extern t_dlgitem *CreatePixmap(Pixmap pm, t_id id, t_id groupid,
144                                int x0, int y0, int w, int h, int bw);
145
146 extern t_dlgitem *CreateStaticText(t_x11 *x11,
147                                    int nlines, const char * const *lines,
148                                    t_id id, t_id groupid,
149                                    int x0, int y0, int w, int h, int bw);
150
151 extern t_dlgitem *CreateEditText(t_x11 *x11, const char *title,
152                                  int screenbuf, char *buf, t_id id, t_id groupid,
153                                  int x0, int y0, int w, int h, int bw);
154
155 extern void SetDlgitemOpts(t_dlgitem *dlgitem, bool bUseMon,
156                            char *set, char *get, char *help);
157
158 #endif  /* _xdlgitem_h */