diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | e9ae80694875f869892f13f4fcaf1170a00dea41 (patch) | |
tree | aa2f8d8a217e2d376224c8d46b7397b68d35de2d /kommander/examples/old/populate.kmdr | |
download | tdewebdev-e9ae80694875f869892f13f4fcaf1170a00dea41.tar.gz tdewebdev-e9ae80694875f869892f13f4fcaf1170a00dea41.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kommander/examples/old/populate.kmdr')
-rw-r--r-- | kommander/examples/old/populate.kmdr | 111 |
1 files changed, 111 insertions, 0 deletions
diff --git a/kommander/examples/old/populate.kmdr b/kommander/examples/old/populate.kmdr new file mode 100644 index 00000000..a5c5090d --- /dev/null +++ b/kommander/examples/old/populate.kmdr @@ -0,0 +1,111 @@ +<!DOCTYPE UI><UI version="3.0" stdsetdef="1"> +<class>Populate_Dialog</class> +<widget class="Dialog"> + <property name="name"> + <cstring>Populate_Dialog</cstring> + </property> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>600</width> + <height>484</height> + </rect> + </property> + <property name="caption"> + <string>Population Dialog</string> + </property> + <hbox> + <property name="name"> + <cstring>unnamed</cstring> + </property> + <property name="margin"> + <number>11</number> + </property> + <property name="spacing"> + <number>6</number> + </property> + <widget class="QLayoutWidget"> + <property name="name"> + <cstring>Layout2</cstring> + </property> + <vbox> + <property name="name"> + <cstring>unnamed</cstring> + </property> + <property name="margin"> + <number>0</number> + </property> + <property name="spacing"> + <number>6</number> + </property> + <widget class="QLayoutWidget"> + <property name="name"> + <cstring>Layout1</cstring> + </property> + <hbox> + <property name="name"> + <cstring>unnamed</cstring> + </property> + <property name="margin"> + <number>0</number> + </property> + <property name="spacing"> + <number>6</number> + </property> + <widget class="LineEdit"> + <property name="name"> + <cstring>dirLineEdit</cstring> + </property> + <property name="text"> + <string>~/</string> + </property> + <property name="associations" stdset="0"> + <stringlist> + <string>@widgetText</string> + </stringlist> + </property> + </widget> + <widget class="ExecButton"> + <property name="name"> + <cstring>populateButton</cstring> + </property> + <property name="text"> + <string>Update List</string> + </property> + </widget> + </hbox> + </widget> + <widget class="ListBox"> + <property name="name"> + <cstring>resultList</cstring> + </property> + <property name="populationText"> + <string>@exec("ls -1 @dirLineEdit")</string> + </property> + <property name="associations" stdset="0"> + <stringlist> + <string>@widgetText</string> + </stringlist> + </property> + </widget> + </vbox> + </widget> + </hbox> +</widget> +<connections> + <connection> + <sender>populateButton</sender> + <signal>clicked()</signal> + <receiver>resultList</receiver> + <slot>populate()</slot> + </connection> + <connection> + <sender>dirLineEdit</sender> + <signal>widgetOpened()</signal> + <receiver>resultList</receiver> + <slot>populate()</slot> + </connection> +</connections> +<layoutdefaults spacing="6" margin="11"/> +</UI> |