inspector: Show object title in menu tab
This commit is contained in:
@ -22,6 +22,8 @@
|
|||||||
|
|
||||||
#include "gtktreestore.h"
|
#include "gtktreestore.h"
|
||||||
#include "gtkwidgetprivate.h"
|
#include "gtkwidgetprivate.h"
|
||||||
|
#include "gtklabel.h"
|
||||||
|
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
@ -35,6 +37,7 @@ enum
|
|||||||
struct _GtkInspectorMenuPrivate
|
struct _GtkInspectorMenuPrivate
|
||||||
{
|
{
|
||||||
GtkTreeStore *model;
|
GtkTreeStore *model;
|
||||||
|
GtkWidget *object_title;
|
||||||
};
|
};
|
||||||
|
|
||||||
G_DEFINE_TYPE_WITH_PRIVATE (GtkInspectorMenu, gtk_inspector_menu, GTK_TYPE_BOX)
|
G_DEFINE_TYPE_WITH_PRIVATE (GtkInspectorMenu, gtk_inspector_menu, GTK_TYPE_BOX)
|
||||||
@ -130,6 +133,13 @@ gtk_inspector_menu_set_object (GtkInspectorMenu *sl,
|
|||||||
|
|
||||||
if (G_IS_MENU_MODEL (object))
|
if (G_IS_MENU_MODEL (object))
|
||||||
add_menu (sl, G_MENU_MODEL (object), NULL);
|
add_menu (sl, G_MENU_MODEL (object), NULL);
|
||||||
|
|
||||||
|
if (G_IS_OBJECT (object))
|
||||||
|
{
|
||||||
|
const gchar *title;
|
||||||
|
title = (const gchar *)g_object_get_data (object, "gtk-inspector-object-title");
|
||||||
|
gtk_label_set_label (GTK_LABEL (sl->priv->object_title), title);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@ -139,6 +149,7 @@ gtk_inspector_menu_class_init (GtkInspectorMenuClass *klass)
|
|||||||
|
|
||||||
gtk_widget_class_set_template_from_resource (widget_class, "/org/gtk/inspector/menu.ui");
|
gtk_widget_class_set_template_from_resource (widget_class, "/org/gtk/inspector/menu.ui");
|
||||||
gtk_widget_class_bind_template_child_private (widget_class, GtkInspectorMenu, model);
|
gtk_widget_class_bind_template_child_private (widget_class, GtkInspectorMenu, model);
|
||||||
|
gtk_widget_class_bind_template_child_private (widget_class, GtkInspectorMenu, object_title);
|
||||||
}
|
}
|
||||||
|
|
||||||
// vim: set et sw=2 ts=2:
|
// vim: set et sw=2 ts=2:
|
||||||
|
|||||||
@ -11,13 +11,21 @@
|
|||||||
</object>
|
</object>
|
||||||
<template class="GtkInspectorMenu" parent="GtkBox">
|
<template class="GtkInspectorMenu" parent="GtkBox">
|
||||||
<property name="orientation">vertical</property>
|
<property name="orientation">vertical</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkLabel" id="object_title">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="halign">fill</property>
|
||||||
|
<property name="valign">center</property>
|
||||||
|
<property name="margin-top">12</property>
|
||||||
|
<property name="margin-bottom">12</property>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
<child>
|
<child>
|
||||||
<object class="GtkScrolledWindow">
|
<object class="GtkScrolledWindow">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="expand">True</property>
|
<property name="expand">True</property>
|
||||||
<property name="hscrollbar-policy">automatic</property>
|
<property name="hscrollbar-policy">automatic</property>
|
||||||
<property name="vscrollbar-policy">always</property>
|
<property name="vscrollbar-policy">always</property>
|
||||||
<property name="shadow-type">in</property>
|
|
||||||
<child>
|
<child>
|
||||||
<object class= "GtkTreeView">
|
<object class= "GtkTreeView">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
|
|||||||
Reference in New Issue
Block a user