mirror of
https://github.com/vicr123/theshell.git
synced 2025-01-23 04:11:49 -05:00
225 lines
5.2 KiB
C++
225 lines
5.2 KiB
C++
/****************************************
|
|
*
|
|
* theShell - Desktop Environment
|
|
* Copyright (C) 2017 Victor Tran
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* *************************************/
|
|
|
|
#ifndef MENU_H
|
|
#define MENU_H
|
|
|
|
#include <QDialog>
|
|
#include <QFocusEvent>
|
|
#include <QTimer>
|
|
#include <tpropertyanimation.h>
|
|
#include <QList>
|
|
#include <QListWidgetItem>
|
|
#include <QPaintEvent>
|
|
#include <QDrag>
|
|
#include <QCommandLinkButton>
|
|
#include <QStyledItemDelegate>
|
|
#include <systemd/sd-login.h>
|
|
#include "endsessionwait.h"
|
|
#include "mainwindow.h"
|
|
#include "thewaveworker.h"
|
|
#include "dbusevents.h"
|
|
#include "tutorialwindow.h"
|
|
#include "bthandsfree.h"
|
|
#include <QFutureWatcher>
|
|
#include "apps/appslistmodel.h"
|
|
|
|
#undef KeyPress
|
|
|
|
class theWaveWorker;
|
|
|
|
class theWaveFrame : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(QString backupText READ backupText WRITE setBackupText)
|
|
public:
|
|
explicit theWaveFrame(QWidget *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
QString backupText();
|
|
void setBackupText(QString text);
|
|
private:
|
|
QPoint startPosition;
|
|
void mousePressEvent(QMouseEvent *event);
|
|
void mouseMoveEvent(QMouseEvent *event);
|
|
QString bText;
|
|
};
|
|
|
|
namespace Ui {
|
|
class Menu;
|
|
}
|
|
|
|
class Menu : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(QRect geometry READ geometry WRITE setGeometry)
|
|
|
|
public:
|
|
explicit Menu(BTHandsfree* bt, QWidget *parent = 0);
|
|
~Menu();
|
|
void setGeometry(int x, int y, int w, int h);
|
|
void setGeometry(QRect geometry);
|
|
|
|
void show(bool openTotheWave = false, bool startListening = false);
|
|
void close();
|
|
|
|
QFrame* theWaveFrame;
|
|
|
|
signals:
|
|
void menuClosing();
|
|
|
|
void thewave_processText(QString text, bool isText = false);
|
|
|
|
void thewave_sayLaunchApp(QString app);
|
|
|
|
void thewave_sayLaunchApp_disambiguation(QStringList apps);
|
|
|
|
void thewaveBegin();
|
|
|
|
void thewaveStop();
|
|
|
|
void currentSettingChanged(bool isOn);
|
|
|
|
public slots:
|
|
void collapse();
|
|
|
|
void uncollapse();
|
|
|
|
private slots:
|
|
void checkForclose();
|
|
|
|
void on_pushButton_clicked();
|
|
|
|
void on_pushButton_2_clicked();
|
|
|
|
void on_commandLinkButton_clicked();
|
|
|
|
void on_commandLinkButton_2_clicked();
|
|
|
|
void on_commandLinkButton_3_clicked();
|
|
|
|
void on_lineEdit_textEdited(const QString &arg1);
|
|
|
|
bool eventFilter(QObject *object, QEvent *event);
|
|
|
|
void on_lineEdit_returnPressed();
|
|
|
|
void on_pushButton_3_clicked();
|
|
|
|
void on_commandLinkButton_5_clicked();
|
|
|
|
void on_commandLinkButton_7_clicked();
|
|
|
|
void on_commandLinkButton_8_clicked();
|
|
|
|
void on_activateTheWave_clicked();
|
|
|
|
void on_closetheWaveButton_clicked();
|
|
|
|
void showCallFrame(bool emergency);
|
|
|
|
void resetFrames();
|
|
|
|
void showMessageFrame();
|
|
|
|
void showHelpFrame();
|
|
|
|
void showWikipediaFrame(QString title, QString text);
|
|
|
|
void thewave_launchapp(QString app);
|
|
|
|
void on_thewave_line_returnPressed();
|
|
|
|
void on_closetheWaveButton_2_clicked();
|
|
|
|
void on_thewave_launch_launchapp_clicked();
|
|
|
|
void thewave_outputSpeech(QString speech);
|
|
|
|
void showFlightFrame(QString flight);
|
|
|
|
void thewaveLoudnessChanged(qreal loudness);
|
|
|
|
void on_commandLinkButton_6_clicked();
|
|
|
|
void on_commandLinkButton_4_clicked();
|
|
|
|
void on_listentheWave_clicked();
|
|
|
|
void on_thewave_launch_disambiguation_itemClicked(QListWidgetItem *item);
|
|
|
|
void showSettingFrame(QIcon icon, QString text, bool isOn);
|
|
|
|
void on_thewaveSettingsFrame_Switch_toggled(bool checked);
|
|
|
|
void showMathematicsFrame(QString expression, QString answer);
|
|
|
|
void showMediaFrame(QPixmap art, QString title, QString artist, bool isPlaying);
|
|
|
|
void on_thewaveMedia_Next_clicked();
|
|
|
|
void on_thewaveMedia_Play_clicked();
|
|
|
|
void on_thewaveMedia_Back_clicked();
|
|
|
|
void on_exitButton_clicked();
|
|
|
|
void on_fakeEndButton_clicked();
|
|
|
|
void on_helpButton_clicked();
|
|
|
|
void on_reportBugButton_clicked();
|
|
|
|
void on_appsListView_clicked(const QModelIndex &index);
|
|
|
|
void on_appsListView_customContextMenuRequested(const QPoint &pos);
|
|
|
|
private:
|
|
Ui::Menu *ui;
|
|
|
|
bool checkFocus(QLayout *layout);
|
|
QSettings settings;
|
|
|
|
//QList<App> apps;
|
|
//QList<App> appsShown;
|
|
int pinnedAppsCount = 0;
|
|
|
|
bool doCheckForClose = false;
|
|
bool istheWaveOpen = false;
|
|
|
|
//void closeEvent(QCloseEvent *event);
|
|
void paintEvent(QPaintEvent* event);
|
|
void changeEvent(QEvent* event);
|
|
|
|
void mousePressEvent(QMouseEvent* event);
|
|
void mouseMoveEvent(QMouseEvent* event);
|
|
void mouseReleaseEvent(QMouseEvent* event);
|
|
|
|
void reject();
|
|
|
|
theWaveWorker* waveWorker;
|
|
BTHandsfree* bt;
|
|
bool isListening = false;
|
|
bool istheWaveReady = false;
|
|
};
|
|
|
|
#endif // MENU_H
|