mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-07-22 07:28:04 +02:00
71 lines
1.7 KiB
C++
71 lines
1.7 KiB
C++
// rdlogin.h
|
|
//
|
|
// The User Login/Logout Utility for Rivendell.
|
|
//
|
|
// (C) Copyright 2002-2019 Fred Gleason <fredg@paravelsystems.com>
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License version 2 as
|
|
// published by the Free Software Foundation.
|
|
//
|
|
// This program 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 General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public
|
|
// License along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
//
|
|
|
|
#ifndef RDLOGIN_H
|
|
#define RDLOGIN_H
|
|
|
|
#include <qcombobox.h>
|
|
#include <qlabel.h>
|
|
#include <qlineedit.h>
|
|
#include <qpushbutton.h>
|
|
|
|
#include <rdwidget.h>
|
|
|
|
#define RDLOGIN_USAGE "\n"
|
|
|
|
class MainWidget : public RDWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MainWidget(RDConfig *c,QWidget *parent=0);
|
|
~MainWidget();
|
|
QSize sizeHint() const;
|
|
QSizePolicy sizePolicy() const;
|
|
|
|
private slots:
|
|
void connectedData(bool state);
|
|
void userData();
|
|
void loginData();
|
|
void logoutData();
|
|
void cancelData();
|
|
void quitMainWidget();
|
|
|
|
protected:
|
|
void resizeEvent(QResizeEvent *e);
|
|
|
|
private:
|
|
Q_UINT16 login_ripc_hostport;
|
|
QLabel *login_label;
|
|
QLabel *login_username_label;
|
|
QComboBox *login_username_box;
|
|
QLineEdit *login_username_edit;
|
|
QLabel *login_password_label;
|
|
QLineEdit *login_password_edit;
|
|
QPixmap *login_rivendell_map;
|
|
QPushButton *login_button;
|
|
QPushButton *logout_button;
|
|
QPushButton *cancel_button;
|
|
int login_user_width;
|
|
bool login_resize;
|
|
};
|
|
|
|
|
|
#endif // RDLOGIN_H
|