Remove browser-count, midori_panel_set_compact, console toolbar

This commit is contained in:
Christian Dywan 2010-09-07 22:24:11 +02:00
parent 38d75adc28
commit 1b80f16bf4
5 changed files with 5 additions and 59 deletions

View file

@ -96,8 +96,7 @@ enum
PROP_HISTORY, PROP_HISTORY,
PROP_EXTENSIONS, PROP_EXTENSIONS,
PROP_BROWSERS, PROP_BROWSERS,
PROP_BROWSER, PROP_BROWSER
PROP_BROWSER_COUNT
}; };
enum { enum {
@ -394,22 +393,6 @@ midori_app_class_init (MidoriAppClass* class)
"The current browser", "The current browser",
MIDORI_TYPE_BROWSER, MIDORI_TYPE_BROWSER,
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS)); 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 static void
@ -858,9 +841,6 @@ midori_app_get_property (GObject* object,
case PROP_BROWSER: case PROP_BROWSER:
g_value_set_object (value, app->browser); g_value_set_object (value, app->browser);
break; break;
case PROP_BROWSER_COUNT:
g_value_set_uint (value, katze_array_get_length (app->browsers));
break;
default: default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break; break;

View file

@ -570,23 +570,6 @@ midori_panel_new (void)
return GTK_WIDGET (panel); 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: * midori_panel_set_right_aligned:
* @right_aligned: %TRUE if the panel should be aligned to the right * @right_aligned: %TRUE if the panel should be aligned to the right

View file

@ -42,10 +42,6 @@ midori_panel_get_type (void) G_GNUC_CONST;
GtkWidget* GtkWidget*
midori_panel_new (void); midori_panel_new (void);
void
midori_panel_set_compact (MidoriPanel* panel,
gboolean compact);
void void
midori_panel_set_right_aligned (MidoriPanel* panel, midori_panel_set_right_aligned (MidoriPanel* panel,
gboolean right_aligned); gboolean right_aligned);

View file

@ -59,6 +59,9 @@ midori_console_get_property (GObject* object,
GValue* value, GValue* value,
GParamSpec* pspec); GParamSpec* pspec);
static GtkWidget*
midori_console_get_toolbar (MidoriViewable* console);
static void static void
midori_console_class_init (MidoriConsoleClass* class) midori_console_class_init (MidoriConsoleClass* class)
{ {
@ -327,22 +330,9 @@ midori_console_new (void)
return GTK_WIDGET (console); return GTK_WIDGET (console);
} }
/** static GtkWidget*
* 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*
midori_console_get_toolbar (MidoriViewable* console) midori_console_get_toolbar (MidoriViewable* console)
{ {
g_return_val_if_fail (MIDORI_IS_CONSOLE (console), NULL);
if (!MIDORI_CONSOLE (console)->toolbar) if (!MIDORI_CONSOLE (console)->toolbar)
{ {
GtkWidget* toolbar; GtkWidget* toolbar;

View file

@ -42,9 +42,6 @@ midori_console_get_type (void);
GtkWidget* GtkWidget*
midori_console_new (void); midori_console_new (void);
GtkWidget*
midori_console_get_toolbar (MidoriViewable* console);
void void
midori_console_add (MidoriConsole* console, midori_console_add (MidoriConsole* console,
const gchar* message, const gchar* message,