wmclockmon: replace deprecated `GtkCList`
[dockapps.git] / wmclockmon / wmclockmon-config / mainwindow.h
blob16a5c3264cc4d7f0a41f984fe60fac48a2ea4b08
1 /*
2 * Create the main window.
3 */
5 #ifndef MAINWINDOW_H
6 #define MAINWINDOW_H
8 #include <gtk/gtk.h>
10 extern GtkWidget *application;
11 extern GtkWidget *alarmlist;
12 extern GtkWidget *wid_backlight;
13 extern GtkWidget *wid_blink;
14 extern GtkWidget *wid_styledir;
15 extern GtkWidget *wid_stylename;
16 extern GtkWidget *wid_color;
17 extern GtkWidget *wid_command;
18 extern GtkWidget *wid_msgcmd;
19 extern GtkWidget *wid_h12;
20 extern GtkWidget *wid_clk;
21 extern GtkWidget *wid_itm;
22 extern GtkWidget *wid_bin;
23 extern GtkWidget *wid_locale;
24 extern GtkWidget *wid_showcal;
25 extern GtkWidget *wid_calalrms;
27 typedef enum {
28 COL_STATUS = 0,
29 COL_HOUR,
30 COL_DAY,
31 COL_MESSAGE,
32 COL_ALARM,
33 NUM_COLS
34 } AlarmListColumn;
36 void clear_alarmlist_selection(void);
38 void create_mainwindow(void);
40 #endif