]> spindle.queued.net Git - midori/commitdiff
Remove browser-count, midori_panel_set_compact, console toolbar
authorChristian Dywan <christian@twotoasts.de>
Tue, 7 Sep 2010 20:24:11 +0000 (22:24 +0200)
committerChristian Dywan <christian@twotoasts.de>
Tue, 7 Sep 2010 20:24:11 +0000 (22:24 +0200)
midori/midori-app.c
midori/midori-panel.c
midori/midori-panel.h
panels/midori-console.c
panels/midori-console.h

index d4cfd16bd3074485c04601d8abe5e3428f8e3fb5..521489782921c55b43b1b4164cfd45003bab6eef 100644 (file)
@@ -96,8 +96,7 @@ enum
     PROP_HISTORY,
     PROP_EXTENSIONS,
     PROP_BROWSERS,
-    PROP_BROWSER,
-    PROP_BROWSER_COUNT
+    PROP_BROWSER
 };
 
 enum {
@@ -394,22 +393,6 @@ midori_app_class_init (MidoriAppClass* class)
                                      "The current browser",
                                      MIDORI_TYPE_BROWSER,
                                      G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
-
-    /**
-    * MidoriApp:browser-count:
-    *
-    * The number of browsers.
-    *
-    * Deprecated: 0.1.3 Use MidoriApp:browsers instead.
-    */
-    g_object_class_install_property (gobject_class,
-                                     PROP_BROWSER_COUNT,
-                                     g_param_spec_uint (
-                                     "browser-count",
-                                     "Browser Count",
-                                     "The current number of browsers",
-                                     0, G_MAXUINT, 0,
-                                     G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
 }
 
 static void
@@ -858,9 +841,6 @@ midori_app_get_property (GObject*    object,
     case PROP_BROWSER:
         g_value_set_object (value, app->browser);
         break;
-    case PROP_BROWSER_COUNT:
-        g_value_set_uint (value, katze_array_get_length (app->browsers));
-        break;
     default:
         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
         break;
index 9747b342aa80328ddc3a27b12e6c32ccbd1f1a76..07ecfff10319806761fd0a3e3523e0ccdd8a2581 100644 (file)
@@ -570,23 +570,6 @@ midori_panel_new (void)
     return GTK_WIDGET (panel);
 }
 
-/**
- * midori_panel_set_compact:
- * @compact: %TRUE if the panel should be compact
- *
- * Determines if the panel should be compact.
- *
- * Deprecated: 0.1.9
- **/
-void
-midori_panel_set_compact (MidoriPanel* panel,
-                          gboolean     compact)
-{
-    g_return_if_fail (MIDORI_IS_PANEL (panel));
-
-    g_object_set (panel, "show-titles", !compact, NULL);
-}
-
 /**
  * midori_panel_set_right_aligned:
  * @right_aligned: %TRUE if the panel should be aligned to the right
index d9a1fe19d1dc4085eb9c712510cb275a81796a85..87166674def0c68371c0573822387bf6e6039936 100644 (file)
@@ -42,10 +42,6 @@ midori_panel_get_type               (void) G_GNUC_CONST;
 GtkWidget*
 midori_panel_new                    (void);
 
-void
-midori_panel_set_compact            (MidoriPanel*       panel,
-                                     gboolean           compact);
-
 void
 midori_panel_set_right_aligned      (MidoriPanel*       panel,
                                      gboolean           right_aligned);
index b70cf11a9998dad08ab38e8c8c5534279db7f660..922d9e3449302fa2f056d8229652a12c73868362 100644 (file)
@@ -59,6 +59,9 @@ midori_console_get_property (GObject*    object,
                              GValue*     value,
                              GParamSpec* pspec);
 
+static GtkWidget*
+midori_console_get_toolbar (MidoriViewable* console);
+
 static void
 midori_console_class_init (MidoriConsoleClass* class)
 {
@@ -327,22 +330,9 @@ midori_console_new (void)
     return GTK_WIDGET (console);
 }
 
-/**
- * midori_console_get_toolbar:
- * @console: a #MidoriConsole
- *
- * Retrieves the toolbar of the console. A new widget is created on
- * the first call of this function.
- *
- * Return value: a toolbar widget
- *
- * Deprecated: 0.1.2: Use midori_viewable_get_toolbar() instead.
- **/
-GtkWidget*
+static GtkWidget*
 midori_console_get_toolbar (MidoriViewable* console)
 {
-    g_return_val_if_fail (MIDORI_IS_CONSOLE (console), NULL);
-
     if (!MIDORI_CONSOLE (console)->toolbar)
     {
         GtkWidget* toolbar;
index 011837dc5c99ba7a458d1feaba4667e5815a3a5d..b3fa760cf2bce99f8ea2a3bb071b7ea72681609c 100644 (file)
@@ -42,9 +42,6 @@ midori_console_get_type               (void);
 GtkWidget*
 midori_console_new                    (void);
 
-GtkWidget*
-midori_console_get_toolbar            (MidoriViewable*      console);
-
 void
 midori_console_add                    (MidoriConsole*       console,
                                        const gchar*         message,