diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2021-02-01 15:42:54 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2021-02-10 14:15:04 +0100 |
commit | e71350e037dcd49f24c939395ab6436051382c83 (patch) | |
tree | dc31b95e659eff53cc9e7013a1d9000e4a513bfb /svx/uiconfig | |
parent | 26ee85d5ecf97745cc6e0a773eac654e2d573040 (diff) |
devtools: add values for properties in object inspector tree view
Change-Id: Ia53ea2cbc9797cd787d1ea3d841f947a515055e1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110251
Tested-by: Tomaž Vajngerl <quikee@gmail.com>
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'svx/uiconfig')
-rw-r--r-- | svx/uiconfig/ui/developmenttool.ui | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/svx/uiconfig/ui/developmenttool.ui b/svx/uiconfig/ui/developmenttool.ui index 8310d0fffae8..e3f3bc78e9e8 100644 --- a/svx/uiconfig/ui/developmenttool.ui +++ b/svx/uiconfig/ui/developmenttool.ui @@ -2,7 +2,7 @@ <!-- Generated with glade 3.38.2 --> <interface domain="svx"> <requires lib="gtk+" version="3.20"/> - <object class="GtkTreeStore" id="liststore"> + <object class="GtkTreeStore" id="liststore1"> <columns> <!-- column-name text --> <column type="gchararray"/> @@ -10,10 +10,12 @@ <column type="gchararray"/> </columns> </object> - <object class="GtkTreeStore" id="liststore1"> + <object class="GtkTreeStore" id="object_inspector_liststore"> <columns> <!-- column-name text --> <column type="gchararray"/> + <!-- column-name value --> + <column type="gchararray"/> <!-- column-name id --> <column type="gchararray"/> </columns> @@ -156,7 +158,7 @@ <property name="receives-default">True</property> <property name="hexpand">True</property> <property name="vexpand">True</property> - <property name="model">liststore</property> + <property name="model">object_inspector_liststore</property> <property name="search-column">0</property> <property name="enable-tree-lines">True</property> <child internal-child="selection"> @@ -165,9 +167,9 @@ <child> <object class="GtkTreeViewColumn" id="treeviewcolumn1"> <property name="resizable">True</property> - <property name="title" translatable="yes" context="developmenttool|class">Class</property> + <property name="title" translatable="yes" context="developmenttool|object">Object</property> <child> - <object class="GtkCellRendererText" id="cellrenderertext1"> + <object class="GtkCellRendererText" id="obj_insp_cellrenderertext1"> <property name="ellipsize">end</property> </object> <attributes> @@ -177,6 +179,18 @@ </child> </object> </child> + <child> + <object class="GtkTreeViewColumn" id="treeviewcolumn2"> + <property name="resizable">True</property> + <property name="title" translatable="yes" context="developmenttool|value">Value</property> + <child> + <object class="GtkCellRendererText" id="obj_insp_cellrenderertext2"/> + <attributes> + <attribute name="text">1</attribute> + </attributes> + </child> + </object> + </child> </object> </child> </object> |