summaryrefslogtreecommitdiffstats
path: root/src/knutprintupsvar.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-19 18:17:02 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-19 18:17:02 +0000
commitf867212c1762e156553d039319b904a17f7b563d (patch)
tree461c1a743b3ff8291e03360742dbbfb4cc0087e4 /src/knutprintupsvar.cpp
downloadknutclient-f867212c1762e156553d039319b904a17f7b563d.tar.gz
knutclient-f867212c1762e156553d039319b904a17f7b563d.zip
Added KDE3 version of knutclient
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/knutclient@1092914 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/knutprintupsvar.cpp')
-rw-r--r--src/knutprintupsvar.cpp210
1 files changed, 210 insertions, 0 deletions
diff --git a/src/knutprintupsvar.cpp b/src/knutprintupsvar.cpp
new file mode 100644
index 0000000..bfd09e4
--- /dev/null
+++ b/src/knutprintupsvar.cpp
@@ -0,0 +1,210 @@
+/***************************************************************************
+ knutprintupsvar.cpp - description
+ -------------------
+ begin : St cec 3 2002
+ copyright : (C) 2002 by Daniel Prynych
+ email : Daniel.Prynych@alo.cz
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * 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 "knutprintupsvar.h"
+#include "knutvardata.h"
+
+#include <kmessagebox.h>
+#include <kglobal.h>
+#include <kiconloader.h>
+
+#include <qgroupbox.h>
+#include <qscrollview.h>
+#include <qtooltip.h>
+#include <qlabel.h>
+#include <qframe.h>
+#include <qpixmap.h>
+#include <qstring.h>
+
+
+
+//#include <iostream>
+
+
+// od verze 0.6.0 nebudeme vytvaret vlastni spojeni
+
+KNutPrintUpsVar::KNutPrintUpsVar(KNutNet* const upsNet, const bool useDescription, QWidget* parent, const char* name, const bool modal )
+: KDialogBase(Plain, i18n("Variables"),User1|Cancel,Ok, parent, name, modal, true), myUpsNet(upsNet){
+
+ upsVarDef upsVar;
+ upsICommDef upsIComm;
+ dataVar pointerVar;
+ dataList.clear();
+
+ if (!upsNet) return;
+
+ setButtonText(User1,i18n("Reload Vars"));
+ setName( "knutprintupsvar" );
+ setCaption( i18n("UPS variables") );
+
+ //int error;
+ if (myUpsNet->getState() != KNutNet::Connected) {
+ KNutVarData::showError (KNutNet::NotConnection);
+ upsConnectOk = false;
+ page=0;
+ }
+ else {
+ upsConnectOk = true;
+ countVars=myUpsNet->readNumberVars(KNutNet::AllVars);
+ countRWVars=myUpsNet->readNumberVars(KNutNet::RWVars);
+ countIComms=myUpsNet->readNumberComms();
+
+ KIconLoader *loader = KGlobal::iconLoader();
+ dirPixmap=loader->loadIcon ("folder_open",KIcon::Small,16);
+
+ page = plainPage();
+ QHBoxLayout* upsVarsMainLayout = new QHBoxLayout(page);
+
+ table = new KListView(page);
+ table->setRootIsDecorated(true);
+
+ table->setAllColumnsShowFocus( TRUE );
+ table->setFullWidth ( true );
+
+ table->addColumn( i18n("Name") );
+ table->addColumn( i18n("Value") );
+ if (useDescription)
+ table->addColumn( i18n("Description") );
+ table->setSorting (-1);
+
+ upsVarsMainLayout->addWidget(table);
+
+
+ KListViewItem* myListItem;
+ if (countIComms) {
+
+ ICommList = new KListViewItem( table, i18n("Instant Commands"));
+ ICommList->setOpen(true);
+
+ for (int i=0; i<countIComms; i++) {
+ myUpsNet->readIComm(i+1,upsIComm);
+
+ myListItem = addListItem( ICommList,upsIComm.upsCommName,"");
+ if ((!upsVar.upsDescription.isEmpty()) && useDescription)
+ myListItem->setText(2,upsIComm.upsDescription);
+ }
+ }
+
+ if (countRWVars) {
+ RWVarsList = new KListViewItem( table, i18n("Read/Write Variables"));
+ RWVarsList->setOpen(true);
+ for (int i=0; i<countVars; i++) {
+ myUpsNet->readVars(i+1,upsVar);
+
+ if (!upsVar.upsVarType) {
+ pointerVar.myName=upsVar.upsVarName;
+ pointerVar.myValue = addListItem( RWVarsList,upsVar.upsVarName,upsVar.upsValue);
+
+ if ((!upsVar.upsDescription.isEmpty()) && useDescription)
+ pointerVar.myValue->setText(2,upsVar.upsDescription);
+
+ dataList.push_back(pointerVar);
+ }
+ }
+ }
+
+
+ ROVarsList = new KListViewItem( table, i18n("Read Only Variables"));
+ ROVarsList->setOpen(true);
+
+ for (int i=0; i<countVars; i++) {
+ myUpsNet->readVars(i+1,upsVar);
+ if (upsVar.upsVarType) {
+
+ pointerVar.myName=upsVar.upsVarName;
+ pointerVar.myValue = addListItem( ROVarsList,upsVar.upsVarName,upsVar.upsValue);
+
+ if ((!upsVar.upsDescription.isEmpty()) && useDescription)
+ pointerVar.myValue->setText(2,upsVar.upsDescription);
+
+ dataList.push_back(pointerVar);
+ }
+ }
+
+ connect (this,SIGNAL(user1Clicked()),this,SLOT(slotReloadVars()));
+ } // end else
+ }
+
+
+
+KNutPrintUpsVar::~KNutPrintUpsVar(){
+
+ dataList.clear();
+ if (page) delete page;
+ }
+
+
+void KNutPrintUpsVar::slotReloadVars (void) {
+ upsVarDef upsVar;
+
+ if (myUpsNet->getUpsValues(true) !=0)
+ KNutVarData::showError (myUpsNet->getError());
+ else {
+
+ QValueVector<dataVar>::const_iterator it;
+ for (it = dataList.begin(); it != dataList.end(); it++) {
+ myUpsNet->readVars((*it).myName, upsVar);
+ (*it).myValue->setText (1, upsVar.upsValue);
+ }
+ }
+ }
+
+ KListViewItem* KNutPrintUpsVar::addListItem (KListViewItem* table, QString varName, QString value) {
+ KListViewItem* myListItem;
+ KListViewItem* helpListItem;
+ QString left;
+ int n;
+
+ myListItem = table;
+ do {
+ n = varName.find(".");
+ if (n > 0) {
+ left = varName.left(n);
+ varName = varName.mid(n+1);
+ if (!(helpListItem = existListItem( myListItem,left))) {
+ myListItem = new KListViewItem( myListItem, left);
+ myListItem->setOpen(true);
+ }
+ else myListItem = helpListItem;
+ if (!myListItem->pixmap(0)) myListItem->setPixmap(0,dirPixmap);
+ }
+ else { // end part
+ helpListItem = new KListViewItem( myListItem, varName, value);
+ helpListItem->setOpen(true);
+ return helpListItem;
+ }
+ } while (n > -1);
+ return 0; // for compiler only
+ }
+
+
+ KListViewItem* KNutPrintUpsVar::existListItem (KListViewItem* listItem, QString name) {
+ KListViewItem* myItem;
+
+ if (!(myItem = (KListViewItem *)listItem->firstChild())) return 0l;
+ while (myItem) {
+ if (myItem->text(0) == name) return myItem;
+ myItem = (KListViewItem *)myItem->nextSibling();
+ }
+ return 0l;
+ }
+
+bool KNutPrintUpsVar::upsOk (void) { return upsConnectOk; }
+
+
+#include "knutprintupsvar.moc"
+