layout is defined directly by the glade file
[psensor.git] / src / ui.c
1 /*
2  * Copyright (C) 2010-2013 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 "slog.h"
21 #include "ui.h"
22 #include "ui_graph.h"
23 #include "ui_pref.h"
24 #include "ui_sensorpref.h"
25 #include "ui_sensorlist.h"
26 #include "ui_status.h"
27 #include "ui_appindicator.h"
28
29 static void save_window_pos(struct ui_psensor *ui)
30 {
31         gboolean visible;
32         GtkWindow *win;
33         struct config *cfg;
34
35         visible = gtk_widget_get_visible(ui->main_window);
36         log_debug("Window visible: %d", visible);
37
38         if (visible == TRUE) {
39                 cfg = ui->config;
40
41                 win = GTK_WINDOW(ui->main_window);
42
43                 gtk_window_get_position(win, &cfg->window_x, &cfg->window_y);
44                 log_debug("Window position: %d %d",
45                           cfg->window_x,
46                           cfg->window_y);
47
48                 gtk_window_get_size(win,
49                                     &cfg->window_w,
50                                     &cfg->window_h);
51                 log_debug("Window size: %d %d", cfg->window_w, cfg->window_h);
52
53                 cfg->window_divider_pos
54                         = gtk_paned_get_position(GTK_PANED(ui->sensor_box));
55
56                 config_save(cfg);
57         }
58 }
59
60 static gboolean
61 on_delete_event_cb(GtkWidget *widget, GdkEvent *event, gpointer data)
62 {
63         struct ui_psensor *ui = data;
64
65         save_window_pos(ui);
66
67         log_debug("is_status_supported: %d\n", is_status_supported());
68
69         if (is_appindicator_supported() || is_status_supported())
70                 gtk_widget_hide(ui->main_window);
71         else
72                 ui_psensor_quit(ui);
73
74         return TRUE;
75 }
76
77 void ui_show_about_dialog()
78 {
79         gtk_show_about_dialog
80                 (NULL,
81                  "comments",
82                  _("Psensor is a GTK+ application for monitoring hardware "
83                    "sensors"),
84                  "copyright",
85                  _("Copyright(c) 2010-2012\njeanfi@gmail.com"),
86                  "logo-icon-name", "psensor",
87                  "program-name", "Psensor",
88                  "title", _("About Psensor"),
89                  "version", VERSION,
90                  "website", PACKAGE_URL,
91                  "website-label", _("Psensor Homepage"),
92                  NULL);
93 }
94
95 void ui_cb_about(GtkMenuItem *mi, gpointer data)
96 {
97         ui_show_about_dialog();
98 }
99
100 void ui_cb_menu_quit(GtkMenuItem *mi, gpointer data)
101 {
102         ui_psensor_quit((struct ui_psensor *)data);
103 }
104
105 void ui_cb_preferences(GtkMenuItem *mi, gpointer data)
106 {
107         ui_pref_dialog_run((struct ui_psensor *)data);
108 }
109
110 void ui_cb_sensor_preferences(GtkMenuItem *mi, gpointer data)
111 {
112         struct ui_psensor *ui = data;
113
114         if (ui->sensors && *ui->sensors)
115                 ui_sensorpref_dialog_run(*ui->sensors, ui);
116 }
117
118 void ui_psensor_quit(struct ui_psensor *ui)
119 {
120         save_window_pos(ui);
121
122         log_debug("Destroy main window");
123         gtk_widget_destroy(ui->main_window);
124         gtk_main_quit();
125 }
126
127 void ui_enable_alpha_channel(struct ui_psensor *ui)
128 {
129         GdkScreen *screen;
130         GdkVisual *visual;
131         struct config *cfg;
132
133         cfg = ui->config;
134
135         screen = gtk_widget_get_screen(ui->main_window);
136
137         log_debug("Config alpha channel enabled: %d",
138                   cfg->alpha_channel_enabled);
139         if (cfg->alpha_channel_enabled && gdk_screen_is_composited(screen)) {
140                 log_debug("Screen is composited");
141                 visual = gdk_screen_get_rgba_visual(screen);
142                 if (visual) {
143                         gtk_widget_set_visual(ui->main_window, visual);
144                 } else {
145                         cfg->alpha_channel_enabled = 0;
146                         log_err("Enable alpha channel has failed");
147                 }
148         } else {
149                 cfg->alpha_channel_enabled = 0;
150         }
151 }
152
153 static void on_slog_enabled_cb(GConfClient *client,
154                                guint cnxn_id,
155                                GConfEntry *entry,
156                                gpointer user_data)
157 {
158         struct ui_psensor *ui;
159         struct psensor **sensors;
160         pthread_mutex_t *mutex;
161
162         ui = (struct ui_psensor *)user_data;
163         sensors = ui->sensors;
164         mutex = &ui->sensors_mutex;
165
166         log_debug("cbk_slog_enabled");
167
168         if (is_slog_enabled())
169                 slog_activate(NULL, sensors, mutex, config_get_slog_interval());
170         else
171                 slog_close();
172 }
173
174 void ui_window_create(struct ui_psensor *ui)
175 {
176         GtkWidget *window;
177         GdkPixbuf *icon;
178         GtkIconTheme *icon_theme;
179         struct config *cfg;
180         guint ok;
181         GtkBuilder *builder;
182         GError *error;
183
184         builder = gtk_builder_new();
185
186         error = NULL;
187         ok = gtk_builder_add_from_file
188                 (builder,
189                  PACKAGE_DATA_DIR G_DIR_SEPARATOR_S "psensor.glade",
190                  &error);
191
192         if (!ok) {
193                 log_printf(LOG_ERR, error->message);
194                 g_error_free(error);
195                 return ;
196         }
197
198         window = GTK_WIDGET(gtk_builder_get_object(builder, "window"));
199         gtk_builder_connect_signals(builder, ui);
200         cfg = ui->config;
201         if (cfg->window_restore_enabled)
202                 gtk_window_move(GTK_WINDOW(window),
203                                 cfg->window_x,
204                                 cfg->window_y);
205
206         config_slog_enabled_notify_add(on_slog_enabled_cb, ui);
207
208         gtk_window_set_default_size(GTK_WINDOW(window),
209                                     cfg->window_w,
210                                     cfg->window_h);
211
212         icon_theme = gtk_icon_theme_get_default();
213         icon = gtk_icon_theme_load_icon(icon_theme, "psensor", 48, 0, NULL);
214         if (icon)
215                 gtk_window_set_icon(GTK_WINDOW(window), icon);
216         else
217                 log_err(_("Failed to load Psensor icon."));
218
219         g_signal_connect(window,
220                          "delete_event", G_CALLBACK(on_delete_event_cb), ui);
221
222         gtk_window_set_decorated(GTK_WINDOW(window),
223                                  cfg->window_decoration_enabled);
224
225         gtk_window_set_keep_below(GTK_WINDOW(window),
226                                   cfg->window_keep_below_enabled);
227
228         ui->menu_bar = GTK_WIDGET(gtk_builder_get_object(builder, "menu_bar"));
229         ui->main_box = GTK_WIDGET(gtk_builder_get_object(builder, "main_box"));
230         ui->main_window = window;
231
232         gtk_widget_show_all(ui->main_box);
233 }
234
235 static void menu_bar_show(unsigned int show, struct ui_psensor *ui)
236 {
237         if (show)
238                 gtk_widget_show(ui->menu_bar);
239         else
240                 gtk_widget_hide(ui->menu_bar);
241 }
242
243 void ui_window_update(struct ui_psensor *ui)
244 {
245         struct config *cfg;
246         int init = 1;
247
248         cfg = ui->config;
249
250         if (ui->sensor_box) {
251                 g_object_ref(GTK_WIDGET(ui->ui_sensorlist->widget));
252
253                 gtk_container_remove(GTK_CONTAINER(ui->sensor_box),
254                                      ui->ui_sensorlist->widget);
255
256                 gtk_container_remove(GTK_CONTAINER(ui->main_box),
257                                      ui->sensor_box);
258
259                 ui->w_graph = ui_graph_create(ui);
260
261                 init = 0;
262         }
263
264         if (cfg->sensorlist_position == SENSORLIST_POSITION_RIGHT
265             || cfg->sensorlist_position == SENSORLIST_POSITION_LEFT)
266                 ui->sensor_box = gtk_paned_new(GTK_ORIENTATION_HORIZONTAL);
267         else
268                 ui->sensor_box = gtk_paned_new(GTK_ORIENTATION_VERTICAL);
269
270         gtk_box_pack_end(GTK_BOX(ui->main_box), ui->sensor_box, TRUE, TRUE, 2);
271
272         if (cfg->sensorlist_position == SENSORLIST_POSITION_RIGHT
273             || cfg->sensorlist_position == SENSORLIST_POSITION_BOTTOM) {
274                 gtk_paned_pack1(GTK_PANED(ui->sensor_box),
275                                 GTK_WIDGET(ui->w_graph), TRUE, TRUE);
276                 gtk_paned_pack2(GTK_PANED(ui->sensor_box),
277                                 ui->ui_sensorlist->widget, FALSE, TRUE);
278         } else {
279                 gtk_paned_pack1(GTK_PANED(ui->sensor_box),
280                                 ui->ui_sensorlist->widget, FALSE, TRUE);
281                 gtk_paned_pack2(GTK_PANED(ui->sensor_box),
282                                 GTK_WIDGET(ui->w_graph), TRUE, TRUE);
283         }
284
285         if (cfg->window_restore_enabled)
286                 gtk_paned_set_position(GTK_PANED(ui->sensor_box),
287                                        ui->config->window_divider_pos);
288
289         if (!init)
290                 g_object_unref(GTK_WIDGET(ui->ui_sensorlist->widget));
291
292         gtk_widget_show_all(ui->sensor_box);
293
294         if (cfg->menu_bar_disabled)
295                 menu_bar_show(0, ui);
296         else
297                 menu_bar_show(1, ui);
298 }
299
300 void ui_window_show(struct ui_psensor *ui)
301 {
302         log_debug("ui_window_show()");
303         ui_window_update(ui);
304         gtk_window_present(GTK_WINDOW(ui->main_window));
305 }