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
|
/* Sticky Notes
* Copyright (C) 2002-2003 Loban A Rahman
*
* 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, 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., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
#ifndef __STICKYNOTES_APPLET_H__
#define __STICKYNOTES_APPLET_H__
#include <glib/gi18n.h>
#include <gdk/gdk.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gtk/gtk.h>
#include <mate-panel-applet.h>
#include <mateconf/mateconf-client.h>
#define MATECONF_PATH "/apps/stickynotes_applet"
#define BUILDER_PATH GTK_BUILDERDIR "/stickynotes.ui"
#define ICON_PATH STICKYNOTES_ICONDIR
#define STICKYNOTES_STOCK_LOCKED "stickynotes-stock-locked"
#define STICKYNOTES_STOCK_UNLOCKED "stickynotes-stock-unlocked"
#define STICKYNOTES_STOCK_CLOSE "stickynotes-stock-close"
#define STICKYNOTES_STOCK_RESIZE_SE "stickynotes-stock-resize-se"
#define STICKYNOTES_STOCK_RESIZE_SW "stickynotes-stock-resize-sw"
/* Global Sticky Notes instance */
typedef struct
{
GtkBuilder *builder;
GtkWidget *w_prefs; /* The prefs dialog */
GtkAdjustment *w_prefs_width;
GtkAdjustment *w_prefs_height;
GtkWidget *w_prefs_color;
GtkWidget *w_prefs_font_color;
GtkWidget *w_prefs_sys_color;
GtkWidget *w_prefs_font;
GtkWidget *w_prefs_sys_font;
GtkWidget *w_prefs_sticky;
GtkWidget *w_prefs_force;
GtkWidget *w_prefs_desktop;
GList *notes; /* Linked-List of all the sticky notes */
GList *applets; /* Linked-List of all the applets */
GdkPixbuf *icon_normal; /* Normal applet icon */
GdkPixbuf *icon_prelight; /* Prelighted applet icon */
MateConfClient *mateconf; /* MateConf Client */
gint max_height;
guint last_timeout_data;
gboolean visible; /* Toggle show/hide notes */
} StickyNotes;
/* Sticky Notes Icons */
typedef struct
{
gchar *stock_id;
gchar *filename;
} StickyNotesStockIcon;
/* Sticky Notes Applet */
typedef struct
{
GtkWidget *w_applet; /* The applet */
GtkWidget *w_image; /* The applet icon */
GtkWidget *destroy_all_dialog; /* The applet it's destroy all dialog */
gboolean prelighted; /* Whether applet is prelighted */
gboolean pressed; /* Whether applet is pressed */
gint panel_size;
MatePanelAppletOrient panel_orient;
GtkActionGroup *action_group;
GtkWidget *menu_tip;
} StickyNotesApplet;
typedef enum
{
STICKYNOTES_NEW = 0,
STICKYNOTES_SET_VISIBLE,
STICKYNOTES_SET_LOCKED
} StickyNotesDefaultAction;
extern StickyNotes *stickynotes;
void stickynotes_applet_init(MatePanelApplet *mate_panel_applet);
void stickynotes_applet_init_icons(void);
void stickynotes_applet_init_prefs(void);
StickyNotesApplet * stickynotes_applet_new(MatePanelApplet *mate_panel_applet);
void stickynotes_applet_update_icon(StickyNotesApplet *applet);
void stickynotes_applet_update_prefs(void);
void stickynotes_applet_update_menus(void);
void stickynotes_applet_update_tooltips(void);
void stickynotes_applet_do_default_action(GdkScreen *screen);
void stickynotes_applet_panel_icon_get_geometry (int *x, int *y, int *width, int *height);
#endif /* __STICKYNOTES_APPLET_H__ */
|