2022-04-04 04:23:52 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2022 F4EXB //
|
|
|
|
// written by Edouard Griffiths //
|
|
|
|
// //
|
|
|
|
// 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 as 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 V3 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 SDRGUI_GUI_WORKSPACE_H_
|
|
|
|
#define SDRGUI_GUI_WORKSPACE_H_
|
|
|
|
|
|
|
|
#include <QDockWidget>
|
|
|
|
|
|
|
|
#include "export.h"
|
|
|
|
#include "featureadddialog.h"
|
|
|
|
|
|
|
|
class QHBoxLayout;
|
|
|
|
class QLabel;
|
|
|
|
class QPushButton;
|
|
|
|
class QStringList;
|
|
|
|
class QMdiArea;
|
|
|
|
class QMdiSubWindow;
|
|
|
|
class QFrame;
|
|
|
|
|
|
|
|
class SDRGUI_API Workspace : public QDockWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
Workspace(int index, QWidget *parent = nullptr, Qt::WindowFlags flags = Qt::WindowFlags());
|
|
|
|
~Workspace();
|
|
|
|
|
|
|
|
int getIndex() const { return m_index; }
|
2022-04-25 17:48:14 -04:00
|
|
|
void setIndex(int index);
|
2022-04-04 04:23:52 -04:00
|
|
|
void resetAvailableFeatures() { m_featureAddDialog.resetFeatureNames(); }
|
|
|
|
void addAvailableFeatures(const QStringList& featureNames) { m_featureAddDialog.addFeatureNames(featureNames); }
|
|
|
|
void addToMdiArea(QMdiSubWindow *sub);
|
|
|
|
void removeFromMdiArea(QMdiSubWindow *sub);
|
2022-04-05 10:26:57 -04:00
|
|
|
int getNumberOfSubWindows() const;
|
|
|
|
QByteArray saveMdiGeometry();
|
|
|
|
void restoreMdiGeometry(const QByteArray& blob);
|
2022-04-25 17:48:14 -04:00
|
|
|
QList<QMdiSubWindow *> getSubWindowList() const;
|
2022-04-26 13:44:18 -04:00
|
|
|
void adjustSubWindowsAfterRestore();
|
2022-04-04 04:23:52 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
int m_index;
|
|
|
|
QPushButton *m_addRxDeviceButton;
|
|
|
|
QPushButton *m_addTxDeviceButton;
|
|
|
|
QPushButton *m_addMIMODeviceButton;
|
|
|
|
QFrame *m_vline1;
|
|
|
|
QPushButton *m_addFeatureButton;
|
|
|
|
QPushButton *m_featurePresetsButton;
|
|
|
|
QFrame *m_vline2;
|
|
|
|
QPushButton *m_cascadeSubWindows;
|
|
|
|
QPushButton *m_tileSubWindows;
|
|
|
|
QWidget *m_titleBar;
|
|
|
|
QHBoxLayout *m_titleBarLayout;
|
|
|
|
QLabel *m_titleLabel;
|
|
|
|
QPushButton *m_normalButton;
|
|
|
|
QPushButton *m_closeButton;
|
|
|
|
FeatureAddDialog m_featureAddDialog;
|
|
|
|
QMdiArea *m_mdi;
|
|
|
|
|
|
|
|
private slots:
|
2022-04-07 10:32:03 -04:00
|
|
|
void addRxDeviceClicked();
|
|
|
|
void addTxDeviceClicked();
|
|
|
|
void addMIMODeviceClicked();
|
2022-04-04 04:23:52 -04:00
|
|
|
void addFeatureDialog();
|
|
|
|
void featurePresetsDialog();
|
|
|
|
void cascadeSubWindows();
|
|
|
|
void tileSubWindows();
|
|
|
|
void addFeatureEmitted(int featureIndex);
|
|
|
|
void toggleFloating();
|
|
|
|
|
|
|
|
signals:
|
2022-04-07 10:32:03 -04:00
|
|
|
void addRxDevice(Workspace *inWorkspace, int deviceIndex);
|
|
|
|
void addTxDevice(Workspace *inWorkspace, int deviceIndex);
|
|
|
|
void addMIMODevice(Workspace *inWorkspace, int deviceIndex);
|
2022-04-04 04:23:52 -04:00
|
|
|
void addFeature(Workspace*, int);
|
|
|
|
void featurePresetsDialogRequested(QPoint, Workspace*);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // SDRGUI_GUI_WORKSPACE_H_
|