use log_err instead of printf
[psensor.git] / src / ui.c
1 /*
2  * Copyright (C) 2010-2012 jeanfi@gmail.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA
18  */
19 #include "cfg.h"
20 #include "ui.h"
21 #include "ui_graph.h"
22 #include "ui_pref.h"
23 #include "ui_sensorpref.h"
24 #include "ui_sensorlist.h"
25 #include "ui_status.h"
26 #include "ui_appindicator.h"
27
28 static void save_window_pos(struct ui_psensor *ui)
29 {
30         gboolean visible;
31         GtkWindow *win;
32         struct config *cfg;
33
34         visible = gtk_widget_get_visible(ui->main_window);
35         log_debug("Window visible: %d", visible);
36
37         if (visible == TRUE) {
38                 cfg = ui->config;
39
40                 win = GTK_WINDOW(ui->main_window);
41
42                 gtk_window_get_position(win, &cfg->window_x, &cfg->window_y);
43                 log_debug("Window position: %d %d",
44                           cfg->window_x,
45                           cfg->window_y);
46
47                 gtk_window_get_size(win,
48                                     &cfg->window_w,
49                                     &cfg->window_h);
50                 log_debug("Window size: %d %d", cfg->window_w, cfg->window_h);
51
52                 cfg->window_divider_pos
53                         = gtk_paned_get_position(GTK_PANED(ui->sensor_box));
54
55                 config_save(cfg);
56         }
57 }
58
59 static gboolean
60 on_delete_event_cb(GtkWidget *widget, GdkEvent *event, gpointer data)
61 {
62         struct ui_psensor *ui = data;
63
64         save_window_pos(ui);
65
66         log_debug("is_status_supported: %d\n", is_status_supported());
67
68         if (is_appindicator_supported() || is_status_supported())
69                 gtk_widget_hide(ui->main_window);
70         else
71                 ui_psensor_quit(ui);
72
73         return TRUE;
74 }
75
76 void ui_show_about_dialog()
77 {
78         gtk_show_about_dialog(NULL,
79                               "comments",
80                               _("Psensor is a GTK+ application for monitoring "
81                                 "hardware sensors"),
82                               "copyright",
83                               _("Copyright(c) 2010-2012\njeanfi@gmail.com"),
84                               "logo-icon-name", "psensor",
85                               "program-name", "Psensor",
86                               "title", _("About Psensor"),
87                               "version", VERSION,
88                               "website", PACKAGE_URL,
89                               "website-label", _("Psensor Homepage"),
90                               NULL);
91 }
92
93 static void cb_about(GtkMenuItem *mi, gpointer data)
94 {
95         ui_show_about_dialog();
96 }
97
98 static void cb_menu_quit(GtkMenuItem *mi, gpointer data)
99 {
100         ui_psensor_quit((struct ui_psensor *)data);
101 }
102
103 static void cb_preferences(GtkMenuItem *mi, gpointer data)
104 {
105         ui_pref_dialog_run((struct ui_psensor *)data);
106 }
107
108 static void cb_sensor_preferences(GtkMenuItem *mi, gpointer data)
109 {
110         struct ui_psensor *ui = data;
111
112         if (ui->sensors && *ui->sensors)
113                 ui_sensorpref_dialog_run(*ui->sensors, ui);
114 }
115
116 void ui_psensor_quit(struct ui_psensor *ui)
117 {
118         save_window_pos(ui);
119
120         log_debug("Destroy main window");
121         gtk_widget_destroy(ui->main_window);
122         gtk_main_quit();
123 }
124
125 static const char *menu_desc =
126 "<ui>"
127 "  <menubar name='MainMenu'>"
128 "    <menu name='Psensor' action='PsensorMenuAction'>"
129 "      <menuitem name='Preferences' action='PreferencesAction' />"
130 "      <menuitem name='SensorPreferences' action='SensorPreferencesAction' />"
131 "      <separator />"
132 "      <menuitem name='Quit' action='QuitAction' />"
133 "    </menu>"
134 "    <menu name='Help' action='HelpMenuAction'>"
135 "      <menuitem name='About' action='AboutAction' />"
136 "    </menu>"
137 "  </menubar>"
138 "</ui>";
139
140 static GtkActionEntry entries[] = {
141         { "PsensorMenuAction", NULL, "_Psensor" },
142
143         { "PreferencesAction", GTK_STOCK_PREFERENCES,
144           N_("_Preferences"), NULL,
145           N_("Preferences"),
146           G_CALLBACK(cb_preferences) },
147
148         { "SensorPreferencesAction", GTK_STOCK_PREFERENCES,
149           N_("_Sensor Preferences"), NULL,
150           N_("Sensor Preferences"),
151           G_CALLBACK(cb_sensor_preferences) },
152
153         { "QuitAction",
154           GTK_STOCK_QUIT, N_("_Quit"), NULL, N_("Quit"),
155           G_CALLBACK(cb_menu_quit) },
156
157         { "HelpMenuAction", NULL, N_("_Help") },
158
159         { "AboutAction", GTK_STOCK_PREFERENCES,
160           N_("_About"), NULL,
161           N_("About"),
162           G_CALLBACK(cb_about) }
163 };
164 static guint n_entries = G_N_ELEMENTS(entries);
165
166 static GtkWidget *get_menu(struct ui_psensor *ui)
167 {
168         GtkActionGroup *action_group;
169         GtkUIManager *menu_manager;
170         GError *error;
171
172         action_group = gtk_action_group_new("PsensorActions");
173         gtk_action_group_set_translation_domain(action_group, PACKAGE);
174         menu_manager = gtk_ui_manager_new();
175
176         gtk_action_group_add_actions(action_group, entries, n_entries, ui);
177         gtk_ui_manager_insert_action_group(menu_manager, action_group, 0);
178
179         error = NULL;
180         gtk_ui_manager_add_ui_from_string(menu_manager, menu_desc, -1, &error);
181
182         if (error)
183                 g_error(_("building menus failed: %s"), error->message);
184
185         return gtk_ui_manager_get_widget(menu_manager, "/MainMenu");
186 }
187
188 void ui_enable_alpha_channel(struct ui_psensor *ui)
189 {
190         GdkScreen *screen;
191         GdkVisual *visual;
192         struct config *cfg;
193
194         cfg = ui->config;
195
196         screen = gtk_widget_get_screen(ui->main_window);
197
198         log_debug("Config alpha channel enabled: %d",
199                   cfg->alpha_channel_enabled);
200         if (cfg->alpha_channel_enabled && gdk_screen_is_composited(screen)) {
201                 log_debug("Screen is composited");
202                 visual = gdk_screen_get_rgba_visual(screen);
203                 if (visual) {
204                         gtk_widget_set_visual(ui->main_window, visual);
205                 } else {
206                         cfg->alpha_channel_enabled = 0;
207                         log_err("Enable alpha channel has failed");
208                 }
209         } else {
210                 cfg->alpha_channel_enabled = 0;
211         }
212
213 }
214
215 void ui_window_create(struct ui_psensor *ui)
216 {
217         GtkWidget *window, *menubar;
218         GdkPixbuf *icon;
219         GtkIconTheme *icon_theme;
220         struct config *cfg;
221
222         window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
223
224         cfg = ui->config;
225         if (cfg->window_restore_enabled)
226                 gtk_window_move(GTK_WINDOW(window),
227                                 cfg->window_x,
228                                 cfg->window_y);
229
230         gtk_window_set_default_size(GTK_WINDOW(window),
231                                     cfg->window_w,
232                                     cfg->window_h);
233
234         gtk_window_set_title(GTK_WINDOW(window),
235                              _("Psensor - Temperature Monitor"));
236         gtk_window_set_role(GTK_WINDOW(window), "psensor");
237
238         icon_theme = gtk_icon_theme_get_default();
239         icon = gtk_icon_theme_load_icon(icon_theme, "psensor", 48, 0, NULL);
240         if (icon)
241                 gtk_window_set_icon(GTK_WINDOW(window), icon);
242         else
243                 log_err(_("Failed to load Psensor icon."));
244
245         g_signal_connect(window,
246                          "delete_event", G_CALLBACK(on_delete_event_cb), ui);
247
248         gtk_window_set_decorated(GTK_WINDOW(window),
249                                  cfg->window_decoration_enabled);
250
251         gtk_window_set_keep_below(GTK_WINDOW(window),
252                                   cfg->window_keep_below_enabled);
253
254         /* main box */
255         menubar = get_menu(ui);
256
257         ui->main_box = gtk_box_new(GTK_ORIENTATION_VERTICAL, 1);
258         gtk_box_set_homogeneous(GTK_BOX(ui->main_box), FALSE);
259         gtk_box_pack_start(GTK_BOX(ui->main_box), menubar,
260                            FALSE, TRUE, 0);
261
262         gtk_container_add(GTK_CONTAINER(window), ui->main_box);
263
264         ui->main_window = window;
265         ui->menu_bar = menubar;
266
267         gtk_widget_show_all(ui->main_box);
268 }
269
270 static void menu_bar_show(unsigned int show, struct ui_psensor *ui)
271 {
272         if (show)
273                 gtk_widget_show(ui->menu_bar);
274         else
275                 gtk_widget_hide(ui->menu_bar);
276 }
277
278 void ui_window_update(struct ui_psensor *ui)
279 {
280         struct config *cfg;
281         int init = 1;
282
283         cfg = ui->config;
284
285         if (ui->sensor_box) {
286                 g_object_ref(GTK_WIDGET(ui->ui_sensorlist->widget));
287
288                 gtk_container_remove(GTK_CONTAINER(ui->sensor_box),
289                                      ui->ui_sensorlist->widget);
290
291                 gtk_container_remove(GTK_CONTAINER(ui->main_box),
292                                      ui->sensor_box);
293
294                 ui->w_graph = ui_graph_create(ui);
295
296                 init = 0;
297         }
298
299         if (cfg->sensorlist_position == SENSORLIST_POSITION_RIGHT
300             || cfg->sensorlist_position == SENSORLIST_POSITION_LEFT)
301                 ui->sensor_box = gtk_paned_new(GTK_ORIENTATION_HORIZONTAL);
302         else
303                 ui->sensor_box = gtk_paned_new(GTK_ORIENTATION_VERTICAL);
304
305         gtk_box_pack_end(GTK_BOX(ui->main_box), ui->sensor_box, TRUE, TRUE, 2);
306
307         if (cfg->sensorlist_position == SENSORLIST_POSITION_RIGHT
308             || cfg->sensorlist_position == SENSORLIST_POSITION_BOTTOM) {
309                 gtk_paned_pack1(GTK_PANED(ui->sensor_box),
310                                 GTK_WIDGET(ui->w_graph), TRUE, TRUE);
311                 gtk_paned_pack2(GTK_PANED(ui->sensor_box),
312                                 ui->ui_sensorlist->widget, FALSE, TRUE);
313         } else {
314                 gtk_paned_pack1(GTK_PANED(ui->sensor_box),
315                                 ui->ui_sensorlist->widget, FALSE, TRUE);
316                 gtk_paned_pack2(GTK_PANED(ui->sensor_box),
317                                 GTK_WIDGET(ui->w_graph), TRUE, TRUE);
318         }
319
320         if (cfg->window_restore_enabled)
321                 gtk_paned_set_position(GTK_PANED(ui->sensor_box),
322                                        ui->config->window_divider_pos);
323
324         if (!init)
325                 g_object_unref(GTK_WIDGET(ui->ui_sensorlist->widget));
326
327         gtk_widget_show_all(ui->sensor_box);
328
329         if (cfg->menu_bar_disabled)
330                 menu_bar_show(0, ui);
331         else
332                 menu_bar_show(1, ui);
333 }
334
335 void ui_window_show(struct ui_psensor *ui)
336 {
337         log_debug("ui_window_show()");
338         gtk_window_present(GTK_WINDOW(ui->main_window));
339 }