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.
93 lines
3.1 KiB
93 lines
3.1 KiB
/***************************************************************************
|
|
infopanels.cpp - description
|
|
-------------------
|
|
begin : vie may 10 2002
|
|
copyright : (C) 2002 by Miguel Novas
|
|
email : michaell@teleline.es
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include "infopanels.h"
|
|
|
|
|
|
|
|
InfoPanels::InfoPanels(TQWidget *panelsWidget, TQObject *parent, const char *name): PanelsGroup(widget,parent,name)
|
|
{
|
|
widget= panelsWidget;
|
|
timerPanelCount=0;
|
|
timer = new TQTimer(this);
|
|
configChanged("proc.CPUINFO");
|
|
configChanged("proc.RAMINFO");
|
|
configChanged("proc.SWAPINFO");
|
|
configChanged("proc.CPULOAD");
|
|
configChanged("proc.UPTIME");
|
|
}
|
|
|
|
InfoPanels::~InfoPanels(){
|
|
}
|
|
|
|
void InfoPanels::configChanged(const char *name)
|
|
{
|
|
if(!strcmp(name,"proc")) readUpdateInterval();
|
|
else {
|
|
Panel *panel= (Panel *)widget->child(name);
|
|
if( Panel::readShow(name)!= (bool)panel ) {
|
|
if(panel) delete panel;
|
|
else {
|
|
if(!strcmp(name,"proc.CPUINFO" )) panel= new CpuPanel(widget,name);
|
|
else
|
|
if(!strcmp(name,"proc.RAMINFO" )) panel= new RamPanel(widget,name,RamPanel::memRAM);
|
|
else
|
|
if(!strcmp(name,"proc.SWAPINFO")) panel= new RamPanel(widget,name,RamPanel::memSWAP);
|
|
else
|
|
if(!strcmp(name,"proc.CPULOAD" )) panel= new CpuTimePanel(widget,name);
|
|
else
|
|
if(!strcmp(name,"proc.UPTIME" )) panel= new UpTimePanel(widget,name);
|
|
if(panel) timerConnect(panel);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void InfoPanels::timerConnect(Panel *display)
|
|
{
|
|
if(timerPanelCount==0) timer->start( cfgReadUpdateInterval()*1000 );
|
|
connect( timer , SIGNAL(timeout() ), display, SLOT(updateInfo()) );
|
|
connect( display, SIGNAL(destroyed()), this , SLOT(infoPanelDestroyed()) );
|
|
timerPanelCount++;
|
|
}
|
|
|
|
void InfoPanels::infoPanelDestroyed()
|
|
{
|
|
if(--timerPanelCount<=0) timer->stop();
|
|
}
|
|
|
|
void InfoPanels::cfgWriteUpdateInterval(int interval)
|
|
{
|
|
TDEGlobal::config()->setGroup("ShowWidget");
|
|
TDEGlobal::config()->writeEntry("UpdateInterval" , interval );
|
|
}
|
|
|
|
int InfoPanels::cfgReadUpdateInterval()
|
|
{
|
|
TDEGlobal::config()->setGroup("ShowWidget");
|
|
return TDEGlobal::config()->readNumEntry("UpdateInterval" , 5 );
|
|
}
|
|
|
|
void InfoPanels::readUpdateInterval()
|
|
{
|
|
timer->changeInterval(cfgReadUpdateInterval()*1000);
|
|
}
|
|
|
|
// ******************* Public static methods **********************
|
|
|
|
#include "infopanels.moc"
|