]> icculus.org git repositories - dana/obconf.git/blob - src/windows.c
Add translation (Complete)
[dana/obconf.git] / src / windows.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    windows.c for ObConf, the configuration tool for Openbox
4    Copyright (c) 2003-2008   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 "tree.h"
22
23 static gboolean mapping = FALSE;
24
25 #define PLACE_ON_FIXED 0
26 #define PLACE_ON_PRIMARY 0
27 #define PLACE_ON_ACTIVE 1
28 #define PLACE_ON_MOUSE 2
29 #define PLACE_ON_ALL 3
30
31 static void enable_stuff();
32
33 void windows_setup_tab()
34 {
35     GtkWidget *w;
36     gchar *s;
37
38     mapping = TRUE;
39
40     w = get_widget("focus_new");
41     gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(w),
42                                  tree_get_bool("focus/focusNew", TRUE));
43
44     w = get_widget("place_mouse");
45     s = tree_get_string("placement/policy", "Smart");
46     gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(w),
47                                  !g_ascii_strcasecmp(s, "UnderMouse"));
48     g_free(s);
49
50     w = get_widget("place_active_popup");
51     s = tree_get_string("placement/monitor", "Any");
52     if (!g_ascii_strcasecmp(s, "Active"))
53         gtk_combo_box_set_active(GTK_COMBO_BOX(w), PLACE_ON_ACTIVE);
54     else if (!g_ascii_strcasecmp(s, "Mouse"))
55         gtk_combo_box_set_active(GTK_COMBO_BOX(w), PLACE_ON_MOUSE);
56     else if (!g_ascii_strcasecmp(s, "Primary"))
57         gtk_combo_box_set_active(GTK_COMBO_BOX(w), PLACE_ON_PRIMARY);
58     else
59         gtk_combo_box_set_active(GTK_COMBO_BOX(w), PLACE_ON_ALL);
60     g_free(s);
61
62     w = get_widget("primary_monitor_popup");
63     s = tree_get_string("placement/primaryMonitor", "");
64     if (!g_ascii_strcasecmp(s, "Active"))
65         gtk_combo_box_set_active(GTK_COMBO_BOX(w), PLACE_ON_ACTIVE);
66     else if (!g_ascii_strcasecmp(s, "Mouse"))
67         gtk_combo_box_set_active(GTK_COMBO_BOX(w), PLACE_ON_MOUSE);
68     else {
69         gtk_combo_box_set_active(GTK_COMBO_BOX(w), PLACE_ON_FIXED);
70
71         w = get_widget("fixed_monitor");
72         gtk_spin_button_set_value(GTK_SPIN_BUTTON(w),
73                                   tree_get_int("placement/primaryMonitor", 1));
74     }
75     g_free(s);
76
77     enable_stuff();
78
79     mapping = FALSE;
80 }
81
82 static void enable_stuff()
83 {
84     GtkWidget *w;
85     gboolean b;
86
87     w = get_widget("place_mouse");
88     b = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(w));
89
90     w = get_widget("primary_monitor_popup");
91     b = gtk_combo_box_get_active(GTK_COMBO_BOX(w)) == PLACE_ON_FIXED;
92     w = get_widget("fixed_monitor");
93     gtk_widget_set_sensitive(w, b);
94 }
95
96 void on_primary_monitor_changed(GtkComboBox *w, gpointer data)
97 {
98     if (mapping) return;
99
100     switch (gtk_combo_box_get_active(w)) {
101     case 0:
102       {
103         GtkWidget *w2 = get_widget("fixed_monitor");
104         tree_set_int("placement/primaryMonitor",
105                      gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(w2)));
106         break;
107       }
108       break;
109     case 1:
110       tree_set_string("placement/primaryMonitor", "Active");
111       break;
112     case 2:
113       tree_set_string("placement/primaryMonitor", "Mouse");
114     }
115     enable_stuff();
116 }
117
118 void on_fixed_monitor_value_changed(GtkSpinButton *w, gpointer data)
119 {
120     if (mapping) return;
121
122     tree_set_int("placement/primaryMonitor",
123                  gtk_spin_button_get_value_as_int(w));
124 }
125
126 void on_focus_new_toggled(GtkToggleButton *w, gpointer data)
127 {
128     if (mapping) return;
129
130     tree_set_bool("focus/focusNew", gtk_toggle_button_get_active(w));
131 }
132
133 void on_place_mouse_toggled(GtkToggleButton *w, gpointer data)
134 {
135     if (mapping) return;
136
137     tree_set_string("placement/policy",
138                     (gtk_toggle_button_get_active(w) ?
139                      "UnderMouse" : "Smart"));
140     enable_stuff();
141 }
142
143 void on_place_active_popup_changed(GtkComboBox *w, gpointer data)
144 {
145     if (mapping) return;
146
147     switch (gtk_combo_box_get_active(w)) {
148     case 0:
149       tree_set_string("placement/monitor", "Primary");
150       break;
151     case 1:
152       tree_set_string("placement/monitor", "Active");
153       break;
154     case 2:
155       tree_set_string("placement/monitor", "Mouse");
156       break;
157     case 3:
158       tree_set_string("placement/monitor", "Any");
159       break;
160     }
161 }