1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
SPDX-FileCopyrightText: 2021, 2022 Romain Vigier <contact AT romainvigier.fr>
SPDX-License-Identifier: GPL-3.0-or-later
-->
<interface>
<template class="MetadataDetailsRow" parent="GtkListBoxRow">
<property name="activatable">False</property>
<style>
<class name="metadata"/>
</style>
<property name="child">
<object class="GtkBox">
<child>
<object class="GtkLabel">
<property name="label" bind-source="MetadataDetailsRow" bind-property="key"/>
<property name="valign">start</property>
<property name="xalign">1</property>
<property name="justify">right</property>
<property name="wrap">True</property>
<property name="wrap-mode">word-char</property>
<property name="width-chars">16</property>
<property name="max-width-chars">16</property>
<property name="selectable">True</property>
<style>
<class name="dim-label"/>
</style>
</object>
</child>
<child>
<object class="GtkLabel">
<property name="label" bind-source="MetadataDetailsRow" bind-property="value"/>
<property name="valign">start</property>
<property name="xalign">0</property>
<property name="justify">left</property>
<property name="wrap">True</property>
<property name="wrap-mode">word-char</property>
<property name="selectable">True</property>
</object>
</child>
</object>
</property>
</template>
</interface>
|