2008-11-25 Alberto Garcia <agarcia@igalia.com>
[hildon] / src / hildon-seekbar.h
index 47c7548..58bb62c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * This file is part of hildon-libs
+ * This file is a part of hildon
  *
  * Copyright (C) 2005, 2006 Nokia Corporation, all rights reserved.
  *
@@ -8,7 +8,7 @@
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public License
  * as published by the Free Software Foundation; version 2.1 of
- * the License.
+ * the License, or (at your option) any later version.
  *
  * This library is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
  *
  */
 
-#ifndef __HILDON_SEEKBAR_H__
-#define __HILDON_SEEKBAR_H__
+#ifndef                                         HILDON_DISABLE_DEPRECATED
 
-#include <gtk/gtkscale.h>
+#ifndef                                         __HILDON_SEEKBAR_H__
+#define                                         __HILDON_SEEKBAR_H__
+
+#include                                        <gtk/gtk.h>
 
 G_BEGIN_DECLS
-#define HILDON_TYPE_SEEKBAR ( hildon_seekbar_get_type() )
-#define HILDON_SEEKBAR(obj) (GTK_CHECK_CAST (obj,\
-        HILDON_TYPE_SEEKBAR, HildonSeekbar))
-#define HILDON_SEEKBAR_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass),\
-        HILDON_TYPE_SEEKBAR, HildonSeekbarClass))
-#define HILDON_IS_SEEKBAR(obj) (GTK_CHECK_TYPE (obj, HILDON_TYPE_SEEKBAR))
-#define HILDON_IS_SEEKBAR_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass),\
-        HILDON_TYPE_SEEKBAR))
-/** 
- * HildonSeekbar:
- * 
- * Contains only private data.
- */
-typedef struct _HildonSeekbar HildonSeekbar;
-typedef struct _HildonSeekbarClass HildonSeekbarClass;
 
-struct _HildonSeekbar {
-    GtkScale scale;
+#define                                         HILDON_TYPE_SEEKBAR \
+                                                (hildon_seekbar_get_type())
+
+#define                                         HILDON_SEEKBAR(obj) \
+                                                (GTK_CHECK_CAST (obj,\
+                                                HILDON_TYPE_SEEKBAR, HildonSeekbar))
+
+#define                                         HILDON_SEEKBAR_CLASS(klass) \
+                                                (GTK_CHECK_CLASS_CAST ((klass),\
+                                                HILDON_TYPE_SEEKBAR, HildonSeekbarClass))
+
+#define                                         HILDON_IS_SEEKBAR(obj) \
+                                                (GTK_CHECK_TYPE (obj, HILDON_TYPE_SEEKBAR))
+
+#define                                         HILDON_IS_SEEKBAR_CLASS(klass) \
+                                                (GTK_CHECK_CLASS_TYPE ((klass),\
+                                                HILDON_TYPE_SEEKBAR))
+
+#define                                         HILDON_SEEKBAR_GET_CLASS(obj) \
+                                                ((HildonSeekBarClass *) G_OBJECT_GET_CLASS(obj))
+
+
+typedef struct                                  _HildonSeekbar HildonSeekbar;
+
+typedef struct                                  _HildonSeekbarClass HildonSeekbarClass;
+
+struct                                          _HildonSeekbar 
+{
+    GtkScale parent;
 };
 
-struct _HildonSeekbarClass {
+struct                                          _HildonSeekbarClass
+{
     GtkScaleClass parent_class;
 };
 
-GType hildon_seekbar_get_type(void) G_GNUC_CONST;
-GtkWidget *hildon_seekbar_new(void);
-gint hildon_seekbar_get_total_time(HildonSeekbar *seekbar);
-void hildon_seekbar_set_total_time(HildonSeekbar *seekbar, gint time);
-gint hildon_seekbar_get_position(HildonSeekbar *seekbar);
-void hildon_seekbar_set_position(HildonSeekbar *seekbar, gint time);
-void hildon_seekbar_set_fraction(HildonSeekbar *seekbar, guint fraction);
-guint hildon_seekbar_get_fraction(HildonSeekbar *seekbar);
+GType G_GNUC_CONST
+hildon_seekbar_get_type                         (void);
+
+GtkWidget*
+hildon_seekbar_new                              (void);
+
+gint
+hildon_seekbar_get_total_time                   (HildonSeekbar *seekbar);
+
+void
+hildon_seekbar_set_total_time                   (HildonSeekbar *seekbar, 
+                                                 gint time);
+
+gint
+hildon_seekbar_get_position                     (HildonSeekbar *seekbar);
+
+void 
+hildon_seekbar_set_position                     (HildonSeekbar *seekbar, 
+                                                 gint time);
+
+void 
+hildon_seekbar_set_fraction                     (HildonSeekbar *seekbar, 
+                                                 guint fraction);
+
+guint
+hildon_seekbar_get_fraction                     (HildonSeekbar *seekbar);
 
 G_END_DECLS
-#endif /* __HILDON_SEEKBAR_H__ */
+
+#endif                                          /* __HILDON_SEEKBAR_H__ */
+
+#endif                                          /* HILDON_DISABLE_DEPRECATED */