summaryrefslogtreecommitdiff
path: root/mate-panel/panel-types.h
diff options
context:
space:
mode:
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