oksirc/ui.h

25 lines
293 B
C
Raw Normal View History

#ifndef OKSIRC_UI_H
#define OKSIRC_UI_H
#include <QtWidgets>
class ui : public QObject {
public:
ui(int, char **);
int exec();
void sendButtonClicked(bool);
QPlainTextEdit *mainLog;
private:
QApplication *app;
QWidget *mainWindow;
QLineEdit *textEntry;
};
#endif //OKSIRC_UI_H