summaryrefslogtreecommitdiff
path: root/mate-panel/panel-types.h
diff options
context:
space:
mode:
authorPerberos <[email protected]>2011-12-01 22:56:10 -0300
committerPerberos <[email protected]>2011-12-01 22:56:10 -0300
commitc51ef797a707f4e2c6f9688d4378f2b0e9898a66 (patch)
tree019ae92bb53c19b30077545cb14743cbd1b57aef /mate-panel/panel-types.h
downloadmate-panel-c51ef797a707f4e2c6f9688d4378f2b0e9898a66.tar.bz2
mate-panel-c51ef797a707f4e2c6f9688d4378f2b0e9898a66.tar.xz
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'mate-panel/panel-types.h')
-rw-r--r--mate-panel/panel-types.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/mate-panel/panel-types.h b/mate-panel/panel-types.h
new file mode 100644
index 00000000..e71549ae
--- /dev/null
+++ b/mate-panel/panel-types.h
@@ -0,0 +1,19 @@
+/*global type definitions*/
+#ifndef PANEL_TYPES_H
+#define PANEL_TYPES_H
+
+#include <gdk/gdk.h>
+#include <gtk/gtk.h>
+
+typedef enum {
+ PANEL_SPEED_SLOW,
+ PANEL_SPEED_MEDIUM,
+ PANEL_SPEED_FAST
+} PanelSpeed;
+
+typedef struct {
+ GdkColor gdk;
+ guint16 alpha;
+} PanelColor;
+
+#endif