moonlight-qt/app/gui/mainwindow.h

31 lines
506 B
C
Raw Normal View History

2018-04-28 22:39:50 +00:00
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
2018-04-28 23:21:30 +00:00
#include <QtWidgets>
2018-04-28 22:39:50 +00:00
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
void on_actionExit_triggered();
2018-04-29 01:18:43 +00:00
void on_newHostBtn_clicked();
void addHostToDisplay(QMap<QString, bool>);
void on_selectHostComboBox_activated(const QString &);
2018-04-28 22:39:50 +00:00
private:
Ui::MainWindow *ui;
2018-04-29 01:18:43 +00:00
2018-04-28 22:39:50 +00:00
};
#endif // MAINWINDOW_H