diff options
Diffstat (limited to 'systemsettings/mainwindow.cpp')
-rw-r--r-- | systemsettings/mainwindow.cpp | 122 |
1 files changed, 61 insertions, 61 deletions
diff --git a/systemsettings/mainwindow.cpp b/systemsettings/mainwindow.cpp index 544c015..df6257d 100644 --- a/systemsettings/mainwindow.cpp +++ b/systemsettings/mainwindow.cpp @@ -21,16 +21,16 @@ #include "mainwindow.h" #include <kstdaction.h> -#include <qwhatsthis.h> -#include <qlabel.h> -#include <qvbox.h> +#include <tqwhatsthis.h> +#include <tqlabel.h> +#include <tqvbox.h> #include <kaction.h> -#include <qtoolbutton.h> +#include <tqtoolbutton.h> #include <klocale.h> #include <kservicegroup.h> -#include <qlayout.h> -#include <qwidgetstack.h> -#include <qtimer.h> +#include <tqlayout.h> +#include <tqwidgetstack.h> +#include <tqtimer.h> #include <kiconloader.h> #include <kcmoduleloader.h> #include <kdialogbase.h> @@ -43,7 +43,7 @@ #include <kmenubar.h> #include <kactionclasses.h> #include <ktoolbarbutton.h> -#include <qtabbar.h> +#include <tqtabbar.h> #include "kcmsearch.h" #include "modulesview.h" @@ -51,19 +51,19 @@ #include "kcmodulemenu.h" #include "kcmultiwidget.h" -MainWindow::MainWindow(bool embed, const QString & menuFile, - QWidget *parent, const char *name) : - KMainWindow(parent,name), menu(NULL), embeddedWindows(embed), +MainWindow::MainWindow(bool embed, const TQString & menuFile, + TQWidget *tqparent, const char *name) : + KMainWindow(tqparent,name), menu(NULL), embeddedWindows(embed), groupWidget(NULL), selectedPage(0), dummyAbout(NULL) { // Load the menu structure in from disk. menu = new KCModuleMenu( menuFile ); moduleTabs = new KTabWidget(this, "moduletabs", - QTabWidget::Top|QTabWidget::Rounded); + TQTabWidget::Top|TQTabWidget::Rounded); buildMainWidget(); buildActions(); - setupGUI(ToolBar|Save|Create,QString::null); + setupGUI(ToolBar|Save|Create,TQString()); widgetChange(); } @@ -77,11 +77,11 @@ MainWindow::~MainWindow() void MainWindow::buildMainWidget() { - windowStack = new QWidgetStack( this, "widgetstack" ); + windowStack = new TQWidgetStack( this, "widgetstack" ); // Top level pages. - QValueList<MenuItem> subMenus = menu->menuList(); - QValueList<MenuItem>::iterator it; + TQValueList<MenuItem> subMenus = menu->menuList(); + TQValueList<MenuItem>::iterator it; KCScrollView *modulesScroller; moduleTabs->show(); for ( it = subMenus.begin(); it != subMenus.end(); ++it ) { @@ -89,7 +89,7 @@ void MainWindow::buildMainWidget() modulesScroller = new KCScrollView(moduleTabs); ModulesView *modulesView = new ModulesView( menu, (*it).subMenu, modulesScroller->viewport(), "modulesView" ); modulesViewList.append(modulesView); - connect(modulesView, SIGNAL(itemSelected(QIconViewItem* )), this, SLOT(slotItemSelected(QIconViewItem*))); + connect(modulesView, TQT_SIGNAL(itemSelected(TQIconViewItem* )), TQT_TQOBJECT(this), TQT_SLOT(slotItemSelected(TQIconViewItem*))); modulesScroller->addChild(modulesView); moduleTabs->addTab(modulesScroller, (*it).caption); overviewPages.append(modulesScroller); @@ -103,43 +103,43 @@ void MainWindow::buildMainWidget() void MainWindow::buildActions() { - KStdAction::quit(this, SLOT( close() ), actionCollection()); + KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT( close() ), actionCollection()); - resetModule = new KAction(i18n("Undo Changes"), 0, this, - SLOT(showAllModules()), actionCollection(), "resetModule" ); + resetModule = new KAction(i18n("Undo Changes"), 0, TQT_TQOBJECT(this), + TQT_SLOT(showAllModules()), actionCollection(), "resetModule" ); resetModule->setEnabled(false); - defaultModule = new KAction(i18n("Reset to Defaults"), 0, this, - SLOT(showAllModules()), actionCollection(), "defaultModule" ); + defaultModule = new KAction(i18n("Reset to Defaults"), 0, TQT_TQOBJECT(this), + TQT_SLOT(showAllModules()), actionCollection(), "defaultModule" ); defaultModule->setEnabled(false); if( embeddedWindows ) { - showAllAction = new KAction(i18n("Overview"), QApplication::reverseLayout() ? "forward" : "back", 0, this, - SLOT(showAllModules()), actionCollection(), "showAll" ); + showAllAction = new KAction(i18n("Overview"), TQApplication::reverseLayout() ? "forward" : "back", 0, TQT_TQOBJECT(this), + TQT_SLOT(showAllModules()), actionCollection(), "showAll" ); showAllAction->setEnabled(false); } - aboutModuleAction = new KAction(i18n("About Current Module"), 0, this, SLOT(aboutCurrentModule()), actionCollection(), "help_about_module"); + aboutModuleAction = new KAction(i18n("About Current Module"), 0, TQT_TQOBJECT(this), TQT_SLOT(aboutCurrentModule()), actionCollection(), "help_about_module"); resetModuleHelp(); // Search - QHBox *hbox = new QHBox(0); + TQHBox *hbox = new TQHBox(0); hbox->setMaximumWidth( 400 ); KcmSearch* search = new KcmSearch(&modulesViewList, hbox, "search"); hbox->setStretchFactor(search,1); - connect(search, SIGNAL(searchHits(const QString &, int *, int)), this, SLOT(slotSearchHits(const QString &, int *, int))); + connect(search, TQT_SIGNAL(searchHits(const TQString &, int *, int)), TQT_TQOBJECT(this), TQT_SLOT(slotSearchHits(const TQString &, int *, int))); - QVBox *vbox = new QVBox(hbox); - generalHitLabel = new QLabel(vbox); + TQVBox *vbox = new TQVBox(hbox); + generalHitLabel = new TQLabel(vbox); vbox->setStretchFactor(generalHitLabel,1); - advancedHitLabel = new QLabel(vbox); + advancedHitLabel = new TQLabel(vbox); vbox->setStretchFactor(advancedHitLabel,1); hbox->setStretchFactor(vbox,1); // "Search:" label - QLabel *searchLabel = new QLabel( this, "SearchLabel"); + TQLabel *searchLabel = new TQLabel( this, "SearchLabel"); searchLabel->setText( i18n("&Search:") ); searchLabel->setFont(KGlobalSettings::toolBarFont()); searchLabel->setMargin(2); @@ -151,21 +151,21 @@ void MainWindow::buildActions() 0, 0, actionCollection(), "search" ); searchAction->setShortcutConfigurable( false ); searchAction->setAutoSized( true ); - QWhatsThis::add( search, i18n( "Search Bar<p>Enter a search term." ) ); + TQWhatsThis::add( search, i18n( "Search Bar<p>Enter a search term." ) ); // The Clear search box button. - KToolBarButton *clearWidget = new KToolBarButton(QApplication::reverseLayout() ? "clear_left" : "locationbar_erase", + KToolBarButton *clearWidget = new KToolBarButton(TQApplication::reverseLayout() ? "clear_left" : "locationbar_erase", 0, this); - searchClear = new KWidgetAction( clearWidget, QString(""), CTRL+Key_L, search, SLOT(clear()), + searchClear = new KWidgetAction( clearWidget, TQString(""), CTRL+Key_L, TQT_TQOBJECT(search), TQT_SLOT(clear()), actionCollection(), "searchReset"); - connect(clearWidget, SIGNAL(clicked()), searchClear, SLOT(activate())); + connect(clearWidget, TQT_SIGNAL(clicked()), searchClear, TQT_SLOT(activate())); searchClear->setWhatsThis( i18n( "Reset Search\n" "Resets the search so that " "all items are shown again." ) ); // Top level pages. - QValueList<MenuItem> subMenus = menu->menuList(); - QValueList<MenuItem>::iterator it; + TQValueList<MenuItem> subMenus = menu->menuList(); + TQValueList<MenuItem>::iterator it; for ( it = subMenus.begin(); it != subMenus.end(); ++it ) { if( (*it).menu ) { KServiceGroup::Ptr group = KServiceGroup::group( (*it).subMenu ); @@ -174,8 +174,8 @@ void MainWindow::buildActions() continue; } - KRadioAction *newAction = new KRadioAction( group->caption(), group->icon(), KShortcut(), this, - SLOT(slotTopPage()), actionCollection(), group->relPath() ); + KRadioAction *newAction = new KRadioAction( group->caption(), group->icon(), KShortcut(), TQT_TQOBJECT(this), + TQT_SLOT(slotTopPage()), actionCollection(), group->relPath() ); pageActions.append(newAction); kdDebug() << "relpath is :" << group->relPath() << endl; } @@ -225,17 +225,17 @@ void MainWindow::showAllModules() resetModuleHelp(); } -void MainWindow::slotItemSelected( QIconViewItem *item ){ +void MainWindow::slotItemSelected( TQIconViewItem *item ){ ModuleIconItem *mItem = (ModuleIconItem *)item; if( !mItem ) return; - groupWidget = moduleItemToWidgetDict.find(mItem); - scrollView = moduleItemToScrollerDict.find(mItem); + groupWidget = moduleItemToWidgetDict.tqfind(mItem); + scrollView = moduleItemToScrollerDict.tqfind(mItem); if(groupWidget==0) { - QValueList<KCModuleInfo> list = mItem->modules; + TQValueList<KCModuleInfo> list = mItem->modules; KDialogBase::DialogType type = KDialogBase::IconList; if(list.count() == 1) { type=KDialogBase::Plain; @@ -248,18 +248,18 @@ void MainWindow::slotItemSelected( QIconViewItem *item ){ moduleItemToScrollerDict.insert(mItem,scrollView); moduleItemToWidgetDict.insert(mItem,groupWidget); - connect(groupWidget, SIGNAL(aboutToShow( KCModuleProxy * )), this, SLOT(updateModuleHelp( KCModuleProxy * ))); - connect(groupWidget, SIGNAL(aboutToShowPage( QWidget* )), this, SLOT(widgetChange())); - connect(groupWidget, SIGNAL(finished()), this, SLOT(groupModulesFinished())); - connect(groupWidget, SIGNAL(close()), this, SLOT(showAllModules())); + connect(groupWidget, TQT_SIGNAL(aboutToShow( KCModuleProxy * )), TQT_TQOBJECT(this), TQT_SLOT(updateModuleHelp( KCModuleProxy * ))); + connect(groupWidget, TQT_SIGNAL(aboutToShowPage( TQWidget* )), TQT_TQOBJECT(this), TQT_SLOT(widgetChange())); + connect(groupWidget, TQT_SIGNAL(finished()), TQT_TQOBJECT(this), TQT_SLOT(groupModulesFinished())); + connect(groupWidget, TQT_SIGNAL(close()), TQT_TQOBJECT(this), TQT_SLOT(showAllModules())); - QValueList<KCModuleInfo>::iterator it; + TQValueList<KCModuleInfo>::iterator it; for ( it = list.begin(); it != list.end(); ++it ){ qDebug("adding %s %s", (*it).moduleName().latin1(), (*it).fileName().latin1()); groupWidget->addModule( *it ); } - groupWidget->reparent(scrollView->viewport(), 0, QPoint()); - scrollView->reparent(windowStack, 0, QPoint()); + groupWidget->reparent(scrollView->viewport(), 0, TQPoint()); + scrollView->reparent(windowStack, 0, TQPoint()); } if( embeddedWindows ) { @@ -284,12 +284,12 @@ void MainWindow::slotItemSelected( QIconViewItem *item ){ // We resize and expand the window if neccessary, but only once the window has been updated. // Some modules seem to dynamically change thier size. The new size is only available // once the dialog is updated. :-/ -SBE - QTimer::singleShot(0,this,SLOT(timerResize())); + TQTimer::singleShot(0,this,TQT_SLOT(timerResize())); } void MainWindow::timerResize() { - QSize currentSize = size(); - QSize newSize = currentSize.expandedTo(sizeHint()); + TQSize currentSize = size(); + TQSize newSize = currentSize.expandedTo(tqsizeHint()); // Avoid resizing if possible. if(newSize!=currentSize) { resize(newSize); @@ -298,8 +298,8 @@ void MainWindow::timerResize() { void MainWindow::updateModuleHelp( KCModuleProxy *currentModule ) { if ( currentModule->aboutData() ) { - aboutModuleAction->setText(i18n("Help menu->about <modulename>", "About %1").arg( - currentModule->moduleInfo().moduleName().replace("&","&&"))); + aboutModuleAction->setText(i18n("Help menu->about <modulename>", "About %1").tqarg( + currentModule->moduleInfo().moduleName().tqreplace("&","&&"))); aboutModuleAction->setIcon(currentModule->moduleInfo().icon()); aboutModuleAction->setEnabled(true); } @@ -310,12 +310,12 @@ void MainWindow::updateModuleHelp( KCModuleProxy *currentModule ) { void MainWindow::resetModuleHelp() { aboutModuleAction->setText(i18n("About Current Module")); - aboutModuleAction->setIconSet(QIconSet()); + aboutModuleAction->setIconSet(TQIconSet()); aboutModuleAction->setEnabled(false); } void MainWindow::widgetChange() { - QString name; + TQString name; if( groupWidget && groupWidget->currentModule()) { name = groupWidget->currentModule()->moduleInfo().moduleName(); } @@ -332,7 +332,7 @@ void MainWindow::widgetChange() { void MainWindow::slotTopPage() { KRadioAction *clickedRadioAction = (KRadioAction *)sender(); - selectedPage = pageActions.find(clickedRadioAction); + selectedPage = pageActions.tqfind(clickedRadioAction); KRadioAction *currentRadioAction; for ( currentRadioAction = pageActions.first(); currentRadioAction; currentRadioAction = pageActions.next()) { @@ -342,18 +342,18 @@ void MainWindow::slotTopPage() { windowStack->raiseWidget(overviewPages.at(selectedPage)); } -void MainWindow::slotSearchHits(const QString &query, int *hitList, int length) { +void MainWindow::slotSearchHits(const TQString &query, int *hitList, int length) { if(query=="") { generalHitLabel->setText(""); advancedHitLabel->setText(""); } else { if(length>=1) { - generalHitLabel->setText(i18n("%1 hit in General","%1 hits in General",hitList[0]).arg(hitList[0])); + generalHitLabel->setText(i18n("%1 hit in General","%1 hits in General",hitList[0]).tqarg(hitList[0])); } if(length>=2) { - advancedHitLabel->setText(i18n("%1 hit in Advanced","%1 hits in Advanced",hitList[1]).arg(hitList[1])); + advancedHitLabel->setText(i18n("%1 hit in Advanced","%1 hits in Advanced",hitList[1]).tqarg(hitList[1])); } } |