2021-03-25 05:00:19 -07:00
|
|
|
#ifndef APPS_H
|
|
|
|
#define APPS_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include <savedwords.h>
|
|
|
|
#include <calendarapp.h>
|
2021-04-29 20:36:25 -07:00
|
|
|
#include <koboxappsdialog.h>
|
2021-04-30 09:49:33 -07:00
|
|
|
#include <generaldialog.h>
|
2021-03-25 05:00:19 -07:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class apps;
|
|
|
|
}
|
|
|
|
|
|
|
|
class apps : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit apps(QWidget *parent = nullptr);
|
|
|
|
~apps();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_scribbleLaunchBtn_clicked();
|
|
|
|
void exitSlot();
|
|
|
|
void on_lightmapsLaunchBtn_clicked();
|
|
|
|
void on_savedWordsLaunchBtn_clicked();
|
|
|
|
void on_calendarLaunchBtn_clicked();
|
2021-04-13 07:23:12 -07:00
|
|
|
void on_calculatorLaunchBtn_clicked();
|
2021-03-25 05:00:19 -07:00
|
|
|
|
2021-04-29 20:36:25 -07:00
|
|
|
void on_koboxAppsOpenButton_clicked();
|
|
|
|
|
2021-03-25 05:00:19 -07:00
|
|
|
private:
|
|
|
|
Ui::apps *ui;
|
|
|
|
savedwords *savedWordsWindow;
|
|
|
|
calendarApp *calendarWindow;
|
2021-04-29 20:36:25 -07:00
|
|
|
koboxAppsDialog *koboxAppsDialogWindow;
|
2021-03-25 05:00:19 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // APPS_H
|