diff options
author | Lubos Dolezel <lubos@dolezel.info> | 2015-06-03 14:08:31 +0200 |
---|---|---|
committer | Lubos Dolezel <lubos@dolezel.info> | 2015-06-03 14:08:48 +0200 |
commit | 23a1824e08ea34e660ab6a18d386bacd69a8f770 (patch) | |
tree | 4f5b58788c1b07e807f23bd2b902c5be065a663c | |
parent | 95f098703e5df6f2dd6a2f6be25d7c917815be75 (diff) | |
download | twinkle-23a1824e08ea34e660ab6a18d386bacd69a8f770.tar twinkle-23a1824e08ea34e660ab6a18d386bacd69a8f770.tar.gz twinkle-23a1824e08ea34e660ab6a18d386bacd69a8f770.tar.lz twinkle-23a1824e08ea34e660ab6a18d386bacd69a8f770.tar.xz twinkle-23a1824e08ea34e660ab6a18d386bacd69a8f770.zip |
selectprofileform ported to Qt4
-rw-r--r-- | TODO | 1 | ||||
-rw-r--r-- | src/gui/selectprofileform.cpp | 97 | ||||
-rw-r--r-- | src/gui/selectprofileform.h | 4 | ||||
-rw-r--r-- | src/gui/selectprofileform.ui | 734 |
4 files changed, 468 insertions, 368 deletions
@@ -7,7 +7,6 @@ Remaining .ui/cpp/h files: * mphoneform - * selectprofileform * selectuserform * syssettingsform * userprofileform diff --git a/src/gui/selectprofileform.cpp b/src/gui/selectprofileform.cpp index 06465d6..6c39d71 100644 --- a/src/gui/selectprofileform.cpp +++ b/src/gui/selectprofileform.cpp @@ -29,7 +29,7 @@ #include "audits/memman.h" #include "wizardform.h" #include "syssettingsform.h" -#include <Q3ListView> +#include <QListWidgetItem> #include "service.h" #include "presence/buddy.h" #include "diamondcardprofileform.h" @@ -140,7 +140,7 @@ int SelectProfileForm::execForm() return QDialog::Rejected; } - if (profileListView->childCount() == 0) { + if (profileListView->count() == 0) { // No profile has been created. return QDialog::Rejected; } @@ -193,25 +193,26 @@ void SelectProfileForm::showForm(Q3MainWindow *_mainWindow) // Initialize profile list view fillProfileListView(profiles); - Q3ListViewItemIterator j(profileListView); - while (j.current()) { - Q3CheckListItem *item = (Q3CheckListItem *)j.current(); - QString profile = item->text(); + + for (int i = 0; i < profileListView->count(); i++) + { + QListWidgetItem* item = profileListView->item(i); + QString profile = item->text(); // Set pixmap of default profile list<string> l = sys_config->get_start_user_profiles(); if (std::find(l.begin(), l.end(), profile.ascii()) != l.end()) { - item->setPixmap(0, QPixmap(":/icons/images/twinkle16.png")); + item->setData(Qt::DecorationRole, QPixmap(":/icons/images/twinkle16.png")); defaultSet = true; } // Tick check box of active profile + item->setFlags(item->flags() | Qt::ItemIsUserCheckable); + if (phone->ref_user_profile(profile.ascii())) { - item->setOn(true); + item->setCheckState(Qt::Checked); } - - j++; } sysPushButton->hide(); @@ -223,13 +224,13 @@ void SelectProfileForm::showForm(Q3MainWindow *_mainWindow) void SelectProfileForm::runProfile() { selectedProfiles.clear(); - Q3ListViewItemIterator i(profileListView, Q3ListViewItemIterator::Checked); - while (i.current()) { - Q3CheckListItem *item = (Q3CheckListItem *)i.current(); - QString profile =item->text(); + + for (int i = 0; i < profileListView->count(); i++) + { + QListWidgetItem* item = profileListView->item(i); + QString profile = item->text(); profile.append(USER_FILE_EXT); selectedProfiles.push_back(profile.ascii()); - i++; } if (selectedProfiles.empty()) { @@ -343,16 +344,17 @@ void SelectProfileForm::newProfileCreated() { // New profile created // Add the new profile to the profile list box - Q3CheckListItem *item = new Q3CheckListItem(profileListView, - user_config->get_profile_name().c_str(), - Q3CheckListItem::CheckBox); - item->setPixmap(0, QPixmap(":/icons/images/penguin-small.png")); + QListWidgetItem* item = new QListWidgetItem(QPixmap(":/icons/images/penguin-small.png"), + QString::fromStdString(user_config->get_profile_name()), + profileListView); + + item->setFlags(item->flags() | Qt::ItemIsUserCheckable); // Make the new profile the selected profile // Do not change this without changing the exec method. // When there are no profiles, the exec methods relies on the // fact that afer creation of the profile it is selected. - profileListView->setSelected(item, true); + profileListView->setCurrentItem(item); // Enable buttons that act on a profile editPushButton->setEnabled(true); @@ -418,7 +420,7 @@ void SelectProfileForm::deleteProfile() Q3CheckListItem *item = (Q3CheckListItem *)profileListView-> currentItem(); delete item; - if (profileListView->childCount() == 0) { + if (profileListView->count() == 0) { // There are no profiles anymore // Disable buttons that act on a profile editPushButton->setEnabled(false); @@ -427,8 +429,7 @@ void SelectProfileForm::deleteProfile() defaultPushButton->setEnabled(false); runPushButton->setEnabled(false); } else { - profileListView->setSelected(profileListView-> - firstChild(), true); + profileListView->setCurrentItem(profileListView->item(0)); } } } @@ -541,22 +542,23 @@ void SelectProfileForm::setAsDefault() defaultSet = true; // Restore all pixmaps - Q3ListViewItemIterator i(profileListView); - while (i.current()) { - i.current()->setPixmap(0, QPixmap(":/icons/images/penguin-small.png")); - i++; - } - - // Set pixmap of the default profiles. - // Set default profiles in system settings. - list<string> l; - Q3ListViewItemIterator j(profileListView, Q3ListViewItemIterator::Checked); - while (j.current()) { - Q3CheckListItem *item = (Q3CheckListItem *)j.current(); - item->setPixmap(0, QPixmap(":/icons/images/twinkle16.png")); - l.push_back(item->text().ascii()); - j++; + // Set pixmap of the default profiles. + // Set default profiles in system settings. + list<string> l; + for (int i = 0; i < profileListView->count(); i++) { + QListWidgetItem* item = profileListView->item(i); + + if (item->checkState() == Qt::Checked) + { + item->setData(Qt::DecorationRole, QPixmap(":/icons/images/twinkle16.png")); + l.push_back(item->text().ascii()); + } + else + { + item->setData(Qt::DecorationRole, QPixmap(":/icons/images/penguin-small.png")); + } } + sys_config->set_start_user_profiles(l); // Write default to system settings @@ -666,18 +668,23 @@ void SelectProfileForm::fillProfileListView(const QStringList &profiles) // Strip off the user file extension QString profile = *i; profile.truncate(profile.length() - strlen(USER_FILE_EXT)); - Q3CheckListItem *item = new Q3CheckListItem( - profileListView, profile, Q3CheckListItem::CheckBox); - item->setPixmap(0, QPixmap(":/icons/images/penguin-small.png")); + + QListWidgetItem* item = new QListWidgetItem(QPixmap(":/icons/images/penguin-small.png"), profile, profileListView); + item->setFlags(item->flags() | Qt::ItemIsUserCheckable); + item->setCheckState(Qt::Unchecked); } // Highlight the first profile - profileListView->setSelected(profileListView->firstChild(), true); + profileListView->setCurrentItem(profileListView->item(0)); } -void SelectProfileForm::toggleItem(Q3ListViewItem *item) +void SelectProfileForm::toggleItem(QModelIndex index) { - Q3CheckListItem *checkItem = (Q3CheckListItem *)item; - checkItem->setOn(!checkItem->isOn()); + QListWidgetItem* item = profileListView->item(index.row()); + Qt::CheckState state = item->checkState(); + if (state == Qt::Checked) + item->setCheckState(Qt::Unchecked); + else + item->setCheckState(Qt::Checked); } diff --git a/src/gui/selectprofileform.h b/src/gui/selectprofileform.h index 81c2be5..7c9b0a5 100644 --- a/src/gui/selectprofileform.h +++ b/src/gui/selectprofileform.h @@ -6,7 +6,7 @@ extern t_phone *phone; #include <list> #include <string> #include "phone.h" -#include <Qt3Support/Q3MainWindow> +#include <QDialog> #include "ui_selectprofileform.h" class SelectProfileForm : public QDialog, public Ui::SelectProfileForm @@ -38,7 +38,7 @@ public slots: virtual void diamondcardProfile( bool exec_mode ); virtual void sysSettings(); virtual void fillProfileListView( const QStringList & profiles ); - virtual void toggleItem( Q3ListViewItem * item ); + virtual void toggleItem( QModelIndex item ); signals: void selection(const list<string> &); diff --git a/src/gui/selectprofileform.ui b/src/gui/selectprofileform.ui index 1b3df44..6510d04 100644 --- a/src/gui/selectprofileform.ui +++ b/src/gui/selectprofileform.ui @@ -1,330 +1,424 @@ <?xml version="1.0" encoding="UTF-8"?> -<ui version="4.0" stdsetdef="1"> - <author></author> - <comment></comment> - <exportmacro></exportmacro> - <class>SelectProfileForm</class> - <widget class="QDialog" name="SelectProfileForm"> - <property name="geometry"> - <rect> - <x>0</x> - <y>0</y> - <width>501</width> - <height>513</height> - </rect> - </property> - <property name="windowTitle"> - <string>Twinkle - Select user profile</string> - </property> - <layout class="QGridLayout"> - <item row="0" column="0"> - <widget class="QLabel" name="selectTextLabel"> - <property name="sizePolicy"> - <sizepolicy> - <hsizetype>5</hsizetype> - <vsizetype>0</vsizetype> - <horstretch>0</horstretch> - <verstretch>0</verstretch> - </sizepolicy> +<ui version="4.0"> + <class>SelectProfileForm</class> + <widget class="QDialog" name="SelectProfileForm"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>499</width> + <height>511</height> + </rect> + </property> + <property name="windowTitle"> + <string>Twinkle - Select user profile</string> + </property> + <layout class="QGridLayout"> + <item row="0" column="0"> + <widget class="QLabel" name="selectTextLabel"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="text"> + <string>Select user profile(s) to run:</string> + </property> + <property name="alignment"> + <set>Qt::AlignVCenter</set> + </property> + <property name="wordWrap"> + <bool>true</bool> + </property> + </widget> + </item> + <item row="0" column="1" rowspan="2"> + <layout class="QVBoxLayout"> + <item> + <spacer name="spacer17"> + <property name="orientation"> + <enum>Qt::Vertical</enum> + </property> + <property name="sizeType"> + <enum>QSizePolicy::Expanding</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>20</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + <item> + <widget class="QGroupBox" name="newProfileGroupBox"> + <property name="title"> + <string>Create profile</string> + </property> + <layout class="QVBoxLayout"> + <item> + <widget class="QPushButton" name="newPushButton"> + <property name="whatsThis"> + <string>Create a new profile with the profile editor.</string> </property> <property name="text"> - <string>Select user profile(s) to run:</string> + <string>Ed&itor</string> </property> - <property name="alignment"> - <set>Qt::AlignVCenter</set> + <property name="shortcut"> + <string>Alt+I</string> </property> - <property name="wordWrap"> - <bool>true</bool> + </widget> + </item> + <item> + <widget class="QPushButton" name="wizardPushButton"> + <property name="whatsThis"> + <string>Create a new profile with the wizard.</string> </property> - </widget> - </item> - <item row="1" column="0"> - <widget class="Q3ListView" name="profileListView"> - <property name="resizeMode"> - <enum>Q3ListView::LastColumn</enum> + <property name="text"> + <string>&Wizard</string> + </property> + <property name="shortcut"> + <string>Alt+W</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="diamondcardPushButton"> + <property name="whatsThis"> + <string>Create a profile for a Diamondcard account. With a Diamondcard account you can make worldwide calls to regular and cell phones and send SMS messages.</string> + </property> + <property name="text"> + <string>Dia&mondcard</string> + </property> + <property name="shortcut"> + <string>Alt+M</string> + </property> + </widget> + </item> + </layout> + </widget> + </item> + <item> + <widget class="QGroupBox" name="modifyProfileGroupBox"> + <property name="title"> + <string>Modify profile</string> + </property> + <layout class="QVBoxLayout"> + <item> + <widget class="QPushButton" name="editPushButton"> + <property name="whatsThis"> + <string>Edit the highlighted profile.</string> + </property> + <property name="text"> + <string>&Edit</string> + </property> + <property name="shortcut"> + <string>Alt+E</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="deletePushButton"> + <property name="whatsThis"> + <string>Delete the highlighted profile.</string> + </property> + <property name="text"> + <string>&Delete</string> + </property> + <property name="shortcut"> + <string>Alt+D</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="renamePushButton"> + <property name="whatsThis"> + <string>Rename the highlighted profile.</string> + </property> + <property name="text"> + <string>Ren&ame</string> + </property> + <property name="shortcut"> + <string>Alt+A</string> + </property> + </widget> + </item> + </layout> + </widget> + </item> + <item> + <widget class="QGroupBox" name="startupProfileGroupBox"> + <property name="title"> + <string>Startup profile</string> + </property> + <layout class="QVBoxLayout"> + <item> + <widget class="QPushButton" name="defaultPushButton"> + <property name="whatsThis"> + <string>Make the selected profiles the default profiles. The next time you start Twinkle, these profiles will be automatically run.</string> + </property> + <property name="text"> + <string>&Set as default</string> + </property> + <property name="shortcut"> + <string>Alt+S</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="runPushButton"> + <property name="whatsThis"> + <string>Run Twinkle with the selected profiles.</string> + </property> + <property name="text"> + <string>&Run</string> + </property> + <property name="shortcut"> + <string>Alt+R</string> </property> - <property name="whatsThis" stdset="0"> - <string>Tick the check boxes of the user profiles that you want to run and press run.</string> + <property name="default"> + <bool>true</bool> </property> - <column> - <property name="text"> - <string>User profile</string> - </property> - <property name="clickable"> - <bool>true</bool> - </property> - <property name="resizable"> - <bool>true</bool> - </property> - </column> - </widget> - </item> - <item row="0" column="1" rowspan="2" colspan="1"> - <layout class="QVBoxLayout"> - <item> - <spacer name="spacer17"> - <property name="sizeHint"> - <size> - <width>20</width> - <height>20</height> - </size> - </property> - <property name="sizeType"> - <enum>QSizePolicy::Expanding</enum> - </property> - <property name="orientation"> - <enum>Qt::Vertical</enum> - </property> - </spacer> - </item> - <item> - <widget class="Q3GroupBox" name="newProfileGroupBox"> - <property name="title"> - <string>Create profile</string> - </property> - <layout class="QVBoxLayout"> - <item> - <widget class="QPushButton" name="newPushButton"> - <property name="text"> - <string>Ed&itor</string> - </property> - <property name="shortcut"> - <string>Alt+I</string> - </property> - <property name="whatsThis" stdset="0"> - <string>Create a new profile with the profile editor.</string> - </property> - </widget> - </item> - <item> - <widget class="QPushButton" name="wizardPushButton"> - <property name="text"> - <string>&Wizard</string> - </property> - <property name="shortcut"> - <string>Alt+W</string> - </property> - <property name="whatsThis" stdset="0"> - <string>Create a new profile with the wizard.</string> - </property> - </widget> - </item> - <item> - <widget class="QPushButton" name="diamondcardPushButton"> - <property name="text"> - <string>Dia&mondcard</string> - </property> - <property name="shortcut"> - <string>Alt+M</string> - </property> - <property name="whatsThis" stdset="0"> - <string>Create a profile for a Diamondcard account. With a Diamondcard account you can make worldwide calls to regular and cell phones and send SMS messages.</string> - </property> - </widget> - </item> - </layout> - </widget> - </item> - <item> - <widget class="Q3GroupBox" name="modifyProfileGroupBox"> - <property name="title"> - <string>Modify profile</string> - </property> - <layout class="QVBoxLayout"> - <item> - <widget class="QPushButton" name="editPushButton"> - <property name="text"> - <string>&Edit</string> - </property> - <property name="shortcut"> - <string>Alt+E</string> - </property> - <property name="whatsThis" stdset="0"> - <string>Edit the highlighted profile.</string> - </property> - </widget> - </item> - <item> - <widget class="QPushButton" name="deletePushButton"> - <property name="text"> - <string>&Delete</string> - </property> - <property name="shortcut"> - <string>Alt+D</string> - </property> - <property name="whatsThis" stdset="0"> - <string>Delete the highlighted profile.</string> - </property> - </widget> - </item> - <item> - <widget class="QPushButton" name="renamePushButton"> - <property name="text"> - <string>Ren&ame</string> - </property> - <property name="shortcut"> - <string>Alt+A</string> - </property> - <property name="whatsThis" stdset="0"> - <string>Rename the highlighted profile.</string> - </property> - </widget> - </item> - </layout> - </widget> - </item> - <item> - <widget class="Q3GroupBox" name="startupProfileGroupBox"> - <property name="title"> - <string>Startup profile</string> - </property> - <layout class="QVBoxLayout"> - <item> - <widget class="QPushButton" name="defaultPushButton"> - <property name="text"> - <string>&Set as default</string> - </property> - <property name="shortcut"> - <string>Alt+S</string> - </property> - <property name="whatsThis" stdset="0"> - <string>Make the selected profiles the default profiles. The next time you start Twinkle, these profiles will be automatically run.</string> - </property> - </widget> - </item> - <item> - <widget class="QPushButton" name="runPushButton"> - <property name="text"> - <string>&Run</string> - </property> - <property name="shortcut"> - <string>Alt+R</string> - </property> - <property name="default"> - <bool>true</bool> - </property> - <property name="whatsThis" stdset="0"> - <string>Run Twinkle with the selected profiles.</string> - </property> - </widget> - </item> - </layout> - </widget> - </item> - <item> - <widget class="QPushButton" name="sysPushButton"> - <property name="text"> - <string>S&ystem settings</string> - </property> - <property name="shortcut"> - <string>Alt+Y</string> - </property> - <property name="whatsThis" stdset="0"> - <string>Edit the system settings.</string> - </property> - </widget> - </item> - <item> - <widget class="QPushButton" name="cancelPushButton"> - <property name="text"> - <string>&Cancel</string> - </property> - <property name="shortcut"> - <string>Alt+C</string> - </property> - </widget> - </item> - </layout> - </item> + </widget> + </item> + </layout> + </widget> + </item> + <item> + <widget class="QPushButton" name="sysPushButton"> + <property name="whatsThis"> + <string>Edit the system settings.</string> + </property> + <property name="text"> + <string>S&ystem settings</string> + </property> + <property name="shortcut"> + <string>Alt+Y</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="cancelPushButton"> + <property name="text"> + <string>&Cancel</string> + </property> + <property name="shortcut"> + <string>Alt+C</string> + </property> + </widget> + </item> </layout> - </widget> - <layoutdefault spacing="6" margin="11"/> - <pixmapfunction></pixmapfunction> - <tabstops> - <tabstop>profileListView</tabstop> - <tabstop>newPushButton</tabstop> - <tabstop>wizardPushButton</tabstop> - <tabstop>diamondcardPushButton</tabstop> - <tabstop>editPushButton</tabstop> - <tabstop>deletePushButton</tabstop> - <tabstop>renamePushButton</tabstop> - <tabstop>defaultPushButton</tabstop> - <tabstop>runPushButton</tabstop> - <tabstop>sysPushButton</tabstop> - <tabstop>cancelPushButton</tabstop> - </tabstops> - <includes> - <include location="global">list</include> - <include location="global">string</include> - <include location="local">phone.h</include> - <include location="local">q3mainwindow.h</include> - </includes> - <connections> - <connection> - <sender>cancelPushButton</sender> - <signal>clicked()</signal> - <receiver>SelectProfileForm</receiver> - <slot>reject()</slot> - </connection> - <connection> - <sender>runPushButton</sender> - <signal>clicked()</signal> - <receiver>SelectProfileForm</receiver> - <slot>runProfile()</slot> - </connection> - <connection> - <sender>editPushButton</sender> - <signal>clicked()</signal> - <receiver>SelectProfileForm</receiver> - <slot>editProfile()</slot> - </connection> - <connection> - <sender>newPushButton</sender> - <signal>clicked()</signal> - <receiver>SelectProfileForm</receiver> - <slot>newProfile()</slot> - </connection> - <connection> - <sender>deletePushButton</sender> - <signal>clicked()</signal> - <receiver>SelectProfileForm</receiver> - <slot>deleteProfile()</slot> - </connection> - <connection> - <sender>renamePushButton</sender> - <signal>clicked()</signal> - <receiver>SelectProfileForm</receiver> - <slot>renameProfile()</slot> - </connection> - <connection> - <sender>wizardPushButton</sender> - <signal>clicked()</signal> - <receiver>SelectProfileForm</receiver> - <slot>wizardProfile()</slot> - </connection> - <connection> - <sender>defaultPushButton</sender> - <signal>clicked()</signal> - <receiver>SelectProfileForm</receiver> - <slot>setAsDefault()</slot> - </connection> - <connection> - <sender>sysPushButton</sender> - <signal>clicked()</signal> - <receiver>SelectProfileForm</receiver> - <slot>sysSettings()</slot> - </connection> - <connection> - <sender>profileListView</sender> - <signal>doubleClicked(Q3ListViewItem*)</signal> - <receiver>SelectProfileForm</receiver> - <slot>toggleItem(Q3ListViewItem*)</slot> - </connection> - <connection> - <sender>diamondcardPushButton</sender> - <signal>clicked()</signal> - <receiver>SelectProfileForm</receiver> - <slot>diamondcardProfile()</slot> - </connection> - </connections> + </item> + <item row="1" column="0"> + <widget class="QListWidget" name="profileListView"> + <property name="whatsThis"> + <string>Tick the check boxes of the user profiles that you want to run and press run.</string> + </property> + </widget> + </item> + </layout> + </widget> + <layoutdefault spacing="6" margin="11"/> + <tabstops> + <tabstop>profileListView</tabstop> + <tabstop>newPushButton</tabstop> + <tabstop>wizardPushButton</tabstop> + <tabstop>diamondcardPushButton</tabstop> + <tabstop>editPushButton</tabstop> + <tabstop>deletePushButton</tabstop> + <tabstop>renamePushButton</tabstop> + <tabstop>defaultPushButton</tabstop> + <tabstop>runPushButton</tabstop> + <tabstop>sysPushButton</tabstop> + <tabstop>cancelPushButton</tabstop> + </tabstops> + <includes> + <include location="global">list</include> + <include location="global">string</include> + <include location="local">phone.h</include> + <include location="local">q3mainwindow.h</include> + </includes> + <resources/> + <connections> + <connection> + <sender>cancelPushButton</sender> + <signal>clicked()</signal> + <receiver>SelectProfileForm</receiver> + <slot>reject()</slot> + <hints> + <hint type="sourcelabel"> + <x>392</x> + <y>501</y> + </hint> + <hint type="destinationlabel"> + <x>20</x> + <y>20</y> + </hint> + </hints> + </connection> + <connection> + <sender>runPushButton</sender> + <signal>clicked()</signal> + <receiver>SelectProfileForm</receiver> + <slot>runProfile()</slot> + <hints> + <hint type="sourcelabel"> + <x>400</x> + <y>435</y> + </hint> + <hint type="destinationlabel"> + <x>20</x> + <y>20</y> + </hint> + </hints> + </connection> + <connection> + <sender>editPushButton</sender> + <signal>clicked()</signal> + <receiver>SelectProfileForm</receiver> + <slot>editProfile()</slot> + <hints> + <hint type="sourcelabel"> + <x>400</x> + <y>289</y> + </hint> + <hint type="destinationlabel"> + <x>20</x> + <y>20</y> + </hint> + </hints> + </connection> + <connection> + <sender>newPushButton</sender> + <signal>clicked()</signal> + <receiver>SelectProfileForm</receiver> + <slot>newProfile()</slot> + <hints> + <hint type="sourcelabel"> + <x>400</x> + <y>172</y> + </hint> + <hint type="destinationlabel"> + <x>20</x> + <y>20</y> + </hint> + </hints> + </connection> + <connection> + <sender>deletePushButton</sender> + <signal>clicked()</signal> + <receiver>SelectProfileForm</receiver> + <slot>deleteProfile()</slot> + <hints> + <hint type="sourcelabel"> + <x>400</x> + <y>318</y> + </hint> + <hint type="destinationlabel"> + <x>20</x> + <y>20</y> + </hint> + </hints> + </connection> + <connection> + <sender>renamePushButton</sender> + <signal>clicked()</signal> + <receiver>SelectProfileForm</receiver> + <slot>renameProfile()</slot> + <hints> + <hint type="sourcelabel"> + <x>400</x> + <y>347</y> + </hint> + <hint type="destinationlabel"> + <x>20</x> + <y>20</y> + </hint> + </hints> + </connection> + <connection> + <sender>wizardPushButton</sender> + <signal>clicked()</signal> + <receiver>SelectProfileForm</receiver> + <slot>wizardProfile()</slot> + <hints> + <hint type="sourcelabel"> + <x>400</x> + <y>201</y> + </hint> + <hint type="destinationlabel"> + <x>20</x> + <y>20</y> + </hint> + </hints> + </connection> + <connection> + <sender>defaultPushButton</sender> + <signal>clicked()</signal> + <receiver>SelectProfileForm</receiver> + <slot>setAsDefault()</slot> + <hints> + <hint type="sourcelabel"> + <x>400</x> + <y>406</y> + </hint> + <hint type="destinationlabel"> + <x>20</x> + <y>20</y> + </hint> + </hints> + </connection> + <connection> + <sender>sysPushButton</sender> + <signal>clicked()</signal> + <receiver>SelectProfileForm</receiver> + <slot>sysSettings()</slot> + <hints> + <hint type="sourcelabel"> + <x>392</x> + <y>472</y> + </hint> + <hint type="destinationlabel"> + <x>20</x> + <y>20</y> + </hint> + </hints> + </connection> + <connection> + <sender>diamondcardPushButton</sender> + <signal>clicked()</signal> + <receiver>SelectProfileForm</receiver> + <slot>diamondcardProfile()</slot> + <hints> + <hint type="sourcelabel"> + <x>400</x> + <y>230</y> + </hint> + <hint type="destinationlabel"> + <x>20</x> + <y>20</y> + </hint> + </hints> + </connection> + <connection> + <sender>profileListView</sender> + <signal>doubleClicked(QModelIndex)</signal> + <receiver>SelectProfileForm</receiver> + <slot>toggleItem(QModelIndex)</slot> + <hints> + <hint type="sourcelabel"> + <x>228</x> + <y>131</y> + </hint> + <hint type="destinationlabel"> + <x>433</x> + <y>27</y> + </hint> + </hints> + </connection> + </connections> + <slots> + <slot>toggleItem(QModelIndex)</slot> + </slots> </ui> |