gtk2/gtk/ui/gtktooltipwindow.ui
Emmanuele Bassi 0e0b45602a tooltipwindow: Use a builder UI file
It's not a hugely complicated file, but it's easier to deal with some of
the details of tooltip windows styling if we have a UI file to edit,
instead of source code.
2015-11-11 12:27:07 +00:00

42 lines
1.5 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<interface domain="gtk30">
<!-- interface-requires gtk+ 3.10 -->
<template class="GtkTooltipWindow" parent="GtkWindow">
<property name="resizable">0</property>
<property name="type_hint">tooltip</property>
<child>
<object class="GtkBox" id="box">
<property name="orientation">horizontal</property>
<property name="visible">1</property>
<property name="spacing">6</property>
<property name="margin_top">6</property>
<property name="margin_bottom">6</property>
<property name="margin_start">6</property>
<property name="margin_end">6</property>
<child>
<object class="GtkImage" id="image">
<property name="visible">0</property>
<property name="icon_name">image-missing</property>
</object>
<packing>
<property name="fill">0</property>
<property name="position">0</property>
</packing>
</child>
<child>
<object class="GtkLabel" id="label">
<property name="visible">0</property>
<property name="wrap">1</property>
<property name="max_width_chars">70</property>
<property name="label"></property>
</object>
<packing>
<property name="fill">0</property>
<property name="position">1</property>
</packing>
</child>
</object>
</child>
</template>
</interface>