forked from AuroraMiddleware/gtk
883d5d8584
The position child property is problematic, since it requires us to emit notification for all children when inserting a child early in the list of children. Remove the property from all ui files.
29 lines
981 B
XML
29 lines
981 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<interface domain="gtk40">
|
|
<!-- 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="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="icon-name">image-missing</property>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkLabel" id="label">
|
|
<property name="wrap">1</property>
|
|
<property name="max-width-chars">70</property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</template>
|
|
</interface>
|