From fd4d12151ca6b034307f8eba345fbef97a3cbfaf Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 18 May 2012 03:12:25 -0500 Subject: Add skeleton wizards and dialogs --- src/bondwizard.cpp | 156 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 156 insertions(+) create mode 100644 src/bondwizard.cpp (limited to 'src/bondwizard.cpp') diff --git a/src/bondwizard.cpp b/src/bondwizard.cpp new file mode 100644 index 0000000..b0fe2b7 --- /dev/null +++ b/src/bondwizard.cpp @@ -0,0 +1,156 @@ +/*************************************************************************** + * Copyright (C) 2012 by Timothy Pearson * + * kb9vqf@pearsoncomputing.net * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include + +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#include + +#include "bondrealmpage.h" +#include "bondfinishpage.h" + +#include "bondwizard.h" +#include "bondwizard.moc" + +BondWizard::BondWizard(TQWidget *parent, const char *name) + : KWizard(parent, name, true) { + + realmpage= new BondRealmPage(this); + addPage( realmpage, i18n( "Step 1: Introduction" ) ); + setHelpEnabled(TQWizard::page(0), false); + + finishpage= new BondFinishPage(this); + addPage(finishpage, i18n( "Step 2: I want it my Way..." ) ); + setHelpEnabled(TQWizard::page(1), false); + + setFinishEnabled(TQWizard::page(1), true); + + setPosition(); +} + +BondWizard::~BondWizard() { +} + + +void BondWizard::next() { + if(currentPage()==realmpage) { + realm_dirty=true; // set the dirty flag, changes done that need reverting + // realmpage->save(); + TQWizard::next(); + } + if(currentPage()==finishpage) { + finishButton()->setFocus(); + } +} + +void BondWizard::slotNext() { + TQWizard::next(); +} + +void BondWizard::back() { + TQWizard::back(); +} + +bool BondWizard::askClose(){ + TQString text; + if (currentPage()==realmpage) { + text = i18n("

Are you sure you want to quit the LDAP Bonding Wizard?

" + "

If yes, click Quit and all changes will be lost." + "
If not, click Cancel to return and finish your setup.

"); + } else { + text = i18n("

Are you sure you want to quit the LDAP Bonding Wizard?

" + "

If not, click Cancel to return and finish bonding.

"); + } + int status = KMessageBox::warningContinueCancel(this, text, i18n("All Changes Will Be Lost"), KStdGuiItem::quit()); + if(status==KMessageBox::Continue){ + setDefaults(); + return true; + } else { + return false; + } +} + +/** the cancel button is connected to the reject() slot of TQDialog, + * so we have to reimplement this here to add a dialogbox to ask if we + * really want to quit the wizard. + */ +void BondWizard::reject(){ + if (askClose()){ + exit(0); + } +} + +void BondWizard::closeEvent(TQCloseEvent* e){ + if ( askClose() ) + exit(0); + else + e->ignore(); +} + +/** maybe call a dialog that the wizard has finished. */ +void BondWizard::accept(){ + exit(0); +} + +/** calls all save functions after resetting all features/ OS/ theme selections to Trinity default */ +void BondWizard::setDefaults(){ +// if(realm_dirty) +// realmpage->save(false); +} + +/** there seems to be a bug in TQWizard, that makes this evil hack necessary */ +void BondWizard::setPosition() { + TQSize hint = realmpage->sizeHint(); + TQSize finish_size = finishpage->sizeHint(); + + // get the width of the broadest child-widget + if ( hint.width() < finish_size.width() ) + hint.setWidth(finish_size.width()); + + // get the height of the highest child-widget + if ( hint.height() < finish_size.height() ) + hint.setHeight(finish_size.height()); + + // set the position + TQRect rect = KGlobalSettings::desktopGeometry(TQCursor::pos()); + int w = rect.x() + (rect.width() - hint.width())/2 - 9; + int h = rect.y() + (rect.height() - hint.height())/2; + move(w, h); +} -- cgit v1.2.3