Cleanups - the first of many...
[sbrightapplet] / src / simple-brightness-applet.h
index 344b85e..04eeadd 100644 (file)
@@ -20,8 +20,8 @@
  *
  */
 
-#ifndef SIMPLE_BRIGHTNESS_APPLET_H
-#define SIMPLE_BRIGHTNESS_APPLET_H
+#ifndef __SIMPLE_BRIGHTNESS_APPLET_H__
+#define __SIMPLE_BRIGHTNESS_APPLET_H__
 
 #include <glib.h>
 #include <glib-object.h>
@@ -48,22 +48,23 @@ G_BEGIN_DECLS
 
 typedef struct _SimpleBrightnessApplet SimpleBrightnessApplet;
 typedef struct _SimpleBrightnessAppletClass SimpleBrightnessAppletClass;
+typedef struct _SimpleBrightnessAppletPrivate SimpleBrightnessAppletPrivate;
 
 struct _SimpleBrightnessApplet
 {
-    HDStatusMenuItem hitem;
+       HDStatusMenuItem hitem;
+
+       SimpleBrightnessAppletPrivate *priv;
 };
 
 struct _SimpleBrightnessAppletClass
 {
-    HDStatusMenuItemClass parent_class;
+       HDStatusMenuItemClass parent_class;
 };
 
 GType simple_brightness_applet_get_type (void);
 
-SimpleBrightnessApplet* simple_brightness_applet_new (void);
-
 G_END_DECLS
 
-#endif /* SIMPLE_BRIGHTNESS_APPLET_H */
+#endif /* __SIMPLE_BRIGHTNESS_APPLET_H__ */