PageRenderTime 46ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/quassel-0.7.3/src/qtui/coreinfodlg.cpp

#
C++ | 56 lines | 29 code | 8 blank | 19 comment | 0 complexity | b497355276bdc36b21a8cb42cde985a1 MD5 | raw file
Possible License(s): GPL-2.0, GPL-3.0
  1. /***************************************************************************
  2. * Copyright (C) 2005-09 by the Quassel Project *
  3. * devel@quassel-irc.org *
  4. * *
  5. * This program is free software; you can redistribute it and/or modify *
  6. * it under the terms of the GNU General Public License as published by *
  7. * the Free Software Foundation; either version 2 of the License, or *
  8. * (at your option) version 3. *
  9. * *
  10. * This program is distributed in the hope that it will be useful, *
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  13. * GNU General Public License for more details. *
  14. * *
  15. * You should have received a copy of the GNU General Public License *
  16. * along with this program; if not, write to the *
  17. * Free Software Foundation, Inc., *
  18. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
  19. ***************************************************************************/
  20. #include "coreinfodlg.h"
  21. #include <QDateTime>
  22. #include "client.h"
  23. #include "signalproxy.h"
  24. CoreInfoDlg::CoreInfoDlg(QWidget *parent)
  25. : QDialog(parent),
  26. _coreInfo(this)
  27. {
  28. ui.setupUi(this);
  29. connect(&_coreInfo, SIGNAL(initDone()), this, SLOT(coreInfoAvailable()));
  30. Client::signalProxy()->synchronize(&_coreInfo);
  31. }
  32. void CoreInfoDlg::coreInfoAvailable() {
  33. ui.labelCoreVersion->setText(_coreInfo["quasselVersion"].toString());
  34. ui.labelCoreBuildDate->setText(_coreInfo["quasselBuildDate"].toString());
  35. ui.labelClientCount->setNum(_coreInfo["sessionConnectedClients"].toInt());
  36. updateUptime();
  37. startTimer(1000);
  38. }
  39. void CoreInfoDlg::updateUptime() {
  40. QDateTime startTime = _coreInfo["startTime"].toDateTime();
  41. int uptime = startTime.secsTo(QDateTime::currentDateTime().toUTC());
  42. int updays = uptime / 86400; uptime %= 86400;
  43. int uphours = uptime / 3600; uptime %= 3600;
  44. int upmins = uptime / 60; uptime %= 60;
  45. QString uptimeText = tr("%n Day(s)", "", updays)
  46. + tr(" %1:%2:%3 (since %4)").arg(uphours,2,10,QChar('0')).arg(upmins,2,10,QChar('0')).arg(uptime,2,10,QChar('0')).arg(startTime.toLocalTime().toString(Qt::TextDate));
  47. ui.labelUptime->setText(uptimeText);
  48. }