<!DOCTYPE UI><UI version="3.0" stdsetdef="1">
<class>AddFoundFilesForm</class>
<widget class="QDialog">
<property name="name">
<cstring>AddFoundFilesForm</cstring>
</property>
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>600</width>
<height>480</height>
</rect>
</property>
<property name="caption">
<string>Add found files to project</string>
</property>
<property name="toolTip" stdset="0">
<string>Adds the found files to the current project.</string>
</property>
<vbox>
<property name="name">
<cstring>unnamed</cstring>
</property>
<property name="margin">
<number>11</number>
</property>
<property name="spacing">
<number>6</number>
</property>
<widget class="QListBox">
<property name="name">
<cstring>fileListBox</cstring>
</property>
<property name="selectionMode">
<enum>Extended</enum>
</property>
<property name="toolTip" stdset="0">
<string>List of found files.</string>
</property>
</widget>
<widget class="QLayoutWidget">
<property name="name">
<cstring>Layout12</cstring>
</property>
<hbox>
<property name="name">
<cstring>unnamed</cstring>
</property>
<property name="margin">
<number>0</number>
</property>
<property name="spacing">
<number>6</number>
</property>
<spacer>
<property name="name">
<cstring>Spacer9</cstring>
</property>
<property name="orientation">
<enum>Horizontal</enum>
</property>
<property name="sizeType">
<enum>Expanding</enum>
</property>
<property name="sizeHint">
<size>
<width>30</width>
<height>0</height>
</size>
</property>
</spacer>
<widget class="QPushButton">
<property name="name">
<cstring>addAllButton</cstring>
</property>
<property name="text">
<string>Add &All</string>
</property>
<property name="default">
<bool>true</bool>
</property>
<property name="toolTip" stdset="0">
<string>Add all files.</string>
</property>
</widget>
<widget class="QPushButton">
<property name="name">
<cstring>addSelectedButton</cstring>
</property>
<property name="text">
<string>Add &Selected</string>
</property>
<property name="toolTip" stdset="0">
<string>Add selected files only.</string>
</property>
</widget>
<widget class="QPushButton">
<property name="name">
<cstring>CancelButton</cstring>
</property>
<property name="text">
<string>&Cancel</string>
</property>
<property name="toolTip" stdset="0">
<string>Cancel the dialog.</string>
</property>
</widget>
<spacer>
<property name="name">
<cstring>Spacer10</cstring>
</property>
<property name="orientation">
<enum>Horizontal</enum>
</property>
<property name="sizeType">
<enum>Expanding</enum>
</property>
<property name="sizeHint">
<size>
<width>30</width>
<height>0</height>
</size>
</property>
</spacer>
</hbox>
</widget>
</vbox>
</widget>
<connections>
<connection>
<sender>CancelButton</sender>
<signal>clicked()</signal>
<receiver>AddFoundFilesForm</receiver>
<slot>reject()</slot>
</connection>
<connection>
<sender>addAllButton</sender>
<signal>clicked()</signal>
<receiver>AddFoundFilesForm</receiver>
<slot>handleAll()</slot>
</connection>
<connection>
<sender>addSelectedButton</sender>
<signal>clicked()</signal>
<receiver>AddFoundFilesForm</receiver>
<slot>handleSelected()</slot>
</connection>
</connections>
<slots>
<slot>handleAll()</slot>
<slot>handleSelected()</slot>
</slots>
<layoutdefaults spacing="6" margin="11"/>
</UI>
|