summaryrefslogtreecommitdiff
path: root/noncore/settings/aqpkg/mainwin.cpp
AgeCommit message (Collapse)AuthorFilesLines
2004-03-02applied the patch generated by the optimize_connect script fromalwin1-13/+13
TT.
2004-02-21improve support for BigScreenar1-86/+90
2003-10-27merge noncore/apps/* exceptmickeyl1-12/+19
- advancedfm (ljp, please...) - odict (tille, please...)
2003-08-09Merge from BRANCH_1_0kergoth1-0/+12
2003-06-11Some missing/fixed tr()s for HEADdrw1-4/+2
2003-05-16Fix for bug #914 (correct dialog cancel behaviour)drw1-6/+63
2003-04-29Give aqpkg standard source headers and some minor code clean-up.drw1-27/+28
2003-04-26Fix for bug #887 - do not perform documents update when doing a 'ipkg update'drw1-6/+13
2003-04-261. Fix for bug #872 - reduce CPU useage while ipkg is doing its thing 2. ↵drw1-4/+4
Re-enable setDocument function for identifying local ipks
2003-04-22Now display package information in separate window...easier for those long ↵drw1-38/+12
descriptions. Also use click and hold to display info, not double-click.
2003-04-20Finally fixed it so that packages are not incorrectly marked as having an ↵drw1-4/+2
update available
2003-04-10qpetoolbar and qpemenubar are depreciatedharlekin1-65/+65
2003-03-29Move Configure option under the Actions menu, allowing me to remove the ↵drw1-11/+6
top-level menu 'Options' (which only had the Config entry under it).
2003-03-19Fix for bug #741drw1-4/+25
2003-03-08Use inline picsdrw1-2/+2
2003-03-04Remove AQPkg's own help window, use standard help systemdrw1-25/+0
2003-02-06Change all vector<> to QList<>. First step in removing dependency on libstdc++.drw1-67/+76
2003-02-04Updates to configure dialogdrw1-1/+1
2003-02-01Many updates to install dialogdrw1-46/+40
2003-01-24Make the quick jump to keypad a toolbar like the find bar (option in config ↵drw1-30/+62
dialog will be removed).
2003-01-23Compile fix, if you use PATH_MAX, include linux/limits.h.kergoth1-0/+1
2003-01-23Minor fix for find function and more liberal use of progress widget to give ↵drw1-20/+24
feedback to user
2003-01-23Code optimizations for main windowdrw1-38/+855
2003-01-19Updates to main package list, icons for installed/updated packages, ↵drw1-4/+1
QWhatsThis and a couple other tweaks
2003-01-12Changed Packages meu to Actions to allow icons to fit on same lineandyq1-1/+1
2003-01-10Changed menu layoutdrw1-35/+33
2003-01-10Made find dialog a toolbar, fixed show options under View menudrw1-89/+77
2003-01-09Updates to main view, menu reorganization, etc.drw1-54/+162
2003-01-05Remove unused dialog and menu shortcut key combos. Also added a bunch of ↵drw1-15/+15
tr()'s to existing strings. Note to translators: These strings might be changing in the next couple of weeks as I do some UI updates.
2003-01-04Delay initial load of ipkg info so app displays quicker, and add progress ↵drw1-7/+44
display for longer operations (such as loading packages for large feeds).
2002-12-28adding i18n-fixescniehaus1-4/+4
@@ -61,10 +61,10 @@ MainWindow :: MainWindow( QWidget *p, ch // Create the main menu menu = menuBar(); //new QMenuBar( this ); - menu->insertItem( "&Settings", settings ); - menu->insertItem( "&Edit", edit ); - menu->insertItem( "&Filter", filter ); - menu->insertItem( "&Help", help ); + menu->insertItem( tr( "&Settings" ), settings ); + menu->insertItem( tr( "&Edit" ), edit ); + menu->insertItem( tr( "&Filter" ), filter ); + menu->insertItem( tr( "&Help" ), help ); mgr = new DataManager(); mgr->loadServers();
2002-12-28@@ -37,7 +37,7 @@ MainWindow :: MainWindow( QWidget *p, chcniehaus1-1/+1
showMaximized(); #endif - setCaption( "AQPkg - Package Manager" ); + setCaption( tr( "AQPkg - Package Manager" ) ); // Create our menu help = new QPopupMenu( this );
2002-11-21Re-applied patch for gcc3.2andyq1-2/+3
2002-11-17Added filter by category, and added extra fields to package display (Section ↵andyq1-186/+209
and size)
2002-11-11add #include <iostream>, and std:: when not 'using namespace std'kergoth1-1/+3
2002-11-09Added filter menu - contains 3 filters - show uninstalled packages,andyq1-8/+81
show installed packages and show upgraded packages
2002-11-03Added find next facilityandyq1-2/+9
2002-11-03Added search for package featureandyq1-0/+9
2002-10-25Modified so that you can click on a package in the documents view andandyq1-0/+9
the Local IPKGS view is shown and the selected package checked
2002-10-16Now displays an about box (only the version is shown)andyq1-1/+2
2002-09-28*** empty log message ***andyq1-0/+85