oksirc/ui.h
Darren VanBuren 851c2f79e3 Separate UI to new file, still not quite complete.
Also fixed code style in files, and settings used by CLion.
2017-07-09 15:17:24 -07:00

24 lines
293 B
C++

#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