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.
139 lines
5.8 KiB
139 lines
5.8 KiB
/* This file is part of KNemo |
|
Copyright (C) 2006 Percy Leonhardt <percy@eris23.de> |
|
|
|
KNemo 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. |
|
|
|
KNemo 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 <tqtable.h> |
|
#include <tqdatetime.h> |
|
#include <tqpushbutton.h> |
|
|
|
#include <klocale.h> |
|
#include <kio/global.h> |
|
#include <kiconloader.h> |
|
#include <kcalendarsystem.h> |
|
|
|
#include "data.h" |
|
#include "interface.h" |
|
#include "interfacestatistics.h" |
|
#include "interfacestatisticsdialog.h" |
|
|
|
/* |
|
* I assume that the last entry in each table is also the current. This will fail |
|
* if we walk back in time, so better not play with the system date... |
|
*/ |
|
|
|
InterfaceStatisticsDialog::InterfaceStatisticsDialog( Interface* interface, TQWidget* parent, const char* name ) |
|
: InterfaceStatisticsDlg( parent, name ), |
|
mInterface( interface ) |
|
{ |
|
setIcon( SmallIcon( "knemo" ) ); |
|
setCaption( interface->getName() + " " + i18n( "Statistics" ) ); |
|
|
|
connect( buttonClearDaily, TQT_SIGNAL( clicked() ), TQT_SIGNAL( clearDailyStatisticsClicked() ) ); |
|
connect( buttonClearMonthly, TQT_SIGNAL( clicked() ), TQT_SIGNAL( clearMonthlyStatisticsClicked() ) ); |
|
connect( buttonClearYearly, TQT_SIGNAL( clicked() ), TQT_SIGNAL( clearYearlyStatisticsClicked() ) ); |
|
} |
|
|
|
InterfaceStatisticsDialog::~InterfaceStatisticsDialog() |
|
{ |
|
} |
|
|
|
void InterfaceStatisticsDialog::updateDays() |
|
{ |
|
TQPtrList<StatisticEntry> dayStatistics = mInterface->getStatistics()->getDayStatistics(); |
|
StatisticEntry* iterator = dayStatistics.first(); |
|
tableDaily->setNumRows( dayStatistics.count() ); |
|
int row = 0; |
|
while ( iterator ) |
|
{ |
|
TQDate date( iterator->year, iterator->month, iterator->day ); |
|
tableDaily->verticalHeader()->setLabel( row, TDEGlobal::locale()->formatDate( date, true ) ); |
|
tableDaily->setText( row, 0, TDEIO::convertSize( iterator->txBytes ) ); |
|
tableDaily->setText( row, 1, TDEIO::convertSize( iterator->rxBytes ) ); |
|
tableDaily->setText( row, 2, TDEIO::convertSize( iterator->rxBytes + iterator->txBytes ) ); |
|
row++; |
|
iterator = dayStatistics.next(); |
|
} |
|
|
|
tableDaily->setCurrentCell( row - 1, 2 ); |
|
tableDaily->ensureCellVisible( row - 1, 2 ); |
|
} |
|
|
|
void InterfaceStatisticsDialog::updateMonths() |
|
{ |
|
TQPtrList<StatisticEntry> monthStatistics = mInterface->getStatistics()->getMonthStatistics(); |
|
StatisticEntry* iterator = monthStatistics.first(); |
|
tableMonthly->setNumRows( monthStatistics.count() ); |
|
int row = 0; |
|
while ( iterator ) |
|
{ |
|
const KCalendarSystem* calendar = TDEGlobal::locale()->calendar(); |
|
TQString monthName = calendar->monthName( iterator->month, iterator->year ) + " " + TQString::number( iterator->year ); |
|
tableMonthly->verticalHeader()->setLabel( row, monthName ); |
|
tableMonthly->setText( row, 0, TDEIO::convertSize( iterator->txBytes ) ); |
|
tableMonthly->setText( row, 1, TDEIO::convertSize( iterator->rxBytes ) ); |
|
tableMonthly->setText( row, 2, TDEIO::convertSize( iterator->rxBytes + iterator->txBytes ) ); |
|
row++; |
|
iterator = monthStatistics.next(); |
|
} |
|
|
|
tableMonthly->setCurrentCell( row - 1, 2 ); |
|
tableMonthly->ensureCellVisible( row - 1, 2 ); |
|
} |
|
|
|
void InterfaceStatisticsDialog::updateYears() |
|
{ |
|
TQPtrList<StatisticEntry> yearStatistics = mInterface->getStatistics()->getYearStatistics(); |
|
StatisticEntry* iterator = yearStatistics.first(); |
|
tableYearly->setNumRows( yearStatistics.count() ); |
|
int row = 0; |
|
while ( iterator ) |
|
{ |
|
tableYearly->verticalHeader()->setLabel( row, TQString::number( iterator->year ) ); |
|
tableYearly->setText( row, 0, TDEIO::convertSize( iterator->txBytes ) ); |
|
tableYearly->setText( row, 1, TDEIO::convertSize( iterator->rxBytes ) ); |
|
tableYearly->setText( row, 2, TDEIO::convertSize( iterator->rxBytes + iterator->txBytes ) ); |
|
row++; |
|
iterator = yearStatistics.next(); |
|
} |
|
|
|
tableYearly->setCurrentCell( row - 1, 2 ); |
|
tableYearly->ensureCellVisible( row - 1, 2 ); |
|
} |
|
|
|
void InterfaceStatisticsDialog::updateCurrentEntry() |
|
{ |
|
int lastRow = tableDaily->numRows() - 1; |
|
const StatisticEntry* currentEntry = mInterface->getStatistics()->getCurrentDay(); |
|
tableDaily->setText( lastRow, 0, TDEIO::convertSize( currentEntry->txBytes ) ); |
|
tableDaily->setText( lastRow, 1, TDEIO::convertSize( currentEntry->rxBytes ) ); |
|
tableDaily->setText( lastRow, 2, TDEIO::convertSize( currentEntry->rxBytes + currentEntry->txBytes ) ); |
|
|
|
lastRow = tableMonthly->numRows() - 1; |
|
currentEntry = mInterface->getStatistics()->getCurrentMonth(); |
|
tableMonthly->setText( lastRow, 0, TDEIO::convertSize( currentEntry->txBytes ) ); |
|
tableMonthly->setText( lastRow, 1, TDEIO::convertSize( currentEntry->rxBytes ) ); |
|
tableMonthly->setText( lastRow, 2, TDEIO::convertSize( currentEntry->rxBytes + currentEntry->txBytes ) ); |
|
|
|
lastRow = tableYearly->numRows() - 1; |
|
currentEntry = mInterface->getStatistics()->getCurrentYear(); |
|
tableYearly->setText( lastRow, 0, TDEIO::convertSize( currentEntry->txBytes ) ); |
|
tableYearly->setText( lastRow, 1, TDEIO::convertSize( currentEntry->rxBytes ) ); |
|
tableYearly->setText( lastRow, 2, TDEIO::convertSize( currentEntry->rxBytes + currentEntry->txBytes ) ); |
|
} |
|
|
|
#include "interfacestatisticsdialog.moc"
|
|
|