]> icculus.org git repositories - dana/obconf.git/blob - src/windows.c
missing the topright option for the dock
[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-2007   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 POPUP_NONPIXEL 0
26 #define POPUP_ALWAYS   1
27 #define POPUP_NEVER    2
28
29 #define POSITION_CENTER 0
30 #define POSITION_TOP    1
31
32 static void enable_stuff();
33
34 void windows_setup_tab()
35 {
36     GtkWidget *w, *w1, *w2, *w3;
37     GtkSizeGroup *group;
38     gchar *s;
39     gint pos;
40
41     mapping = TRUE;
42
43     w1    = get_widget("resist_window");
44     w2    = get_widget("resist_edge");
45     w3    = get_widget("drag_threshold");
46     group = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
47     gtk_size_group_add_widget(group, w1);
48     gtk_size_group_add_widget(group, w2);
49     gtk_size_group_add_widget(group, w3);
50
51     w1    = get_widget("resist_window_label");
52     w2    = get_widget("resist_edge_label");
53     w3    = get_widget("drag_threshold_label");
54     group = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
55     gtk_size_group_add_widget(group, w1);
56     gtk_size_group_add_widget(group, w2);
57     gtk_size_group_add_widget(group, w3);
58
59     w = get_widget("focus_new");
60     gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(w),
61                                  tree_get_bool("focus/focusNew", TRUE));
62
63     w = get_widget("resize_contents");
64     gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(w),
65                                  tree_get_bool("resize/drawContents", TRUE));
66
67     w = get_widget("resist_window");
68     gtk_spin_button_set_value(GTK_SPIN_BUTTON(w),
69                               tree_get_int("resistance/strength", 10));
70
71     w = get_widget("resist_edge");
72     gtk_spin_button_set_value(GTK_SPIN_BUTTON(w),
73                               tree_get_int("resistance/screen_edge_strength",
74                                            20));
75
76     w = get_widget("place_mouse");
77     s = tree_get_string("placement/policy", "Smart");
78     gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(w),
79                                  !g_ascii_strcasecmp(s, "UnderMouse"));
80     g_free(s);
81
82     w = get_widget("resize_popup");
83     s = tree_get_string("resize/popupShow", "NonPixel");
84     if (!strcasecmp(s, "Always"))     pos = POPUP_ALWAYS;
85     else if (!strcasecmp(s, "Never")) pos = POPUP_NEVER;
86     else                              pos = POPUP_NONPIXEL;
87     g_free(s);
88     gtk_option_menu_set_history(GTK_OPTION_MENU(w), pos);
89
90     w = get_widget("drag_threshold");
91     gtk_spin_button_set_value(GTK_SPIN_BUTTON(w),
92                               tree_get_int("mouse/dragThreshold", 8));
93
94     w = get_widget("resize_position");
95     s = tree_get_string("resize/popupPosition", "Center");
96     if (!strcasecmp(s, "Top")) pos = POSITION_TOP;
97     else                       pos = POSITION_CENTER;
98     g_free(s);
99     gtk_option_menu_set_history(GTK_OPTION_MENU(w), pos);
100
101     enable_stuff();
102
103     mapping = FALSE;
104 }
105
106 static void enable_stuff()
107 {
108     GtkWidget *w;
109     gboolean b;
110
111     w = get_widget("resize_popup");
112     b = gtk_option_menu_get_history(GTK_OPTION_MENU(w)) != POPUP_NEVER;
113
114     w = get_widget("resize_position");
115     gtk_widget_set_sensitive(w, b);
116 }
117
118 void on_focus_new_toggled(GtkToggleButton *w, gpointer data)
119 {
120     if (mapping) return;
121
122     tree_set_bool("focus/focusNew", gtk_toggle_button_get_active(w));
123 }
124
125 void on_place_mouse_toggled(GtkToggleButton *w, gpointer data)
126 {
127     if (mapping) return;
128
129     tree_set_string("placement/policy",
130                     (gtk_toggle_button_get_active(w) ?
131                      "UnderMouse" : "Smart"));
132 }
133
134 void on_resist_window_value_changed(GtkSpinButton *w, gpointer data)
135 {
136     if (mapping) return;
137
138     tree_set_int("resistance/strength", gtk_spin_button_get_value_as_int(w));
139 }
140
141 void on_resist_edge_value_changed(GtkSpinButton *w, gpointer data)
142 {
143     if (mapping) return;
144
145     tree_set_int("resistance/screen_edge_strength",
146                  gtk_spin_button_get_value_as_int(w));
147 }
148
149 void on_resize_contents_toggled(GtkToggleButton *w, gpointer data)
150 {
151     if (mapping) return;
152
153     tree_set_bool("resize/drawContents", gtk_toggle_button_get_active(w));
154 }
155
156 void on_resize_popup_nonpixel_activate(GtkMenuItem *w, gpointer data)
157 {
158     if (mapping) return;
159
160     tree_set_string("resize/popupShow", "NonPixel");
161     enable_stuff();
162 }
163
164 void on_resize_popup_always_activate(GtkMenuItem *w, gpointer data)
165 {
166     if (mapping) return;
167
168     tree_set_string("resize/popupShow", "Always");
169     enable_stuff();
170 }
171
172 void on_resize_popup_never_activate(GtkMenuItem *w, gpointer data)
173 {
174     if (mapping) return;
175
176     tree_set_string("resize/popupShow", "Never");
177     enable_stuff();
178 }
179
180 void on_drag_threshold_value_changed(GtkSpinButton *w, gpointer data)
181 {
182     if (mapping) return;
183
184     tree_set_int("mouse/dragThreshold",
185                  gtk_spin_button_get_value_as_int(w));
186 }
187
188 void on_resize_position_center_activate(GtkMenuItem *w, gpointer data)
189 {
190     if (mapping) return;
191
192     tree_set_string("resize/popupPosition", "Center");
193     enable_stuff();
194 }
195
196
197 void on_resize_position_top_activate(GtkMenuItem *w, gpointer data)
198 {
199     if (mapping) return;
200
201     tree_set_string("resize/popupPosition", "Top");
202     enable_stuff();
203 }
204