]> spindle.queued.net Git - midori/commitdiff
Follow up preferences refactoring for Mac OSX build
authorChristian Dywan <christian@twotoasts.de>
Mon, 16 Nov 2009 22:33:32 +0000 (23:33 +0100)
committerChristian Dywan <christian@twotoasts.de>
Mon, 16 Nov 2009 22:33:32 +0000 (23:33 +0100)
katze/katze-preferences.c
midori/midori-preferences.c
midori/midori-websettings.c

index 8dd899b8b9413855c58b1b3e5b6ea88b37c404f9..bc0a54678270e5cca39369a8769b67d183b5fea1 100644 (file)
@@ -174,8 +174,8 @@ katze_preferences_prepare (KatzePreferences* preferences)
     gtk_container_set_border_width (GTK_CONTAINER (priv->notebook), 6);
 
     #if HAVE_OSX
-    gtk_notebook_set_show_tabs (GTK_NOTEBOOK (preferences->notebook), FALSE);
-    gtk_notebook_set_show_border (GTK_NOTEBOOK (preferences->notebook), FALSE);
+    gtk_notebook_set_show_tabs (GTK_NOTEBOOK (priv->notebook), FALSE);
+    gtk_notebook_set_show_border (GTK_NOTEBOOK (priv->notebook), FALSE);
     priv->toolbar = gtk_toolbar_new ();
     gtk_toolbar_set_style (GTK_TOOLBAR (priv->toolbar), GTK_TOOLBAR_BOTH);
     gtk_toolbar_set_show_arrow (GTK_TOOLBAR (priv->toolbar), FALSE);
@@ -200,15 +200,15 @@ katze_preferences_prepare (KatzePreferences* preferences)
 
     #if HAVE_OSX
     GtkWidget* icon;
-    hbox = gtk_hbox_new (FALSE, 0);
-    button = gtk_button_new ();
+    GtkWidget* hbox = gtk_hbox_new (FALSE, 0);
+    GtkWidget* button = gtk_button_new ();
     icon = gtk_image_new_from_stock (GTK_STOCK_HELP, GTK_ICON_SIZE_BUTTON);
     gtk_button_set_image (GTK_BUTTON (button), icon);
     g_signal_connect (button, "clicked",
         G_CALLBACK (katze_preferences_help_clicked_cb), preferences);
     gtk_box_pack_end (GTK_BOX (hbox),
         button, FALSE, FALSE, 4);
-    gtk_box_pack_end (GTK_BOX (GTK_DIALOG (preferences)->vbox),
+    gtk_box_pack_end (GTK_BOX (GTK_DIALOG (preferences)->action_area),
         hbox, FALSE, FALSE, 0);
     #endif
     gtk_widget_show_all (GTK_DIALOG (preferences)->vbox);
@@ -262,12 +262,13 @@ katze_preferences_add_category (KatzePreferences* preferences,
         gtk_radio_tool_button_new_from_widget (
         GTK_RADIO_TOOL_BUTTON (priv->toolbutton))
         : gtk_radio_tool_button_new (NULL));
+    gtk_widget_show (priv->toolbutton);
     gtk_tool_button_set_label (GTK_TOOL_BUTTON (priv->toolbutton), label);
     gtk_tool_button_set_stock_id (GTK_TOOL_BUTTON (priv->toolbutton), icon);
-    gtk_toolbar_insert (GTK_TOOLBAR (toolbar),
+    gtk_toolbar_insert (GTK_TOOLBAR (priv->toolbar),
                         GTK_TOOL_ITEM (priv->toolbutton), -1);
     g_signal_connect (priv->toolbutton, "clicked",
-        G_CALLBACK (katze_preferences_toolbutton_clicked_cb), page);
+        G_CALLBACK (katze_preferences_toolbutton_clicked_cb), priv->page);
     if (priv->toolbutton)
         g_object_set_data (G_OBJECT (priv->toolbutton), "notebook", priv->notebook);
     #endif
index 0596b0fa135176e1dd9d375e477ccabdb56f9216..b8d919e2e4a1002e1f290e8813f1c37e6a433841 100644 (file)
@@ -192,13 +192,6 @@ midori_preferences_notify_auto_detect_proxy_cb (MidoriWebSettings* settings,
 #endif
 
 #if HAVE_OSX
-static void
-midori_preferences_help_clicked_cb (GtkWidget* button,
-                                    GtkDialog* dialog)
-{
-    gtk_dialog_response (dialog, GTK_RESPONSE_HELP);
-}
-
 static void
 midori_preferences_toolbutton_clicked_cb (GtkWidget* toolbutton,
                                           GtkWidget* page)
index 2445eae1ba93ba3e0285db45473547be8d425207..eeefba44598087ec20a3805138f620eef57d78f5 100644 (file)
@@ -1098,7 +1098,7 @@ midori_web_settings_finalize (GObject* object)
     G_OBJECT_CLASS (midori_web_settings_parent_class)->finalize (object);
 }
 
-#if defined (G_OS_UNIX)
+#if defined (G_OS_UNIX) && !HAVE_OSX
 static gchar*
 get_sys_name (void)
 {