author | drw <drw> | 2003-01-10 21:36:13 (UTC) |
---|---|---|
committer | drw <drw> | 2003-01-10 21:36:13 (UTC) |
commit | 5199ee62d5478bbf5a8eb898c148352704f288e7 (patch) (side-by-side diff) | |
tree | 15d48407fee127e10569a410659c954533f932c4 | |
parent | 3d5b0fdc15ed9b3ee392e52254aa9db73e2b7dac (diff) | |
download | opie-5199ee62d5478bbf5a8eb898c148352704f288e7.zip opie-5199ee62d5478bbf5a8eb898c148352704f288e7.tar.gz opie-5199ee62d5478bbf5a8eb898c148352704f288e7.tar.bz2 |
Changed menu layout
-rw-r--r-- | noncore/settings/aqpkg/mainwin.cpp | 64 |
1 files changed, 31 insertions, 33 deletions
diff --git a/noncore/settings/aqpkg/mainwin.cpp b/noncore/settings/aqpkg/mainwin.cpp index e184f6b..e489d2d 100644 --- a/noncore/settings/aqpkg/mainwin.cpp +++ b/noncore/settings/aqpkg/mainwin.cpp @@ -99,20 +99,24 @@ MainWindow :: MainWindow() mb->insertItem( tr( "Packages" ), popup ); - // Search menu + // View menu popup = new QPopupMenu( this ); - a = new QAction( tr( "Find" ), Resource::loadPixmap( "find" ), QString::null, 0, this, 0 ); - a->setWhatsThis( tr( "Click here to search for text in package names." ) ); - connect( a, SIGNAL( activated() ), this, SLOT( displayFindBar() ) ); - a->addTo( popup ); + actionUninstalled = new QAction( tr( "Show packages not installed" ), QString::null, 0, this, 0 ); + actionUninstalled->setToggleAction( TRUE ); + actionUninstalled->setWhatsThis( tr( "Click here to show packages available which have not been installed." ) ); + connect( actionUninstalled, SIGNAL( activated() ), this, SLOT( filterUninstalledPackages() ) ); + actionUninstalled->addTo( popup ); - actionFindNext = new QAction( tr( "Find next" ), Resource::loadIconSet( "next" ), QString::null, 0, this, 0 ); - actionFindNext->setEnabled( FALSE ); - actionFindNext->setWhatsThis( tr( "Click here to search for the package name containing the text you are searching for." ) ); - connect( actionFindNext, SIGNAL( activated() ), this, SLOT( repeatFind() ) ); - actionFindNext->addTo( popup ); - actionFindNext->addTo( findBar ); + actionInstalled = new QAction( tr( "Show installed packages" ), QString::null, 0, this, 0 ); + actionInstalled->setToggleAction( TRUE ); + actionInstalled->setWhatsThis( tr( "Click here to show packages currently installed on this device." ) ); + connect( actionInstalled, SIGNAL( activated() ), this, SLOT( filterInstalledPackages() ) ); + actionInstalled->addTo( popup ); - // Show 'quick jump' keypad? + actionUpdated = new QAction( tr( "Show updated packages" ), QString::null, 0, this, 0 ); + actionUpdated->setToggleAction( TRUE ); + actionUpdated->setWhatsThis( tr( "Click here to show packages currently installed on this device which have a newer version available." ) ); + connect( actionUpdated, SIGNAL( activated() ), this, SLOT( filterUpgradedPackages() ) ); + actionUpdated->addTo( popup ); popup->insertSeparator(); @@ -129,29 +133,23 @@ MainWindow :: MainWindow() a->addTo( popup ); - mb->insertItem( tr( "Search" ), popup ); - + popup->insertSeparator(); - // View menu - popup = new QPopupMenu( this ); + a = new QAction( tr( "Find" ), Resource::loadPixmap( "find" ), QString::null, 0, this, 0 ); + a->setWhatsThis( tr( "Click here to search for text in package names." ) ); + connect( a, SIGNAL( activated() ), this, SLOT( displayFindBar() ) ); + a->addTo( popup ); - actionUninstalled = new QAction( tr( "Show packages not installed" ), QString::null, 0, this, 0 ); - actionUninstalled->setToggleAction( TRUE ); - actionUninstalled->setWhatsThis( tr( "Click here to show packages available which have not been installed." ) ); - connect( actionUninstalled, SIGNAL( activated() ), this, SLOT( filterUninstalledPackages() ) ); - actionUninstalled->addTo( popup ); + actionFindNext = new QAction( tr( "Find next" ), Resource::loadIconSet( "next" ), QString::null, 0, this, 0 ); + actionFindNext->setEnabled( FALSE ); + actionFindNext->setWhatsThis( tr( "Click here to find the next package name containing the text you are searching for." ) ); + connect( actionFindNext, SIGNAL( activated() ), this, SLOT( repeatFind() ) ); + actionFindNext->addTo( popup ); + actionFindNext->addTo( findBar ); - actionInstalled = new QAction( tr( "Show installed packages" ), QString::null, 0, this, 0 ); - actionInstalled->setToggleAction( TRUE ); - actionInstalled->setWhatsThis( tr( "Click here to show packages currently installed on this device." ) ); - connect( actionInstalled, SIGNAL( activated() ), this, SLOT( filterInstalledPackages() ) ); - actionInstalled->addTo( popup ); + mb->insertItem( tr( "View" ), popup ); - actionUpdated = new QAction( tr( "Show updated packages" ), QString::null, 0, this, 0 ); - actionUpdated->setToggleAction( TRUE ); - actionUpdated->setWhatsThis( tr( "Click here to show packages currently installed on this device which have a newer version available." ) ); - connect( actionUpdated, SIGNAL( activated() ), this, SLOT( filterUpgradedPackages() ) ); - actionUpdated->addTo( popup ); - popup->insertSeparator(); + // Options menu + popup = new QPopupMenu( this ); a = new QAction( tr( "Configure" ), Resource::loadPixmap( "aqpkg/config" ), QString::null, 0, this, 0 ); @@ -172,5 +170,5 @@ MainWindow :: MainWindow() a->addTo( popup ); - mb->insertItem( tr( "View" ), popup ); + mb->insertItem( tr( "Options" ), popup ); // Finish find toolbar creation |