26 lines
344 B
C++
26 lines
344 B
C++
#ifndef OKSIRC_UI_H
|
|
#define OKSIRC_UI_H
|
|
|
|
#include <QtWidgets>
|
|
|
|
class ui : public QObject {
|
|
public:
|
|
ui(int, char **);
|
|
|
|
int argc;
|
|
char **argv;
|
|
int exec();
|
|
void sendButtonClicked(bool);
|
|
void returnOnTextEntry();
|
|
|
|
QPlainTextEdit *mainLog;
|
|
|
|
private:
|
|
QApplication *app;
|
|
QWidget *mainWindow;
|
|
QLineEdit *textEntry;
|
|
|
|
};
|
|
|
|
|
|
#endif //OKSIRC_UI_H
|