Only set double spacing in progress notes
[hildon] / src / hildon-note.h
index 4434fdb..8e67cfd 100644 (file)
@@ -1,14 +1,14 @@
 /*
- * This file is part of hildon-libs
+ * This file is a part of hildon
  *
  * Copyright (C) 2005, 2006 Nokia Corporation, all rights reserved.
  *
- * Contact: Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
+ * Contact: Rodrigo Novo <rodrigo.novo@nokia.com>
  *
  * 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
@@ -25,8 +25,7 @@
 #ifndef                                         __HILDON_NOTE_H__
 #define                                         __HILDON_NOTE_H__
 
-#include                                        <gtk/gtkdialog.h>
-#include                                        <gtk/gtkprogressbar.h>
+#include                                        <gtk/gtk.h>
 
 G_BEGIN_DECLS
 
@@ -50,15 +49,6 @@ typedef struct                                  _HildonNote HildonNote;
 
 typedef struct                                  _HildonNoteClass HildonNoteClass;
 
-typedef enum
-{
-    HILDON_NOTE_CONFIRMATION_TYPE = 0,
-    HILDON_NOTE_CONFIRMATION_BUTTON_TYPE,
-    HILDON_NOTE_INFORMATION_TYPE,
-    HILDON_NOTE_INFORMATION_THEME_TYPE,
-    HILDON_NOTE_PROGRESSBAR_TYPE
-}                                               HildonNoteType;
-
 struct                                          _HildonNote 
 {
     GtkDialog parent;
@@ -81,10 +71,12 @@ hildon_note_new_confirmation_add_buttons        (GtkWindow *parent,
                                                  const gchar *description, 
                                                  ...);
 
+#ifndef HILDON_DISABLE_DEPRECATED
 GtkWidget*
 hildon_note_new_confirmation_with_icon_name     (GtkWindow *parent,
                                                  const gchar *description,
                                                  const gchar *icon_name);
+#endif
 
 GtkWidget*
 hildon_note_new_cancel_with_progress_bar        (GtkWindow *parent,
@@ -94,12 +86,13 @@ hildon_note_new_cancel_with_progress_bar        (GtkWindow *parent,
 GtkWidget*
 hildon_note_new_information                     (GtkWindow *parent,
                                                  const gchar *description);
-                                       
+#ifndef HILDON_DISABLE_DEPRECATED
 GtkWidget*
 hildon_note_new_information_with_icon_name      (GtkWindow *parent,
                                                  const gchar *description,
                                                  const gchar *icon_name);
-                                                       
+#endif
+
 void 
 hildon_note_set_button_text                     (HildonNote *note, 
                                                  const gchar *text);
@@ -109,6 +102,15 @@ hildon_note_set_button_texts                    (HildonNote *note,
                                                  const gchar *text_ok,
                                                  const gchar *text_cancel);
 
+typedef enum
+{
+    HILDON_NOTE_TYPE_CONFIRMATION = 0,
+    HILDON_NOTE_TYPE_CONFIRMATION_BUTTON,
+    HILDON_NOTE_TYPE_INFORMATION,
+    HILDON_NOTE_TYPE_INFORMATION_THEME,
+    HILDON_NOTE_TYPE_PROGRESSBAR
+}                                               HildonNoteType;
+
 G_END_DECLS
 
 #endif                                          /* __HILDON_NOTE_H__ */