blob: 875a7fa278097fa6c5fe1ee84a6fee0a081b767d (
plain)
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
|
/*
* Mini-Commander Applet
* Copyright (C) 1998, 1999 Oliver Maruhn <oliver@maruhn.com>
* 2002 Sun Microsystems Inc.
*
* Authors: Oliver Maruhn <oliver@maruhn.com>
* Mark McLoughlin <mark@skynet.ie>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __PREFERENCES_H__
#define __PREFERENCES_H__
#include <glib.h>
G_BEGIN_DECLS
#include <sys/types.h>
#include <regex.h>
#include <gtk/gtk.h>
typedef struct {
char *pattern;
char *command;
regex_t regex;
} MCMacro;
typedef struct {
int show_default_theme;
int auto_complete_history;
int normal_size_x;
int normal_size_y;
int panel_size_x;
int cmd_line_color_fg_r;
int cmd_line_color_fg_g;
int cmd_line_color_fg_b;
int cmd_line_color_bg_r;
int cmd_line_color_bg_g;
int cmd_line_color_bg_b;
GSList *macros;
guint idle_macros_loader_id;
} MCPreferences;
typedef struct {
GtkWidget *dialog;
GtkWidget *auto_complete_history_toggle;
GtkWidget *size_spinner;
GtkWidget *use_default_theme_toggle;
GtkWidget *fg_color_picker;
GtkWidget *bg_color_picker;
GtkWidget *macros_tree;
GtkWidget *delete_button;
GtkWidget *add_button;
GtkListStore *macros_store;
GtkWidget *macro_add_dialog;
GtkWidget *pattern_entry;
GtkWidget *command_entry;
} MCPrefsDialog;
/* Defaults */
#define MC_DEFAULT_SHOW_DEFAULT_THEME TRUE
#define MC_DEFAULT_SHOW_HANDLE FALSE
#define MC_DEFAULT_SHOW_FRAME FALSE
#define MC_DEFAULT_AUTO_COMPLETE_HISTORY TRUE
#define MC_DEFAULT_NORMAL_SIZE_X 150
#define MC_DEFAULT_NORMAL_SIZE_Y 48
#define MC_DEFAULT_CMD_LINE_COLOR_FG_R 0xfc65
#define MC_DEFAULT_CMD_LINE_COLOR_FG_G 0xfc65
#define MC_DEFAULT_CMD_LINE_COLOR_FG_B 0xfc65
#define MC_DEFAULT_CMD_LINE_COLOR_BG_R 0x0
#define MC_DEFAULT_CMD_LINE_COLOR_BG_G 0x0
#define MC_DEFAULT_CMD_LINE_COLOR_BG_B 0x0
#include "mini-commander_applet.h"
void mc_load_preferences (MCData *mc);
void mc_show_preferences (GtkAction *action,
MCData *mc);
void mc_macros_free (GSList *macros);
gboolean mc_key_writable (MCData *mc,
const char *key);
G_END_DECLS
#endif
|