You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
3.6 KiB
96 lines
3.6 KiB
/***************************************************************************
|
|
* Copyright (C) 2005 by Danny Kukawka *
|
|
* danny.kukawka@web.de, dkukawka@suse.de *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of version 2 of the GNU General Public License *
|
|
* as published by the Free Software Foundation. *
|
|
* *
|
|
* 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., *
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
***************************************************************************/
|
|
|
|
/*!
|
|
* \file suspenddialog.cpp
|
|
* \brief In this file can be found the suspend dialog related code.
|
|
* \author Danny Kukawka, <dkukawka@suse.de>, <danny.kukawka@web.de>
|
|
* \date 2005
|
|
*/
|
|
|
|
// KDE - Headers
|
|
#include <tdelocale.h>
|
|
#include <kiconloader.h>
|
|
|
|
// QT - Headers
|
|
#include <tqdialog.h>
|
|
#include <tqlabel.h>
|
|
#include <tqstring.h>
|
|
#include <tqpixmap.h>
|
|
#include <tqprogressbar.h>
|
|
|
|
#include "suspenddialog.h"
|
|
|
|
/*! This is the default constructor of the class. */
|
|
suspendDialog::suspendDialog(TQWidget *parent, const char *name)
|
|
:suspend_Dialog(parent, name, true, TQt::WStyle_StaysOnTop | TQt::WDestructiveClose )
|
|
{
|
|
this->setIcon(SmallIcon("kpowersave", TQIconSet::Automatic));
|
|
}
|
|
|
|
/*! This is the default destructor of the class. */
|
|
suspendDialog::~suspendDialog()
|
|
{
|
|
|
|
}
|
|
|
|
/*!
|
|
* This used to set Icon/pixmap for the dialog.
|
|
* \param type TQString with the type of the current suspend
|
|
* to set the pixmap in the dialog
|
|
*/
|
|
void suspendDialog::setPixmap( TQString type )
|
|
{
|
|
TQPixmap pixmap = 0;
|
|
if(type.startsWith("suspend2disk")){// || type.startsWith("NULL")) {
|
|
pixmap = TDEGlobal::iconLoader()->loadIcon("suspend_to_disk", TDEIcon::NoGroup, TDEIcon::SizeLarge);
|
|
} else if (type.startsWith("suspend2ram")) {
|
|
pixmap = TDEGlobal::iconLoader()->loadIcon("suspend_to_ram", TDEIcon::NoGroup, TDEIcon::SizeLarge);
|
|
} else if (type.startsWith("standby")) {
|
|
pixmap = TDEGlobal::iconLoader()->loadIcon("stand_by", TDEIcon::NoGroup, TDEIcon::SizeLarge);
|
|
} else {
|
|
pixmap = TDEGlobal::iconLoader()->loadIcon("kpowersave", TDEIcon::NoGroup, TDEIcon::SizeLarge);
|
|
}
|
|
setCaption(i18n("Preparing Suspend..."));
|
|
iconPixmap->setPixmap( pixmap );
|
|
}
|
|
|
|
/*!
|
|
* This used to set the values of progressbar for the dialog.
|
|
* \param percent integer value with current progress stauts of suspend
|
|
*/
|
|
void suspendDialog::setProgressbar( int percent )
|
|
{
|
|
progressBar->setPercentageVisible(true);
|
|
progressBar->setProgress(percent);
|
|
}
|
|
|
|
/*!
|
|
* This used to set the message of current suspend action to the the dialog.
|
|
* \param messageText TQString with the message of the current running suspend
|
|
* prepare action
|
|
*/
|
|
void suspendDialog::setTextLabel( TQString messageText )
|
|
{
|
|
message->show();
|
|
message->setText(messageText);
|
|
}
|
|
|
|
#include "suspenddialog.moc"
|