Remove browser-count, midori_panel_set_compact, console toolbar
This commit is contained in:
parent
38d75adc28
commit
1b80f16bf4
5 changed files with 5 additions and 59 deletions
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue