QTfrontend/ui/dialog/bandialog.h
author nemo
Thu, 24 Oct 2013 21:18:22 -0400
changeset 9577 9577634bd284
parent 8434 4821897a0f10
permissions -rw-r--r--
I can't find any reason why the event filtering was halting further event handling w/ a true here. In any case removing it fixes bug #658

#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