refactoring
[ptask.git] / src / ui.c
1 /*
2  * Copyright (C) 2012-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
20 #include <log.h>
21 #include <ui.h>
22 #include <ui_newtask_diag.h>
23 #include <ui_projecttree.h>
24 #include <ui_tasktree.h>
25
26 static GtkComboBox *w_status;
27
28 int newtask_clicked_cbk(GtkButton *btn, gpointer data)
29 {
30         ui_newtask();
31
32         return FALSE;
33 }
34
35 static void save_settings(GtkWindow *window, GSettings *settings)
36 {
37         int w, h, x, y;
38
39         gtk_window_get_size(window, &w, &h);
40         gtk_window_get_position(window, &x, &y);
41
42         log_debug("save_settings(): x=%d, y=%d, w=%d, h=%d", x, y, w, h);
43
44         g_settings_set_int(settings, "window-width", w);
45         g_settings_set_int(settings, "window-height", h);
46         g_settings_set_int(settings, "window-x", x);
47         g_settings_set_int(settings, "window-y", y);
48
49         ui_tasktree_save_settings(settings);
50
51         g_settings_sync();
52 }
53
54 static gboolean delete_event_cbk(GtkWidget *w, GdkEvent *evt, gpointer data)
55 {
56         log_debug("delete_event_cbk");
57
58         save_settings(GTK_WINDOW(w), (GSettings *)data);
59         gtk_widget_destroy(w);
60         gtk_main_quit();
61
62         return TRUE;
63 }
64
65 GtkWindow *create_window(GtkBuilder *builder, GSettings *settings)
66 {
67         GtkWindow *window;
68         int x, y, w, h;
69
70         window = GTK_WINDOW(gtk_builder_get_object(builder, "window"));
71         w_status = GTK_COMBO_BOX(gtk_builder_get_object(builder, "status"));
72
73         w = g_settings_get_int(settings, "window-width");
74         h = g_settings_get_int(settings, "window-height");
75         gtk_window_set_default_size(window, w, h);
76
77         x = g_settings_get_int(settings, "window-x");
78         y = g_settings_get_int(settings, "window-y");
79         gtk_window_move(window, x, y);
80
81         g_signal_connect(window, "delete_event",
82                          G_CALLBACK(delete_event_cbk), settings);
83
84         ui_tasktree_init(builder);
85         ui_projecttree_init(builder);
86
87         ui_tasktree_load_settings(settings);
88
89         return window;
90 }
91
92 const char *ui_get_status_filter()
93 {
94         const char *result;
95         int status;
96
97         log_fct_enter();
98
99         status = gtk_combo_box_get_active(w_status);
100         log_fct(__func__, "status: %d", status);
101
102         if (status == 1)
103                 result = "completed";
104         else
105                 result = "pending";
106
107         log_fct_exit();
108
109         return result;
110 }