]> icculus.org git repositories - dana/obconf.git/blob - src/main.c
add a picture to the margins tab
[dana/obconf.git] / src / main.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    main.c for ObConf, the configuration tool for Openbox
4    Copyright (c) 2003-2007   Dana Jansens
5    Copyright (c) 2003        Tim Riley
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #include "main.h"
21 #include "archive.h"
22 #include "theme.h"
23 #include "appearance.h"
24 #include "windows.h"
25 #include "margins.h"
26 #include "mouse.h"
27 #include "desktops.h"
28 #include "dock.h"
29 #include "preview_update.h"
30 #include "gettext.h"
31
32 #include <gdk/gdkx.h>
33 #define SN_API_NOT_YET_FROZEN
34 #include <libsn/sn.h>
35 #undef SN_API_NOT_YET_FROZEN
36 #include <stdlib.h>
37
38 GtkWidget *mainwin = NULL;
39
40 GladeXML *glade;
41 xmlDocPtr doc;
42 xmlNodePtr root;
43 RrInstance *rrinst;
44
45 static gchar *obc_theme_install = NULL;
46 static gchar *obc_theme_archive = NULL;
47
48 void obconf_error(gchar *msg)
49 {
50     GtkWidget *d;
51
52     d = gtk_message_dialog_new(mainwin ? GTK_WINDOW(mainwin) : NULL,
53                                GTK_DIALOG_DESTROY_WITH_PARENT,
54                                GTK_MESSAGE_ERROR,
55                                GTK_BUTTONS_CLOSE,
56                                "%s", msg);
57     g_signal_connect_swapped(GTK_OBJECT(d), "response",
58                              G_CALLBACK(gtk_widget_destroy),
59                              GTK_OBJECT(d));
60     gtk_widget_show(d);
61 }
62
63 static void print_version()
64 {
65     g_print("ObConf %s\n", PACKAGE_VERSION);
66     g_print(_("Copyright (c)"));
67     g_print(" 2003-2007   Dana Jansens\n");
68     g_print(_("Copyright (c)"));
69     g_print(" 2003        Tim Riley\n\n");
70     g_print(" 2007        Javeed Shaikh\n\n");
71     g_print("This program comes with ABSOLUTELY NO WARRANTY.\n");
72     g_print("This is free software, and you are welcome to redistribute it\n");
73     g_print("under certain conditions. See the file COPYING for details.\n\n");
74
75     exit(EXIT_SUCCESS);
76 }
77
78 static void print_help()
79 {
80     g_print(_("Syntax: obconf [options] [ARCHIVE.obt]\n"));
81     g_print(_("\nOptions:\n"));
82     g_print(_("  --help                Display this help and exit\n"));
83     g_print(_("  --version             Display the version and exit\n"));
84     g_print(_("  --install ARCHIVE.obt Install the given theme archive and select it\n"));
85     g_print(_("  --archive THEME       Create a theme archive from the given theme directory\n"));
86     g_print(_("\nPlease report bugs at %s\n\n"), PACKAGE_BUGREPORT);
87     
88     exit(EXIT_SUCCESS);
89 }
90
91 static void parse_args(int argc, char **argv)
92 {
93     int i;
94
95     for (i = 1; i < argc; ++i) {
96         if (!strcmp(argv[i], "--help"))
97             print_help();
98         if (!strcmp(argv[i], "--version"))
99             print_version();
100         else if (!strcmp(argv[i], "--install")) {
101             if (i == argc - 1) /* no args left */
102                 g_printerr(_("--install requires an argument\n"));
103             else
104                 obc_theme_install = argv[++i];
105         }
106         else if (!strcmp(argv[i], "--archive")) {
107             if (i == argc - 1) /* no args left */
108                 g_printerr(_("--archive requires an argument\n"));
109             else
110                 obc_theme_archive = argv[++i];
111         } else
112             obc_theme_install = argv[i];
113     }
114 }
115
116 int main(int argc, char **argv)
117 {
118     gchar *p;
119
120     bindtextdomain(PACKAGE_NAME, LOCALEDIR);
121     bind_textdomain_codeset(PACKAGE_NAME, "UTF-8");
122     textdomain(PACKAGE_NAME);
123
124     gtk_init(&argc, &argv);
125     parse_args(argc, argv);
126
127     if (obc_theme_archive) {
128         archive_create(obc_theme_archive);
129         return;
130     }
131
132     p = g_build_filename(GLADEDIR, "obconf.glade", NULL);
133     glade = glade_xml_new(p, NULL, NULL);
134     g_free(p);
135
136     if (!glade) {
137         obconf_error("Failed to load the obconf.glade interface file. You "
138                      "have probably failed to install ObConf properly.");
139         return 1;
140     }
141
142     parse_paths_startup();
143     rrinst = RrInstanceNew(GDK_DISPLAY(), gdk_x11_get_default_screen());
144
145     xmlIndentTreeOutput = 1;
146     if (!parse_load_rc(NULL, &doc, &root)) {
147         obconf_error("Failed to load an rc.xml. You have probably failed to "
148                      "install Openbox properly.");
149         return 1;
150     }
151
152     glade_xml_signal_autoconnect(glade);
153
154     {
155         gchar *s = g_strdup_printf
156             ("<span weight=\"bold\" size=\"xx-large\">ObConf %s</span>",
157              PACKAGE_VERSION);
158         gtk_label_set_markup(GTK_LABEL
159                              (glade_xml_get_widget(glade, "title_label")), s);
160         g_free(s);
161     }
162
163     theme_setup_tab();
164     appearance_setup_tab();
165     windows_setup_tab();
166     mouse_setup_tab();
167     desktops_setup_tab();
168     margins_setup_tab();
169     dock_setup_tab();
170
171     mainwin = get_widget("main_window");
172
173     if (obc_theme_install)
174         theme_install(obc_theme_install);
175     else
176         theme_load_all();
177
178     /* the main window is not shown here ! it is shown when the theme previews
179        are completed */
180     gtk_main();
181
182     preview_update_set_active_font(NULL);
183     preview_update_set_inactive_font(NULL);
184     preview_update_set_menu_header_font(NULL);
185     preview_update_set_menu_item_font(NULL);
186     preview_update_set_osd_font(NULL);
187     preview_update_set_title_layout(NULL);
188
189     RrInstanceFree(rrinst);
190     parse_paths_shutdown();
191
192     xmlFreeDoc(doc);
193     return 0;
194 }
195
196 gboolean on_main_window_delete_event(GtkWidget *w, GdkEvent *e, gpointer d)
197 {
198     gtk_main_quit();
199     return FALSE;
200 }
201
202 void on_close_clicked()
203 {
204     gtk_main_quit();
205 }
206
207 void obconf_show_main()
208 {
209     SnDisplay *sn_d;
210     SnLauncheeContext *sn_cx;
211
212     if (GTK_WIDGET_VISIBLE(mainwin)) return;
213
214     gtk_widget_show_all(mainwin);
215
216     sn_d = sn_display_new(GDK_DISPLAY_XDISPLAY(gdk_display_get_default()),
217                           NULL, NULL);
218
219     sn_cx = sn_launchee_context_new_from_environment
220         (sn_d, gdk_screen_get_number(gdk_display_get_default_screen
221                                      (gdk_display_get_default())));
222
223     if (sn_cx)
224         sn_launchee_context_setup_window
225             (sn_cx, GDK_WINDOW_XWINDOW(GDK_WINDOW(mainwin->window)));
226
227     if (sn_cx)
228         sn_launchee_context_complete(sn_cx);
229
230     if (sn_cx)
231         sn_launchee_context_unref(sn_cx);
232     sn_display_unref(sn_d);
233 }