annotate gui/dialog/dialog.h @ 37095:6cce7a87e800

Cosmetic: Adjust indent.
author ib
date Wed, 07 May 2014 14:16:02 +0000
parents cc70b0fb8d36
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26458
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
1 /*
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
2 * This file is part of MPlayer.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
3 *
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
4 * MPlayer is free software; you can redistribute it and/or modify
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
5 * it under the terms of the GNU General Public License as published by
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
6 * the Free Software Foundation; either version 2 of the License, or
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
7 * (at your option) any later version.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
8 *
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
9 * MPlayer is distributed in the hope that it will be useful,
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
12 * GNU General Public License for more details.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
13 *
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
14 * You should have received a copy of the GNU General Public License along
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
17 */
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
18
35529
8ad4d2fb46e8 Rebuild GUI directory structure.
ib
parents: 35450
diff changeset
19 #ifndef MPLAYER_GUI_DIALOG_H
8ad4d2fb46e8 Rebuild GUI directory structure.
ib
parents: 35450
diff changeset
20 #define MPLAYER_GUI_DIALOG_H
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
21
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
22 #include <gtk/gtk.h>
33529
276eef06fb3d Store icon data in a struct variable.
ib
parents: 33507
diff changeset
23 #include <X11/Xlib.h>
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
24
36036
2421356e2a03 Make #defines enums.
ib
parents: 36034
diff changeset
25 /// MessageBox types
2421356e2a03 Make #defines enums.
ib
parents: 36034
diff changeset
26 enum {
36680
cc70b0fb8d36 Add a message box type "information".
ib
parents: 36070
diff changeset
27 MSGBOX_INFORMATION,
36036
2421356e2a03 Make #defines enums.
ib
parents: 36034
diff changeset
28 MSGBOX_WARNING,
2421356e2a03 Make #defines enums.
ib
parents: 36034
diff changeset
29 MSGBOX_ERROR,
2421356e2a03 Make #defines enums.
ib
parents: 36034
diff changeset
30 MSGBOX_FATAL
2421356e2a03 Make #defines enums.
ib
parents: 36034
diff changeset
31 };
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
32
33529
276eef06fb3d Store icon data in a struct variable.
ib
parents: 33507
diff changeset
33 typedef struct {
33543
10f9498fada1 Use small icon for property KWM_WIN_ICON, if available.
ib
parents: 33542
diff changeset
34 Pixmap small;
10f9498fada1 Use small icon for property KWM_WIN_ICON, if available.
ib
parents: 33542
diff changeset
35 Pixmap small_mask;
33538
64e43eb13ebf Cosmetic: Format to MPlayer coding style.
ib
parents: 33529
diff changeset
36 Pixmap normal;
64e43eb13ebf Cosmetic: Format to MPlayer coding style.
ib
parents: 33529
diff changeset
37 Pixmap normal_mask;
33542
107084241b00 Add support for _NET_WM_ICON
ib
parents: 33538
diff changeset
38 int collection_size;
33925
162828e38481 Replace data type CARD32 by long.
ib
parents: 33738
diff changeset
39 long *collection;
33529
276eef06fb3d Store icon data in a struct variable.
ib
parents: 33507
diff changeset
40 } guiIcon_t;
276eef06fb3d Store icon data in a struct variable.
ib
parents: 33507
diff changeset
41
276eef06fb3d Store icon data in a struct variable.
ib
parents: 33507
diff changeset
42 extern guiIcon_t guiIcon;
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
43
33538
64e43eb13ebf Cosmetic: Format to MPlayer coding style.
ib
parents: 33529
diff changeset
44 void gtkAddIcon(GtkWidget *window);
36070
6c3dc8fec01f Rename gtkEventHandling() gtkEvents().
ib
parents: 36036
diff changeset
45 void gtkEvents(void);
36033
9b14dffbd894 Cosmetic: Order declarations alphabetically.
ib
parents: 36031
diff changeset
46 void gtkInit(char *display_name);
33538
64e43eb13ebf Cosmetic: Format to MPlayer coding style.
ib
parents: 33529
diff changeset
47 void gtkMessageBox(int type, const gchar *str);
36033
9b14dffbd894 Cosmetic: Order declarations alphabetically.
ib
parents: 36031
diff changeset
48 void gtkRaise(GtkWidget *window);
35638
78d9cfd68b34 Cosmetic: Use parameter name 'window' for a GtkWindow.
ib
parents: 35629
diff changeset
49 void gtkSetLayer(GtkWidget *window);
36033
9b14dffbd894 Cosmetic: Order declarations alphabetically.
ib
parents: 36031
diff changeset
50 void gtkShow(int type, char *param);
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
51
35529
8ad4d2fb46e8 Rebuild GUI directory structure.
ib
parents: 35450
diff changeset
52 #endif /* MPLAYER_GUI_DIALOG_H */