blob: eeb2828f351e54ba861abb9c9ef93a010fe4cc3a (
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
110
111
112
113
114
115
116
|
/*
* Authors: Luca Cavalli <loopback@slackit.org>
*
* Copyright 2005-2006 Luca Cavalli
* Copyright 2010 Perberos <perberos@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of version 2 of the GNU General Public License
* as published by the Free Software Foundation
*
* 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 Street #330, Boston, MA 02110-1301, USA.
*
*/
#ifndef _MATE_DA_CAPPLET_H_
#define _MATE_DA_CAPPLET_H_
#include <gtk/gtk.h>
#define TERMINAL_SCHEMA "org.mate.applications-terminal"
#define TERMINAL_KEY "exec"
typedef struct _MateDACapplet {
GtkBuilder* builder;
GtkIconTheme* icon_theme;
GtkWidget* window;
GtkWidget* web_combo_box;
GtkWidget* mail_combo_box;
GtkWidget* term_combo_box;
GtkWidget* media_combo_box;
GtkWidget* video_combo_box;
GtkWidget* visual_combo_box;
GtkWidget* mobility_combo_box;
GtkWidget* file_combo_box;
GtkWidget* text_combo_box;
GtkWidget* image_combo_box;
/* Web Browser
* at the moment default,new_win,new_tab arent used */
GtkWidget* web_browser_command_entry;
GtkWidget* web_browser_command_label;
GtkWidget* web_browser_terminal_checkbutton;
GtkWidget* default_radiobutton;
GtkWidget* new_win_radiobutton;
GtkWidget* new_tab_radiobutton;
/* File Manager */
GtkWidget* file_manager_command_entry;
GtkWidget* file_manager_command_label;
GtkWidget* file_manager_terminal_checkbutton;
/* Text Editor */
GtkWidget* text_editor_command_entry;
GtkWidget* text_editor_command_label;
GtkWidget* text_editor_terminal_checkbutton;
/* Mail Client */
GtkWidget* mail_reader_command_entry;
GtkWidget* mail_reader_command_label;
GtkWidget* mail_reader_terminal_checkbutton;
/* Terminal */
GtkWidget* terminal_command_entry;
GtkWidget* terminal_command_label;
GtkWidget* terminal_exec_flag_entry;
GtkWidget* terminal_exec_flag_label;
/* Image Viewer */
GtkWidget* image_viewer_command_entry;
GtkWidget* image_viewer_command_label;
GtkWidget* image_viewer_terminal_checkbutton;
/* Audio Player */
GtkWidget* media_player_command_entry;
GtkWidget* media_player_command_label;
GtkWidget* media_player_terminal_checkbutton;
/* Video Player */
GtkWidget* video_player_command_entry;
GtkWidget* video_player_command_label;
GtkWidget* video_player_terminal_checkbutton;
/* Visual Accessibility */
GtkWidget* visual_command_entry;
GtkWidget* visual_command_label;
GtkWidget* visual_startup_checkbutton;
/* Mobility Accessibility */
GtkWidget* mobility_command_entry;
GtkWidget* mobility_command_label;
GtkWidget* mobility_startup_checkbutton;
/* Lists of available apps */
GList* web_browsers;
GList* mail_readers;
GList* terminals;
GList* media_players;
GList* video_players;
GList* visual_ats;
GList* mobility_ats;
GList* file_managers;
GList* text_editors;
GList* image_viewers;
} MateDACapplet;
#endif
|