blob: 4400244cede44b844272d9e9745d1848d9ee5ee5 (
plain)
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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<!-- interface-requires gtk+ 3.0 -->
<template class="CcPowerProfileInfoRow" parent="GtkListBoxRow">
<property name="activatable">False</property>
<property name="selectable">False</property>
<child>
<object class="GtkBox">
<property name="orientation">horizontal</property>
<property name="margin-start">4</property>
<property name="margin-end">8</property>
<property name="margin-top">8</property>
<property name="margin-bottom">8</property>
<property name="spacing">4</property>
<child>
<object class="GtkImage" id="icon_image">
<property name="margin-start">6</property>
<property name="margin-end">6</property>
<property name="icon-name">info-symbolic</property>
<property name="icon-size">large</property>
<style>
<class name="dim-label"/>
</style>
</object>
</child>
<child>
<object class="GtkLabel" id="title_label">
<property name="halign">start</property>
<property name="hexpand">True</property>
<property name="vexpand">True</property>
<property name="use-markup">True</property>
<property name="use-underline">True</property>
<property name="xalign">0</property>
<property name="yalign">0.5</property>
<property name="margin-end">6</property>
<property name="wrap">True</property>
</object>
</child>
</object>
</child>
</template>
</interface>
|