File: dpreferences.c

package info (click to toggle)
gmoo 0.5.6-11
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,412 kB
  • ctags: 2,213
  • sloc: ansic: 18,320; sh: 5,396; makefile: 385; perl: 205; sed: 93; tcl: 30
file content (251 lines) | stat: -rw-r--r-- 10,350 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
/* gmoo - a gtk+ based graphical MOO/MUD/MUSH/... client
 * Copyright (C) 1999-2000 Gert Scholten
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */
#include <gtk/gtk.h>

#include "config.h"
#include "dpreferences.h"
#include "settings.h"
#include "rcfile.h"
#include "run.h"
#include "help.h"

void dialog_preferences_create(d_preferences_t*);

void gm_dialog_preferences_open() {
    d_preferences_t *p = g_malloc(sizeof(d_preferences_t));
    p->settings = gm_settings_copy(settings);
    dialog_preferences_create(p);
}

int dialog_preferences_apply(d_preferences_t *p) {
    if(debug) printf("Applying preferences in the preferences dialog\n");
    p->settings = gm_settings_replace(p->settings);
#ifdef ZVT
    gm_run_apply_changes(p->run);
#endif
    return TRUE;
}

void dialog_preferences_close(d_preferences_t *p) {
    gm_settings_free(p->settings);
#ifdef ZVT
    gm_run_free_dialog(p->run);
#endif
    gm_colorsel_free(p->colorsel);
    g_free(p);
}

void dialog_preferences_help(int page, char *page_name, d_preferences_t *p) {
    char *chapter;
    int i;
    if(debug) printf("Help pressed for %d (\"%s\")\n", page, page_name);
    chapter = g_strconcat(HELP_DPREFERENCES, "_", page_name, NULL);
    for(i = 0; chapter[i] != '\0'; i++) {
        if(chapter[i] == ' ') chapter[i] = '_';
    }
    gm_help_show(p->pc->window, chapter);
    g_free(chapter);
}

void dialog_preferences_create(d_preferences_t *p) {
    pc_sec *s, *iface, *output, *mcp;
    pc_var *master;
    pc_var *s0, *s1, *s2, *s3;
#if defined(PIXBUF) || defined(IMLIB)
    pc_var *sTile;
#endif
#ifdef IMLIB
    pc_var *s4, *s5, *s6, *s7;
#endif

    p->pc = pc_new(_("Global preferences"),
                   (pc_apply_func)dialog_preferences_apply,
                   (pc_func)      dialog_preferences_close,
                   (pc_help_func) dialog_preferences_help,
                   TRUE,
                   p);

    iface = s = pc_section_new(p->pc, _("Interface")); 
    pc_check_new(s, _("Restore worlds when gmoo starts"),
                 &p->settings->restore_open_worlds);
    pc_check_new(s, _("Show toolbar"),
                 &p->settings->toolbar);
    pc_check_new(s, _("Save input height"), &p->settings->save_input_height);
    pc_option_new(s, _("World switching hotkey"), &p->settings->hotkey,
                  _("Ctrl"), _("Alt"), _("Either"), NULL);
    pc_check_new(s, _("Switch world by <hotkey>-arrow"),
                 &p->settings->hotkey_arrow);
    
    s = pc_subsection_new(iface, _("Window")); 
    pc_check_new(s, _("Save window size"), &p->settings->save_window_size);
    pc_option_new(s, _("Tab position"), &p->settings->tab_position,
                  _("Left"), _("Right"), _("Top"), _("Bottom"), NULL);
    pc_check_new(s, _("Homogenous tab size"), &p->settings->homo_tabs);
    pc_check_new(s, _("Tabs show lines waiting"),
                 &p->settings->tabs_show_lines_waiting);
    pc_check_new(s, _("The number for <hotkey>-n is shown on the tabs"),
                 &p->settings->tab_pos_on_tab);
    master = pc_check_new(s, _("Limit the length of the name tabs"),
                          &p->settings->tab_limit_length);
    s0 = pc_spin_new(s, _("Max length"), 10, G_MAXINT,
                     &p->settings->tab_max_length);
    pc_check_lock(master, s0, NULL);


    output = s = pc_subsection_new(iface, _("Output"));
    pc_check_new(s, _("gmoo beeps"), &p->settings->beep);
    pc_check_new(s, _("Scroll down when you press <enter>"),
                 &p->settings->scroll_on_enter);
    pc_check_new(s, _("Scroll down when new text appears"),
                 &p->settings->scroll_on_text);
    pc_spin_new (s, _("Buffer size in lines\nUse 0 for unlimited"), 0, G_MAXINT,
                 &p->settings->buffer_size);
    pc_entry_new(s, _("Timestamp\nSee strftime(3) for\nthe format"),
                 &p->settings->timestamp);

    s = pc_subsection_new(output, _("Background"));
    s0 = pc_radio_new(s, NULL, _("Use background color"), &p->settings->bg_col);
#if defined(PIXBUF) || defined(IMLIB)
    s1 = pc_radio_new(s, s0,   _("Transparent"), &p->settings->bg_trans);
    s2 = pc_radio_new(s, s0,   _("Background from file"), &p->settings->bg_file);
    s3 = pc_file_new(s, _("Filename"), &p->settings->bg_filename);
    sTile = pc_option_new(s, _("Method"), &p->settings->bg_tile,
			  _("Fit to window"), _("Tile"), NULL);
    pc_check_lock(s2, s3, sTile, NULL);
#ifdef IMLIB
    s4 = pc_check_new(s, _("Tint background"), &p->settings->bg_tinted);
    s5 = pc_scale_new(s, _("Red"), TRUE, TRUE, 0,256, &p->settings->bg_tint_r);
    s6 = pc_scale_new(s, _("Green"), TRUE, TRUE, 0,256, &p->settings->bg_tint_g);
    s7 = pc_scale_new(s, _("Blue"), TRUE, TRUE, 0,256, &p->settings->bg_tint_b);
    pc_check_lock_reversed(s0, s4, NULL);
    pc_check_lock_through(s4, s5, s6, s7, NULL);
#endif /* IMLIB */
#endif /* PIXBUF || IMLIB */

    s = pc_subsection_new(output, _("User Input"));
    master = pc_check_new(s, _("Show your own input"),
                          &p->settings->show_own_input);
    s0 = pc_option_new(s, _("Foreground color"),
                       &p->settings->show_own_input_fgcolor,
                       gm_settings_get_color_name(0),
                       gm_settings_get_color_name(1),
                       gm_settings_get_color_name(2),
                       gm_settings_get_color_name(3),
                       gm_settings_get_color_name(4),
                       gm_settings_get_color_name(5),
                       gm_settings_get_color_name(6),
                       gm_settings_get_color_name(7),
                       _("None"), NULL);
    s1 = pc_option_new(s, _("Background color"),
                       &p->settings->show_own_input_bgcolor,
                       gm_settings_get_color_name(0),
                       gm_settings_get_color_name(1),
                       gm_settings_get_color_name(2),
                       gm_settings_get_color_name(3),
                       gm_settings_get_color_name(4),
                       gm_settings_get_color_name(5),
                       gm_settings_get_color_name(6),
                       gm_settings_get_color_name(7),
                       _("None"), NULL);
    s2 = pc_check_new(s, _("Show in bold"),
                      &p->settings->show_own_input_bold);
    s3 = pc_check_new(s, _("Show underlined"),
                      &p->settings->show_own_input_underline);
    pc_check_lock(master, s0, s1, s2, s3, NULL);

    s = pc_subsection_new(output, _("Fonts"));
    pc_font_new(s, _("Font"), &p->settings->fontname);

    s = pc_subsection_new(output, _("Colors"));
    p->colorsel = gm_colorsel_create_properties(s, p->settings);
    p->colorsel->pc = p->pc;

    s = pc_subsection_new(iface, _("History"));
    master = pc_check_new(s, _("Enable input history"), &p->settings->history);
    s0     = pc_spin_new(s, _("History size"), 10, G_MAXINT,
                         &p->settings->history_size);
    s1     = pc_check_new(s, _("Selective history"),
                          &p->settings->history_selective);
    s2     = pc_check_new(s, _("Case sensitive"),
                          &p->settings->history_sensitive);
    s3     = pc_check_new(s, _("Store history"),
                          &p->settings->history_store);
    pc_check_lock(master, s0, s1, s3, NULL);
    pc_check_lock2(master, s1, s2, NULL);

#ifdef ZVT
    s = pc_subsection_new(iface, _("Run menu"));
    p->run = gm_run_create_properties(s, p->settings);
    p->run->pc = p->pc;
#endif

    s = pc_section_new(p->pc, _("Misc"));
    pc_check_new(s, _("Reconnect on disconnect"),
                 &p->settings->reconnect);

    s = pc_section_new(p->pc, _("Editor"));
    master = pc_check_new(s, _("Use external editor"),
                          &p->settings->editor_external);
    s0 = pc_check_new(s, _("Use $EDITOR enviroment variable"),
                      &p->settings->editor_use_env);
    s1 = pc_entry_new(s, _("Editor command"),
                      &p->settings->editor_command);
    s2 = pc_check_new(s, _("Delete local file cache when editor closes"),
                      &p->settings->editor_delete_file);
#ifndef ZVT
    pc_check_lock(master, s0, s1, s2, NULL);
#else
    s3 = pc_check_new(s, _("Editor needs terminal"),
                      &p->settings->editor_needs_term);
    pc_check_lock(master, s0, s1, s2, s3, NULL);
#endif


    mcp = s = pc_section_new(p->pc, _("MCP"));

    s = pc_subsection_new(mcp, _("Userlist"));
    pc_check_new(s, _("Place userlist right"),
                 &p->settings->userlist_pos);
    pc_check_new(s, _("Userlist resizeable"),
                 &p->settings->userlist_resizeable);
    pc_check_new(s, _("Show totals"),
                 &p->settings->userlist_totals);
    pc_check_new(s, _("Show column headers"),
                 &p->settings->userlist_headers);
    pc_check_new(s, _("Show object column"),
                 &p->settings->userlist_objects);
    pc_option_new(s, _("Friends color"),
                  &p->settings->userlist_friends_color,
                  gm_settings_get_color_name(0),
                  gm_settings_get_color_name(1),
                  gm_settings_get_color_name(2),
                  gm_settings_get_color_name(3),
                  gm_settings_get_color_name(4),
                  gm_settings_get_color_name(5),
                  gm_settings_get_color_name(6),
                  gm_settings_get_color_name(7),
                  _("None"),
                  NULL);

    pc_check_new(s, _("Automatically open userlist if available"),
                 &p->settings->userlist_auto_open);


    pc_show(p->pc);
}