diff options
Diffstat (limited to 'parts/abbrev/abbrevconfigwidgetbase.ui')
-rw-r--r-- | parts/abbrev/abbrevconfigwidgetbase.ui | 190 |
1 files changed, 190 insertions, 0 deletions
diff --git a/parts/abbrev/abbrevconfigwidgetbase.ui b/parts/abbrev/abbrevconfigwidgetbase.ui new file mode 100644 index 00000000..fd432a3e --- /dev/null +++ b/parts/abbrev/abbrevconfigwidgetbase.ui @@ -0,0 +1,190 @@ +<!DOCTYPE UI><UI version="3.3" stdsetdef="1"> +<class>AbbrevConfigWidgetBase</class> +<widget class="QWidget"> + <property name="name"> + <cstring>abbrev_config_widget</cstring> + </property> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>474</width> + <height>410</height> + </rect> + </property> + <property name="caption"> + <string>Code Templates</string> + </property> + <grid> + <property name="name"> + <cstring>unnamed</cstring> + </property> + <widget class="QLabel" row="2" column="0"> + <property name="name"> + <cstring>TextLabel2</cstring> + </property> + <property name="text"> + <string>Co&de:</string> + </property> + <property name="buddy" stdset="0"> + <cstring>editCode</cstring> + </property> + </widget> + <widget class="QMultiLineEdit" row="3" column="0"> + <property name="name"> + <cstring>editCode</cstring> + </property> + </widget> + <widget class="QCheckBox" row="0" column="0"> + <property name="name"> + <cstring>checkWordCompletion</cstring> + </property> + <property name="text"> + <string>&Enable automatic word completion</string> + </property> + </widget> + <widget class="QLayoutWidget" row="1" column="0"> + <property name="name"> + <cstring>layout2</cstring> + </property> + <grid> + <property name="name"> + <cstring>unnamed</cstring> + </property> + <widget class="QPushButton" row="2" column="1"> + <property name="name"> + <cstring>buttonRemoveTemplate</cstring> + </property> + <property name="text"> + <string>&Remove</string> + </property> + </widget> + <widget class="QListView" row="1" column="0" rowspan="3" colspan="1"> + <column> + <property name="text"> + <string>Template</string> + </property> + <property name="clickable"> + <bool>true</bool> + </property> + <property name="resizable"> + <bool>true</bool> + </property> + </column> + <column> + <property name="text"> + <string>Description</string> + </property> + <property name="clickable"> + <bool>true</bool> + </property> + <property name="resizable"> + <bool>true</bool> + </property> + </column> + <column> + <property name="text"> + <string>Suffixes</string> + </property> + <property name="clickable"> + <bool>true</bool> + </property> + <property name="resizable"> + <bool>true</bool> + </property> + </column> + <property name="name"> + <cstring>listTemplates</cstring> + </property> + <property name="allColumnsShowFocus"> + <bool>true</bool> + </property> + <property name="resizeMode"> + <enum>AllColumns</enum> + </property> + </widget> + <widget class="QPushButton" row="1" column="1"> + <property name="name"> + <cstring>buttonAddTemplate</cstring> + </property> + <property name="text"> + <string>&Add...</string> + </property> + </widget> + <widget class="QLabel" row="0" column="0" rowspan="1" colspan="2"> + <property name="name"> + <cstring>TextLabel1</cstring> + </property> + <property name="text"> + <string>&Templates:</string> + </property> + <property name="buddy" stdset="0"> + <cstring>listTemplates</cstring> + </property> + </widget> + <spacer row="3" column="1"> + <property name="name"> + <cstring>Spacer1</cstring> + </property> + <property name="orientation"> + <enum>Vertical</enum> + </property> + <property name="sizeType"> + <enum>Expanding</enum> + </property> + <property name="sizeHint"> + <size> + <width>20</width> + <height>30</height> + </size> + </property> + </spacer> + </grid> + </widget> + </grid> +</widget> +<connections> + <connection> + <sender>buttonAddTemplate</sender> + <signal>clicked()</signal> + <receiver>abbrev_config_widget</receiver> + <slot>addTemplate()</slot> + </connection> + <connection> + <sender>buttonRemoveTemplate</sender> + <signal>clicked()</signal> + <receiver>abbrev_config_widget</receiver> + <slot>removeTemplate()</slot> + </connection> + <connection> + <sender>editCode</sender> + <signal>textChanged()</signal> + <receiver>abbrev_config_widget</receiver> + <slot>codeChanged()</slot> + </connection> + <connection> + <sender>listTemplates</sender> + <signal>selectionChanged()</signal> + <receiver>abbrev_config_widget</receiver> + <slot>selectionChanged()</slot> + </connection> +</connections> +<tabstops> + <tabstop>checkWordCompletion</tabstop> + <tabstop>listTemplates</tabstop> + <tabstop>buttonAddTemplate</tabstop> + <tabstop>buttonRemoveTemplate</tabstop> + <tabstop>editCode</tabstop> +</tabstops> +<includes> + <include location="global" impldecl="in implementation">kdialog.h</include> +</includes> +<slots> + <slot access="protected">addTemplate()</slot> + <slot access="protected">codeChanged()</slot> + <slot access="protected">removeTemplate()</slot> + <slot access="protected">selectionChanged()</slot> +</slots> +<layoutdefaults spacing="6" margin="11"/> +<layoutfunctions spacing="KDialog::spacingHint" margin="KDialog::marginHint"/> +</UI> |