summaryrefslogtreecommitdiffstats
path: root/src/knutupsdata.h
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/knutupsdata.h
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/knutupsdata.h')
-rw-r--r--src/knutupsdata.h161
1 files changed, 161 insertions, 0 deletions
diff --git a/src/knutupsdata.h b/src/knutupsdata.h
new file mode 100644
index 0000000..e258227
--- /dev/null
+++ b/src/knutupsdata.h
@@ -0,0 +1,161 @@
+/***************************************************************************
+ knutupsdata.h - description
+ -------------------
+ begin : Tue Aug 21 2001
+ copyright : (C) 2001 by Daniel Prynych
+ email : Daniel@prynych.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. *
+ * *
+ ***************************************************************************/
+
+#ifndef KNUTUPSDATA_H
+#define KNUTUPSDATA_H
+
+#include "knutconst.h"
+#include "knutanalog.h"
+
+#include <qstring.h>
+#include <qvaluelist.h>
+
+class QString;
+
+/**
+ *@author Daniel Prynych
+ */
+
+
+
+ /**
+ * Trida obsahuje data o UPS-kach,
+ * nazev, adresu port, protokol, promenne atd.
+ * Class includes data about UPSes like name. address, port, protocol, variables ...
+ *
+ * @author Daniel Prynych
+ * @short Information about UPS
+ * @version 0.4
+ **/
+class KNutUpsData {
+
+
+public:
+
+
+struct upsRecordDef { //include information about one UPS
+ QString name; // name
+ QString upsName; // name of UPSky <> mojeups
+ QString upsAddress; // address of UPS <> muj.pc.cz
+ long delay; // time between read date from UPS
+ unsigned short port; // port for connecting server
+ QString userName;
+ QString password;
+ bool savePassword; //save password into configuration
+ int upsVarCode[knc::NumberOfVars];
+ };
+
+
+
+ /**
+ * Konstruktor
+ *
+ * @since 0.3
+ **/
+ KNutUpsData();
+
+ /**
+ * Destruktor
+ *
+ * @since 0.3
+ **/
+ ~KNutUpsData();
+
+ /**
+ * Adds record
+ * Prida zaznam.
+ *
+ * @param upsRecord are data of record in structure of upsRecordStruct.
+ * @param upsRecord jsou data zaznamu ve strukture upsRecordStruct.
+ * @since 0.4
+ **/
+ void add (const upsRecordDef upsRecord);
+
+ /**
+ * Rewrites record
+ * Prepise zaznam.
+ *
+ * @param index Describes order number od record.
+ * @param index Udava poradove cislo zaznamu..
+ * @param upsRecord are data of record in structure of upsRecordStruct.
+ * @param upsRecord jsou data zaznamu ve strukture upsRecordStruct.
+ * @since 0.4
+ **/
+ void put (const int index, const upsRecordDef upsRecord );
+
+ /**
+ * Returns record.
+ * Vrati zaznam.
+ *
+ * @param index Describes order number od record.
+ * @param index Udava poradove cislo zaznamu.
+ * @param upsRecord are data of record in structure upsRecordStruct.
+ * @param upsRecord jsou data zaznamu ve strukture upsRecordStruct.
+ *
+ * @since 0.4
+ **/
+ void get (const int index, upsRecordDef& upsRecord );
+
+ /**
+ * Returns name of record.
+ * Vrati jmeno zaznamu.
+ *
+ * @param index Describes order number od record.
+ * @param index Udava poradove cislo zaznamu.
+ * @since 0.3
+ **/
+ QString getName (const int index);
+
+ /**
+ * Deletes record;
+ * Zrusi zaznam.
+ *
+ * @param index Describes order number od record.
+ * @param index Udava poradove cislo zaznamu.
+ *
+ * @since 0.3
+ **/
+ void deleteName (const int index);
+
+ /**
+ * Returns count of records
+ * Vrati pocet zaznamu.
+ *
+ * @since 0.3
+ **/
+ int getCount ( void );
+
+ /**
+ * Returns pointer on record, when record is not existed returns 0
+ * Vrati ukazatel na zaznam, pokud zaznam neexistuje vrati 0.
+ *
+ * @param name Is name of list.
+ * @param name Je jmeno zaznamu.
+ * @since 0.3
+ **/
+ upsRecordDef* findName (const QString name);
+
+
+
+private:
+ int m_countUpsRecords;
+
+ QValueList<upsRecordDef> m_listRecords;
+};
+
+
+#endif