summaryrefslogtreecommitdiffstats
path: root/krandr/ktimerdialog.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:17:21 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:17:21 -0600
commitdfe289850f068f19ba4a83ab4e7e22a7e09c13c9 (patch)
treec297348a55df66c571de4525646e0b9762427353 /krandr/ktimerdialog.cpp
parentb7658a0d5eca24a9d37c6e04f88298ef02389db0 (diff)
downloadtdelibs-dfe289850f068f19ba4a83ab4e7e22a7e09c13c9.tar.gz
tdelibs-dfe289850f068f19ba4a83ab4e7e22a7e09c13c9.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'krandr/ktimerdialog.cpp')
-rw-r--r--krandr/ktimerdialog.cpp205
1 files changed, 0 insertions, 205 deletions
diff --git a/krandr/ktimerdialog.cpp b/krandr/ktimerdialog.cpp
deleted file mode 100644
index 0be416be7..000000000
--- a/krandr/ktimerdialog.cpp
+++ /dev/null
@@ -1,205 +0,0 @@
-/*
- * This file is part of the KDE Libraries
- * Copyright (C) 2002 Hamish Rodda <rodda@kde.org>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library 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
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB. If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- *
- */
-
-#include <tqhbox.h>
-#include <tqlayout.h>
-#include <tqvbox.h>
-#include <tqtimer.h>
-#include <tqprogressbar.h>
-#include <tqlabel.h>
-
-#include <twin.h>
-#include <kiconloader.h>
-
-#include <klocale.h>
-#include <kdebug.h>
-
-#include "ktimerdialog.h"
-#include "ktimerdialog.moc"
-
-KTimerDialog::KTimerDialog( int msec, TimerStyle style, TQWidget *parent,
- const char *name, bool modal,
- const TQString &caption,
- int buttonMask, ButtonCode defaultButton,
- bool separator,
- const KGuiItem &user1,
- const KGuiItem &user2,
- const KGuiItem &user3 )
- : KDialogBase(parent, name, modal, caption, buttonMask, defaultButton,
- separator, user1, user2, user3 )
-{
- totalTimer = new TQTimer( this );
- updateTimer = new TQTimer( this );
- msecTotal = msecRemaining = msec;
- updateInterval = 1000;
- tStyle = style;
- KWin::setIcons( winId(), DesktopIcon("randr"), SmallIcon("randr") );
- // default to cancelling the dialog on timeout
- if ( buttonMask & Cancel )
- buttonOnTimeout = Cancel;
-
- connect( totalTimer, TQT_SIGNAL( timeout() ), TQT_SLOT( slotInternalTimeout() ) );
- connect( updateTimer, TQT_SIGNAL( timeout() ), TQT_SLOT( slotUpdateTime() ) );
-
- // create the widgets
- mainWidget = new TQVBox( this, "mainWidget" );
- timerWidget = new TQHBox( mainWidget, "timerWidget" );
- timerLabel = new TQLabel( timerWidget );
- timerProgress = new TQProgressBar( timerWidget );
- timerProgress->setTotalSteps( msecTotal );
- timerProgress->setPercentageVisible( false );
-
- KDialogBase::setMainWidget( mainWidget );
-
- slotUpdateTime( false );
-}
-
-KTimerDialog::~KTimerDialog()
-{
-}
-
-void KTimerDialog::show()
-{
- KDialogBase::show();
- totalTimer->start( msecTotal, true );
- updateTimer->start( updateInterval, false );
-}
-
-int KTimerDialog::exec()
-{
- totalTimer->start( msecTotal, true );
- updateTimer->start( updateInterval, false );
- return KDialogBase::exec();
-}
-
-void KTimerDialog::setMainWidget( TQWidget *widget )
-{
- // yuck, here goes.
- TQVBox *newWidget = new TQVBox( this );
-
- if ( widget->parentWidget() != mainWidget ) {
- widget->reparent( newWidget, 0, TQPoint(0,0) );
- } else {
- newWidget->insertChild( TQT_TQOBJECT(widget) );
- }
-
- timerWidget->reparent( newWidget, 0, TQPoint(0, 0) );
-
- delete mainWidget;
- mainWidget = newWidget;
- KDialogBase::setMainWidget( mainWidget );
-}
-
-void KTimerDialog::setRefreshInterval( int msec )
-{
- updateInterval = msec;
- if ( updateTimer->isActive() )
- updateTimer->changeInterval( updateInterval );
-}
-
-int KTimerDialog::timeoutButton() const
-{
- return buttonOnTimeout;
-}
-
-void KTimerDialog::setTimeoutButton( const ButtonCode newButton )
-{
- buttonOnTimeout = newButton;
-}
-
-int KTimerDialog::timerStyle() const
-{
- return tStyle;
-}
-
-void KTimerDialog::setTimerStyle( const TimerStyle newStyle )
-{
- tStyle = newStyle;
-}
-
-void KTimerDialog::slotUpdateTime( bool update )
-{
- if ( update )
- switch ( tStyle ) {
- case CountDown:
- msecRemaining -= updateInterval;
- break;
- case CountUp:
- msecRemaining += updateInterval;
- break;
- case Manual:
- break;
- }
-
- timerProgress->setProgress( msecRemaining );
-
- timerLabel->setText( i18n("1 second remaining:","%n seconds remaining:",msecRemaining/1000) );
-}
-
-void KTimerDialog::slotInternalTimeout()
-{
- emit timerTimeout();
- switch ( buttonOnTimeout ) {
- case Help:
- slotHelp();
- break;
- case Default:
- slotDefault();
- break;
- case Ok:
- slotOk();
- break;
- case Apply:
- applyPressed();
- break;
- case Try:
- slotTry();
- break;
- case Cancel:
- slotCancel();
- break;
- case Close:
- slotClose();
- break;
- /*case User1:
- slotUser1();
- break;
- case User2:
- slotUser2();
- break;*/
- case User3:
- slotUser3();
- break;
- case No:
- slotNo();
- break;
- case Yes:
- slotCancel();
- break;
- case Details:
- slotDetails();
- break;
- case Filler:
- case Stretch:
- kdDebug() << "Cannot execute button code " << buttonOnTimeout << endl;
- break;
- }
-}