status icon
[psensor.git] / src / ui.c
index 5f56504..9a78a86 100644 (file)
--- a/src/ui.c
+++ b/src/ui.c
 #include "ui_pref.h"
 #include "ui_sensorpref.h"
 #include "ui_sensorlist.h"
+#include "ui_status.h"
+#include "ui_appindicator.h"
+
+static void save_window_pos(struct ui_psensor *ui)
+{
+       gboolean visible;
+       GtkWindow *win;
+       struct config *cfg;
+
+       visible = gtk_widget_get_visible(ui->main_window);
+       log_printf(LOG_DEBUG, "Window visible: %d", visible);
+
+       if (visible == TRUE) {
+               cfg = ui->config;
+
+               win = GTK_WINDOW(ui->main_window);
+
+               gtk_window_get_position(win, &cfg->window_x, &cfg->window_y);
+               log_printf(LOG_DEBUG,
+                          "Window position: %d %d",
+                          cfg->window_x,
+                          cfg->window_y);
+
+               gtk_window_get_size(win,
+                                   &cfg->window_w,
+                                   &cfg->window_h);
+               log_printf(LOG_DEBUG,
+                          "Window size: %d %d",
+                          cfg->window_w,
+                          cfg->window_h);
+
+               cfg->window_divider_pos
+                       = gtk_paned_get_position(GTK_PANED(ui->sensor_box));
+
+               config_save(cfg);
+       }
+}
 
 static gboolean
 on_delete_event_cb(GtkWidget *widget, GdkEvent *event, gpointer data)
 {
+       struct ui_psensor *ui = data;
 
-#if defined(HAVE_APPINDICATOR) || defined(HAVE_APPINDICATOR_029)
-       gtk_widget_hide(((struct ui_psensor *)data)->main_window);
-#else
-       ui_psensor_quit();
-#endif
+       save_window_pos(ui);
+
+       log_printf(LOG_DEBUG,
+                  "is_status_supported: %d\n", is_status_supported());
+
+       if (is_appindicator_supported() || is_status_supported())
+               gtk_widget_hide(ui->main_window);
+       else
+               ui_psensor_quit(ui);
 
        return TRUE;
 }
 
+void ui_show_about_dialog()
+{
+       gtk_show_about_dialog(NULL,
+                             "comments",
+                             _("Psensor is a GTK+ application for monitoring "
+                               "hardware sensors"),
+                             "copyright",
+                             _("Copyright(c) 2010-2011\njeanfi@gmail.com"),
+                             "logo-icon-name", "psensor",
+                             "program-name", "Psensor",
+                             "title", _("About Psensor"),
+                             "version", VERSION,
+                             "website", PACKAGE_URL,
+                             "website-label", _("Psensor Homepage"),
+                             NULL);
+}
+
+static void cb_about(GtkMenuItem *mi, gpointer data)
+{
+       ui_show_about_dialog();
+}
+
 static void cb_menu_quit(GtkMenuItem *mi, gpointer data)
 {
-       ui_psensor_quit();
+       ui_psensor_quit((struct ui_psensor *)data);
 }
 
 static void cb_preferences(GtkMenuItem *mi, gpointer data)
@@ -55,8 +119,12 @@ static void cb_sensor_preferences(GtkMenuItem *mi, gpointer data)
                ui_sensorpref_dialog_run(*ui->sensors, ui);
 }
 
-void ui_psensor_quit()
+void ui_psensor_quit(struct ui_psensor *ui)
 {
+       save_window_pos(ui);
+
+       log_printf(LOG_DEBUG, "Destroy main window");
+       gtk_widget_destroy(ui->main_window);
        gtk_main_quit();
 }
 
@@ -69,25 +137,34 @@ static const char *menu_desc =
 "      <separator />"
 "      <menuitem name='Quit' action='QuitAction' />"
 "    </menu>"
+"    <menu name='Help' action='HelpMenuAction'>"
+"      <menuitem name='About' action='AboutAction' />"
+"    </menu>"
 "  </menubar>"
 "</ui>";
 
 static GtkActionEntry entries[] = {
   { "PsensorMenuAction", NULL, "_Psensor" }, /* name, stock id, label */
 
-  { "PreferencesAction", GTK_STOCK_PREFERENCES,     /* name, stock id */
-    "_Preferences", NULL,                           /* label, accelerator */
-    "Preferences",                                  /* tooltip */
+  { "PreferencesAction", GTK_STOCK_PREFERENCES,   /* name, stock id */
+    N_("_Preferences"), NULL,                     /* label, accelerator */
+    N_("Preferences"),                            /* tooltip */
     G_CALLBACK(cb_preferences) },
 
   { "SensorPreferencesAction", GTK_STOCK_PREFERENCES,
-    "_Sensor Preferences",
-    NULL,
-    "SensorPreferences",
+    N_("_Sensor Preferences"), NULL,
+    N_("Sensor Preferences"),
     G_CALLBACK(cb_sensor_preferences) },
 
   { "QuitAction",
-    GTK_STOCK_QUIT, "_Quit", NULL, "Quit", G_CALLBACK(cb_menu_quit) }
+    GTK_STOCK_QUIT, N_("_Quit"), NULL, N_("Quit"), G_CALLBACK(cb_menu_quit) },
+
+  { "HelpMenuAction", NULL, "_Help" },
+
+  { "AboutAction", GTK_STOCK_PREFERENCES,
+    N_("_About"), NULL,
+    N_("About"),
+    G_CALLBACK(cb_about) }
 };
 static guint n_entries = G_N_ELEMENTS(entries);
 
@@ -137,13 +214,23 @@ static unsigned int enable_alpha_channel(GtkWidget *w)
 
 void ui_window_create(struct ui_psensor *ui)
 {
-       GtkWidget *window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
+       GtkWidget *window, *menubar;
        GdkScreen *screen;
        GdkPixbuf *icon;
        GtkIconTheme *icon_theme;
-       GtkWidget *menubar;
+       struct config *cfg;
+
+       window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
+
+       cfg = ui->config;
+       if (cfg->window_restore_enabled)
+               gtk_window_move(GTK_WINDOW(window),
+                               cfg->window_x,
+                               cfg->window_y);
 
-       gtk_window_set_default_size(GTK_WINDOW(window), 800, 200);
+       gtk_window_set_default_size(GTK_WINDOW(window),
+                                   cfg->window_w,
+                                   cfg->window_h);
 
        gtk_window_set_title(GTK_WINDOW(window),
                             _("Psensor - Temperature Monitor"));
@@ -151,12 +238,11 @@ void ui_window_create(struct ui_psensor *ui)
 
        screen = gtk_widget_get_screen(window);
 
-       if (ui->config->alpha_channel_enabled
-           && gdk_screen_is_composited(screen)) {
+       if (cfg->alpha_channel_enabled && gdk_screen_is_composited(screen)) {
                if (!enable_alpha_channel(window))
-                       ui->config->alpha_channel_enabled = 0;
+                       cfg->alpha_channel_enabled = 0;
        } else {
-               ui->config->alpha_channel_enabled = 0;
+               cfg->alpha_channel_enabled = 0;
        }
 
        icon_theme = gtk_icon_theme_get_default();
@@ -170,10 +256,10 @@ void ui_window_create(struct ui_psensor *ui)
                         "delete_event", G_CALLBACK(on_delete_event_cb), ui);
 
        gtk_window_set_decorated(GTK_WINDOW(window),
-                                ui->config->window_decoration_enabled);
+                                cfg->window_decoration_enabled);
 
        gtk_window_set_keep_below(GTK_WINDOW(window),
-                                 ui->config->window_keep_below_enabled);
+                                 cfg->window_keep_below_enabled);
 
        /* main box */
        menubar = get_menu(ui);
@@ -188,7 +274,7 @@ void ui_window_create(struct ui_psensor *ui)
        ui->main_window = window;
        ui->menu_bar = menubar;
 
-       gtk_widget_show_all(ui->main_window);
+       gtk_widget_show_all(ui->main_box);
 }
 
 static void menu_bar_show(unsigned int show, struct ui_psensor *ui)
@@ -241,6 +327,10 @@ void ui_window_update(struct ui_psensor *ui)
                                GTK_WIDGET(ui->w_graph), TRUE, TRUE);
        }
 
+       if (cfg->window_restore_enabled)
+               gtk_paned_set_position(GTK_PANED(ui->sensor_box),
+                                      ui->config->window_divider_pos);
+
        if (!init)
                g_object_unref(GTK_WIDGET(ui->ui_sensorlist->widget));
 
@@ -251,3 +341,9 @@ void ui_window_update(struct ui_psensor *ui)
        else
                menu_bar_show(1, ui);
 }
+
+void ui_window_show(struct ui_psensor *ui)
+{
+       log_printf(LOG_DEBUG, "ui_window_show()");
+       gtk_window_present(GTK_WINDOW(ui->main_window));
+}