2017-07-09 15:17:24 -07:00
|
|
|
#ifndef OKSIRC_UI_H
|
|
|
|
#define OKSIRC_UI_H
|
|
|
|
|
|
|
|
#include <QtWidgets>
|
|
|
|
|
|
|
|
class ui : public QObject {
|
|
|
|
public:
|
|
|
|
ui(int, char **);
|
|
|
|
|
|
|
|
int exec();
|
|
|
|
void sendButtonClicked(bool);
|
2017-07-23 02:07:58 -07:00
|
|
|
void returnOnTextEntry();
|
2017-07-09 15:17:24 -07:00
|
|
|
|
|
|
|
QPlainTextEdit *mainLog;
|
|
|
|
|
|
|
|
private:
|
|
|
|
QApplication *app;
|
|
|
|
QWidget *mainWindow;
|
|
|
|
QLineEdit *textEntry;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif //OKSIRC_UI_H
|