diff options
Diffstat (limited to 'kiosktool/kioskgui.cpp')
-rw-r--r-- | kiosktool/kioskgui.cpp | 82 |
1 files changed, 41 insertions, 41 deletions
diff --git a/kiosktool/kioskgui.cpp b/kiosktool/kioskgui.cpp index 404ce0d..f5f89f6 100644 --- a/kiosktool/kioskgui.cpp +++ b/kiosktool/kioskgui.cpp @@ -38,7 +38,7 @@ #include <kstatusbar.h> #include <tdestdaccel.h> #include <kstdaction.h> -#include <kstandarddirs.h> +#include <tdestandarddirs.h> #include <kurlrequester.h> #include "mainview.h" @@ -88,17 +88,17 @@ KioskGui::KioskGui() m_view->pbHelp->hide(); // TODO, write help :) - connect(m_view->pbDiscard, TQT_SIGNAL(clicked()), this, TQT_SLOT(discardPage())); - connect(m_view->pbFinished, TQT_SIGNAL(clicked()), this, TQT_SLOT(finishedPage())); + connect(m_view->pbDiscard, TQ_SIGNAL(clicked()), this, TQ_SLOT(discardPage())); + connect(m_view->pbFinished, TQ_SIGNAL(clicked()), this, TQ_SLOT(finishedPage())); - TDEConfig *config = kapp->config(); + TDEConfig *config = tdeApp->config(); config->setGroup("General"); m_profile = config->readEntry("CurrentProfile", "default"); m_component = config->readEntry("CurrentComponent"); selectPage(PAGE_PROFILE_SELECTION, true); - TQTimer::singleShot(0, this, TQT_SLOT(slotCheckEtcSkel())); + TQTimer::singleShot(0, this, TQ_SLOT(slotCheckEtcSkel())); } KioskGui::~KioskGui() @@ -116,12 +116,12 @@ void KioskGui::slotCheckEtcSkel() if (!skelFiles.isEmpty()) { KMessageBox::informationList(this, - i18n("<qt>Your system contains KDE configuration settings in the " + i18n("<qt>Your system contains TDE configuration settings in the " "skeleton directory <b>%1</b>. These files are copied to the " - "personal KDE settings directory of newly created users.<p>" + "personal TDE settings directory of newly created users.<p>" "This may interfere with the correct operation of user profiles.<p>" "Unless a setting has been locked down, settings that have been copied " - "to the personal KDE settings directory of a user will override " + "to the personal TDE settings directory of a user will override " "a default setting configured in a profile.<p>" "<b>If this is not the intended behavior, please remove the offending " "files from the skeleton folder on all systems that you want to " @@ -135,12 +135,12 @@ void KioskGui::slotCheckEtcSkel() void KioskGui::setWidgetBackground(TQWidget *w) { - TQObjectList *l = w->queryList( TQWIDGET_OBJECT_NAME_STRING ); + TQObjectList *l = w->queryList( "TQWidget" ); TQObjectListIt it( *l ); for(TQWidget *wid=0; (wid = (TQWidget*)it.current()); ++it) { wid->setBackgroundOrigin(WindowOrigin); - if (::tqqt_cast<TQPushButton*>(wid)) + if (::tqt_cast<TQPushButton*>(wid)) wid->setAutoMask(true); } w->setBackgroundOrigin(WindowOrigin); @@ -154,28 +154,28 @@ void KioskGui::setSubCaption(const TQString &subCaption) void KioskGui::setupActions() { -// KStdAction::open(this, TQT_SLOT(fileOpen()), actionCollection()); -// KStdAction::save(this, TQT_SLOT(fileSave()), actionCollection()); -// KStdAction::saveAs(this, TQT_SLOT(fileSaveAs()), actionCollection()); - KStdAction::quit(this, TQT_SLOT(close()), actionCollection()); -// KStdAction::back(this, TQT_SLOT(previousPage()), actionCollection(), "previousPage"); -// KStdAction::forward(this, TQT_SLOT(nextPage()), actionCollection(), "nextPage"); +// KStdAction::open(this, TQ_SLOT(fileOpen()), actionCollection()); +// KStdAction::save(this, TQ_SLOT(fileSave()), actionCollection()); +// KStdAction::saveAs(this, TQ_SLOT(fileSaveAs()), actionCollection()); + KStdAction::quit(this, TQ_SLOT(close()), actionCollection()); +// KStdAction::back(this, TQ_SLOT(previousPage()), actionCollection(), "previousPage"); +// KStdAction::forward(this, TQ_SLOT(nextPage()), actionCollection(), "nextPage"); // createStandardStatusBarAction(); // setStandardToolBarMenuEnabled(true); -// KStdAction::keyBindings(this, TQT_SLOT(optionsConfigureKeys()), actionCollection()); -// KStdAction::configureToolbars(this, TQT_SLOT(optionsConfigureToolbars()), actionCollection()); - KStdAction::preferences(this, TQT_SLOT(slotConfig()), actionCollection()); - m_uploadAction = new TDEAction(i18n("Upload &All Profiles"), TQString(), 0, this, TQT_SLOT(uploadAllProfiles()), actionCollection(), "upload_all"); - m_backgroundAction = new TDEToggleAction(i18n("Background Graphics"), TQString(), 0, this, TQT_SLOT(slotUpdateBackground()), actionCollection(), "show_background"); +// KStdAction::keyBindings(this, TQ_SLOT(optionsConfigureKeys()), actionCollection()); +// KStdAction::configureToolbars(this, TQ_SLOT(optionsConfigureToolbars()), actionCollection()); + KStdAction::preferences(this, TQ_SLOT(slotConfig()), actionCollection()); + m_uploadAction = new TDEAction(i18n("Upload &All Profiles"), TQString(), 0, this, TQ_SLOT(uploadAllProfiles()), actionCollection(), "upload_all"); + m_backgroundAction = new TDEToggleAction(i18n("Background Graphics"), TQString(), 0, this, TQ_SLOT(slotUpdateBackground()), actionCollection(), "show_background"); updateActions(); } void KioskGui::updateActions() { - TDEConfig *config = kapp->config(); + TDEConfig *config = tdeApp->config(); config->setGroup("General"); bool uploadEnabled = !config->readEntry("uploadURL").isEmpty(); @@ -277,21 +277,21 @@ void KioskGui::selectPage(int page, bool save) setWidgetBackground(m_profileSelectionPage); connect(m_profileSelectionPage->listProfile, - TQT_SIGNAL(contextMenuRequested(TQListViewItem *, const TQPoint &, int)), - this, TQT_SLOT(slotProfileContextMenu(TQListViewItem *, const TQPoint &))); + TQ_SIGNAL(contextMenuRequested(TQListViewItem *, const TQPoint &, int)), + this, TQ_SLOT(slotProfileContextMenu(TQListViewItem *, const TQPoint &))); connect(m_profileSelectionPage->listProfile, - TQT_SIGNAL(doubleClicked (TQListViewItem *, const TQPoint &, int )), - this, TQT_SLOT(nextPage())); - connect(m_profileSelectionPage->buttonDelete, TQT_SIGNAL(clicked()), - this, TQT_SLOT(slotDeleteProfile())); - connect(m_profileSelectionPage->buttonAdd, TQT_SIGNAL(clicked()), - this, TQT_SLOT(slotAddProfile())); - connect(m_profileSelectionPage->buttonProperty, TQT_SIGNAL(clicked()), - this, TQT_SLOT(slotProfileProperties())); - connect(m_profileSelectionPage->buttonSetup, TQT_SIGNAL(clicked()), - this, TQT_SLOT(slotProfileSetup())); - connect(m_profileSelectionPage->buttonUsers, TQT_SIGNAL(clicked()), - this, TQT_SLOT(slotManageUsers())); + TQ_SIGNAL(doubleClicked (TQListViewItem *, const TQPoint &, int )), + this, TQ_SLOT(nextPage())); + connect(m_profileSelectionPage->buttonDelete, TQ_SIGNAL(clicked()), + this, TQ_SLOT(slotDeleteProfile())); + connect(m_profileSelectionPage->buttonAdd, TQ_SIGNAL(clicked()), + this, TQ_SLOT(slotAddProfile())); + connect(m_profileSelectionPage->buttonProperty, TQ_SIGNAL(clicked()), + this, TQ_SLOT(slotProfileProperties())); + connect(m_profileSelectionPage->buttonSetup, TQ_SIGNAL(clicked()), + this, TQ_SLOT(slotProfileSetup())); + connect(m_profileSelectionPage->buttonUsers, TQ_SIGNAL(clicked()), + this, TQ_SLOT(slotManageUsers())); m_view->widgetStack->addWidget(m_profileSelectionPage, PAGE_PROFILE_SELECTION); m_profileSelectionPage->listProfile->setFocus(); @@ -305,7 +305,7 @@ void KioskGui::selectPage(int page, bool save) } m_componentSelectionPage = new ComponentSelectionPage(m_data, this); - connect(m_componentSelectionPage, TQT_SIGNAL(componentActivated()), this, TQT_SLOT(nextPage())); + connect(m_componentSelectionPage, TQ_SIGNAL(componentActivated()), this, TQ_SLOT(nextPage())); m_componentSelectionPage->setCurrentComponent(m_component); setWidgetBackground(m_componentSelectionPage); @@ -521,7 +521,7 @@ bool KioskGui::savePage(int page) m_profile = m_profileSelectionPage->listProfile->selectedItem() ? m_profileSelectionPage->listProfile->selectedItem()->text(0) : TQString(); - TDEConfig *config = kapp->config(); + TDEConfig *config = tdeApp->config(); config->setGroup("General"); config->writeEntry("CurrentProfile", m_profile); config->sync(); @@ -630,7 +630,7 @@ bool KioskGui::queryClose() } if (m_uploadAction->isEnabled()) { - TDEConfig *config = kapp->config(); + TDEConfig *config = tdeApp->config(); config->setGroup("General"); KURL uploadUrl = config->readEntry("uploadURL"); @@ -647,7 +647,7 @@ bool KioskGui::queryClose() void KioskGui::uploadAllProfiles() { - TDEConfig *config = kapp->config(); + TDEConfig *config = tdeApp->config(); config->setGroup("General"); TQString uploadPrefix = config->readEntry("uploadPrefix"); TQString uploadURL = config->readEntry("uploadURL"); @@ -691,7 +691,7 @@ void KioskGui::uploadCurrentProfile() void KioskGui::slotUpdateBackground() { - TDEConfig *config = kapp->config(); + TDEConfig *config = tdeApp->config(); config->setGroup("General"); config->writeEntry("FancyBackground", m_backgroundAction->isChecked()); config->sync(); |