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.
knutclient/src/knutinstcomms.h

98 lines
2.6 KiB

/***************************************************************************
knutinstcomms.h - description
-------------------
begin : ct ríj 24 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. *
* *
***************************************************************************/
#ifndef KNUTINSTCOMMS_H
#define KNUTINSTCOMMS_H
#include "knutnet.h"
#include <kdialogbase.h>
#include <klineedit.h>
#include <kcombobox.h>
#include <tdelocale.h>
class TQString;
/**
* This class is graphic interface for runinng of instant commands.
* Tato trida je graficke rozhrani pro spusteni okamzitych prikazu.
*
* @author Daniel Prynych
* @short Okamzite prikazy
* @version 0.4
*/
class KNutInstComms : public KDialogBase {
public:
/**
* Construktor - Creates window for select of instant command.
* Konstruktor - vytvori okno pro vyber okamziteho prikazu.
*
* @param uName Determines user name.
* @param password Determines passwprd.
* @param uName Urcuje uzivatelske jmeno.
* @param password Urcuje heslo.
* @param upsNet Je odkaz na instanci tridy KNutNet.
*
* @since 0.4
**/
KNutInstComms(TQString* userName, TQString* userPassword, const TQString uName, const TQString password, KNutNet* const upsNet, TQWidget* parent = 0, const char* name = 0, bool const modal = TRUE);
/**
* Destruktor
*
* @since 0.3
**/
~KNutInstComms();
/**
* Vraci true pokud existuje pripojeni na server a vytvorilo se
* ovladaci okno pro odeslani prikazu.
*
* @since 0.3
**/
bool upsOk (void) { return m_upsConnectOk; };
private slots:
/**
* @internal
*
* Provede akci, da prikaz k provedeni okamziteho prikazu.
*/
virtual void slotOk();
private:
KLineEdit *m_lineEditName;
KLineEdit *m_lineEditPassword;
KComboBox *m_instCommBox;
KNutNet* m_upsNet;
bool m_upsConnectOk;
TQString* m_oldUserName;
TQString* m_oldUserPassword;
};
#endif