48 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <interface domain="gtk30">
 | |
|   <!-- interface-requires gtk+ 3.10 -->
 | |
|   <template class="GtkFontChooserDialog" parent="GtkDialog">
 | |
|     <property name="border-width">5</property>
 | |
|     <property name="title" translatable="yes">Select Font</property>
 | |
|     <property name="type-hint">dialog</property>
 | |
|     <child internal-child="vbox">
 | |
|       <object class="GtkBox" id="dialog-vbox1">
 | |
|         <property name="orientation">vertical</property>
 | |
|         <property name="spacing">2</property>
 | |
|         <child>
 | |
|           <object class="GtkFontChooserWidget" id="fontchooser">
 | |
|             <property name="visible">1</property>
 | |
|             <property name="border-width">5</property>
 | |
|             <property name="orientation">vertical</property>
 | |
|             <property name="spacing">6</property>
 | |
|             <signal name="font-activated" handler="font_activated_cb" swapped="no"/>
 | |
|           </object>
 | |
|           <packing>
 | |
|             <property name="expand">1</property>
 | |
|             <property name="position">1</property>
 | |
|           </packing>
 | |
|         </child>
 | |
|       </object>
 | |
|     </child>
 | |
|     <child type="action">
 | |
|       <object class="GtkButton" id="cancel_button">
 | |
|         <property name="visible">1</property>
 | |
|         <property name="use-underline">1</property>
 | |
|         <property name="label" translatable="yes">_Cancel</property>
 | |
|       </object>
 | |
|     </child>
 | |
|     <child type="action">
 | |
|       <object class="GtkButton" id="select_button">
 | |
|         <property name="visible">1</property>
 | |
|         <property name="label" translatable="yes">_Select</property>
 | |
|         <property name="use-underline">1</property>
 | |
|         <property name="can-default">1</property>
 | |
|       </object>
 | |
|     </child>
 | |
|     <action-widgets>
 | |
|       <action-widget response="cancel">cancel_button</action-widget>
 | |
|       <action-widget response="ok" default="true">select_button</action-widget>
 | |
|     </action-widgets>
 | |
|   </template>
 | |
| </interface>
 | 
