]> icculus.org git repositories - dana/obconf.git/blob - src/main.c
use tar and gzip commands instead of libtar and zlib
[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 "handlers.h"
22 #include "theme.h"
23 #include "gettext.h"
24
25 #include <gdk/gdkx.h>
26 #define SN_API_NOT_YET_FROZEN
27 #include <libsn/sn.h>
28 #undef SN_API_NOT_YET_FROZEN
29 #include <stdlib.h>
30
31 GtkWidget *mainwin = NULL;
32
33 GladeXML *glade;
34 xmlDocPtr doc;
35 xmlNodePtr root;
36
37 static gchar *obc_theme_install = NULL;
38 static gchar *obc_theme_archive = NULL;
39
40 void obconf_error(gchar *msg)
41 {
42     GtkWidget *d;
43
44     d = gtk_message_dialog_new(mainwin ? GTK_WINDOW(mainwin) : NULL,
45                                GTK_DIALOG_DESTROY_WITH_PARENT,
46                                GTK_MESSAGE_ERROR,
47                                GTK_BUTTONS_CLOSE,
48                                "%s", msg);
49     g_signal_connect_swapped(GTK_OBJECT(d), "response",
50                              G_CALLBACK(gtk_widget_destroy),
51                              GTK_OBJECT(d));
52     gtk_widget_show(d);
53 }
54
55 static void print_version()
56 {
57     g_print("ObConf %s\n", PACKAGE_VERSION);
58     g_print(_("Copyright (c)"));
59     g_print(" 2003-2007   Dana Jansens\n");
60     g_print(_("Copyright (c)"));
61     g_print(" 2003        Tim Riley\n\n");
62     g_print("This program comes with ABSOLUTELY NO WARRANTY.\n");
63     g_print("This is free software, and you are welcome to redistribute it\n");
64     g_print("under certain conditions. See the file COPYING for details.\n\n");
65
66     exit(EXIT_SUCCESS);
67 }
68
69 static void print_help()
70 {
71     g_print(_("Syntax: obconf [options] [ARCHIVE.obt]\n"));
72     g_print(_("\nOptions:\n"));
73     g_print(_("  --help                Display this help and exit\n"));
74     g_print(_("  --version             Display the version and exit\n"));
75     g_print(_("  --install ARCHIVE.obt Install the given theme archive and select it\n"));
76     g_print(_("  --archive THEME       Create a theme archive from the given theme directory\n"));
77     g_print(_("\nPlease report bugs at %s\n\n"), PACKAGE_BUGREPORT);
78     
79     exit(EXIT_SUCCESS);
80 }
81
82 static void parse_args(int argc, char **argv)
83 {
84     int i;
85
86     for (i = 1; i < argc; ++i) {
87         if (!strcmp(argv[i], "--help"))
88             print_help();
89         if (!strcmp(argv[i], "--version"))
90             print_version();
91         else if (!strcmp(argv[i], "--install")) {
92             if (i == argc - 1) /* no args left */
93                 g_printerr(_("--install requires an argument\n"));
94             else
95                 obc_theme_install = argv[++i];
96         }
97         else if (!strcmp(argv[i], "--archive")) {
98             if (i == argc - 1) /* no args left */
99                 g_printerr(_("--archive requires an argument\n"));
100             else
101                 obc_theme_archive = argv[++i];
102         } else
103             obc_theme_install = argv[i];
104     }
105 }
106
107 int main(int argc, char **argv)
108 {
109     SnDisplay *sn_d;
110     SnLauncheeContext *sn_cx;
111     gchar *p;
112
113     gtk_init(&argc, &argv);
114     parse_args(argc, argv);
115
116     if (obc_theme_archive) {
117         theme_archive(obc_theme_archive);
118         return;
119     }
120
121     parse_paths_startup();
122
123     p = g_build_filename(GLADEDIR, "obconf.glade", NULL);
124     glade = glade_xml_new(p, NULL, NULL);
125     g_free(p);
126
127     if (!glade) {
128         obconf_error("Failed to load the obconf.glade interface file. You "
129                      "have probably failed to install ObConf properly.");
130         return 1;
131     }
132
133     xmlIndentTreeOutput = 1;
134     if (!parse_load_rc(NULL, &doc, &root)) {
135         obconf_error("Failed to load an rc.xml. You have probably failed to "
136                      "install Openbox properly.");
137         return 1;
138     }
139
140     glade_xml_signal_autoconnect(glade);
141
142     {
143         gchar *s = g_strdup_printf
144             ("<span weight=\"bold\" size=\"xx-large\">ObConf %s</span>",
145              PACKAGE_VERSION);
146         gtk_label_set_markup(GTK_LABEL
147                              (glade_xml_get_widget(glade, "title_label")), s);
148         g_free(s);
149     }
150
151     setup_behavior_tab();
152     setup_dock_tab();
153     setup_focus_mouse(glade_xml_get_widget(glade, "focus_mouse"));
154     setup_focus_raise(glade_xml_get_widget(glade, "focus_raise"));
155     setup_focus_last(glade_xml_get_widget(glade, "focus_raise"));
156     setup_focus_delay(glade_xml_get_widget(glade, "focus_delay"));
157     setup_focus_new(glade_xml_get_widget(glade, "focus_new"));
158     setup_place_mouse(glade_xml_get_widget(glade, "place_mouse"));
159     setup_resist_window(glade_xml_get_widget(glade, "resist_window"));
160     setup_resist_edge(glade_xml_get_widget(glade, "resist_edge"));
161     setup_resize_contents(glade_xml_get_widget(glade, "resize_contents"));
162     setup_dock_position(glade_xml_get_widget(glade, "dock_position"));
163     setup_dock_float_x(glade_xml_get_widget(glade, "dock_float_x"));
164     setup_dock_float_y(glade_xml_get_widget(glade, "dock_float_y"));
165     setup_dock_stacking(glade_xml_get_widget(glade, "dock_stack_top"),
166                         glade_xml_get_widget(glade, "dock_stack_normal"),
167                         glade_xml_get_widget(glade, "dock_stack_bottom"));
168     setup_dock_direction(glade_xml_get_widget(glade, "dock_direction"));
169     setup_dock_hide(glade_xml_get_widget(glade, "dock_hide"));
170     setup_dock_hide_delay(glade_xml_get_widget(glade, "dock_hide_delay"));
171     setup_theme_names(glade_xml_get_widget(glade, "theme_names"));
172     setup_title_layout(glade_xml_get_widget(glade, "title_layout"));
173     setup_desktop_num(glade_xml_get_widget(glade, "desktop_num"));
174     setup_desktop_names(glade_xml_get_widget(glade, "desktop_names"));
175     setup_window_border(glade_xml_get_widget(glade, "window_border"));
176     setup_font_active(glade_xml_get_widget(glade, "font_active"));
177     setup_font_inactive(glade_xml_get_widget(glade, "font_inactive"));
178     setup_font_menu_header(glade_xml_get_widget(glade, "font_menu_header"));
179     setup_font_menu_item(glade_xml_get_widget(glade, "font_menu_item"));
180     setup_font_display(glade_xml_get_widget(glade, "font_display"));
181
182     mainwin = glade_xml_get_widget(glade, "main_window");
183
184     sn_d = sn_display_new(GDK_DISPLAY_XDISPLAY(gdk_display_get_default()),
185                           NULL, NULL);
186
187     sn_cx = sn_launchee_context_new_from_environment
188         (sn_d, gdk_screen_get_number(gdk_display_get_default_screen
189                                      (gdk_display_get_default())));
190
191     if (sn_cx)
192         sn_launchee_context_setup_window
193             (sn_cx, GDK_WINDOW_XWINDOW(GDK_WINDOW(mainwin->window)));
194
195     gtk_widget_show_all(mainwin);
196
197     if (sn_cx)
198         sn_launchee_context_complete(sn_cx);
199
200     if (sn_cx)
201         sn_launchee_context_unref(sn_cx);
202     sn_display_unref(sn_d);
203
204     if (obc_theme_install)
205         handlers_install_theme(obc_theme_install);
206
207     gtk_main();
208
209     parse_paths_shutdown();
210
211     xmlFreeDoc(doc);
212     return 0;
213 }