QTfrontend/ui/dialog/bandialog.h
author antonc27 <antonc27@mail.ru>
Fri, 06 Nov 2015 03:21:00 +0100
branchios-revival
changeset 11313 4701700276f5
parent 8330 aaefa587e277
permissions -rw-r--r--
- 'iOS Deployment Target' bump to 8.0 - Xcode projects updated to recommended settings - 'Bundle Identifier' changed back to old one

#ifndef BANDIALOG_H
#define BANDIALOG_H

#include <QDialog>

class QComboBox;
class QRadioButton;
class QLineEdit;

class BanDialog : public QDialog
{
    Q_OBJECT
public:
    explicit BanDialog(QWidget *parent = 0);

    bool byIP();
    int duration();
    QString banId();
    QString reason();

private:
    QRadioButton * rbIP;
    QRadioButton * rbNick;
    QLineEdit * leId;
    QLineEdit * leReason;
    QComboBox * cbTime;

private slots:
    void okClicked();
};

#endif // BANDIALOG_H