OpenLCP/example/sACN Explorer/multiversewindow.h

67 lines
2.0 KiB
C
Raw Normal View History

2021-08-12 13:13:00 -04:00
/*
2021-09-06 12:54:28 -04:00
multiverseview.h
2021-08-12 13:13:00 -04:00
Copyright (c) 2021 Kevin Matz (kevin.matz@gmail.com)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#pragma once
2021-09-08 09:40:27 -04:00
#include "multiversemodel.h"
2021-09-06 12:54:28 -04:00
#include "qsacnnode.h"
#include "universewindow.h"
2021-08-12 13:13:00 -04:00
2021-09-08 09:40:27 -04:00
#include <QMainWindow>
#include <QSortFilterProxyModel>
2021-09-06 12:54:28 -04:00
QT_BEGIN_NAMESPACE
2021-09-08 09:40:27 -04:00
namespace Ui
{
class MultiverseWindow;
2021-09-06 12:54:28 -04:00
}
QT_END_NAMESPACE
2021-08-12 13:13:00 -04:00
2021-09-08 09:40:27 -04:00
/**
* @brief The MultiverseView class
*/
class MultiverseWindow
2021-09-06 12:54:28 -04:00
: public QMainWindow
2021-08-12 13:13:00 -04:00
{
2021-09-06 12:54:28 -04:00
Q_OBJECT
2021-08-12 13:13:00 -04:00
public:
explicit MultiverseWindow(QWidget *parent = nullptr,
QSacnNode* node = nullptr);
virtual ~MultiverseWindow();
2021-08-25 00:23:11 -04:00
public slots:
void selectionChanged(const QModelIndex &current, const QModelIndex &previous);
2021-09-08 09:40:27 -04:00
void createContextMenu(const QPoint &pos);
2021-09-06 22:01:12 -04:00
void createEditor(const QModelIndex &index);
void showUacnEditor();
2021-09-06 12:54:28 -04:00
private:
Ui::MultiverseWindow *ui;
2021-09-06 22:01:12 -04:00
QSacnNode * node;
2021-09-08 09:40:27 -04:00
MultiverseModel * model;
QSortFilterProxyModel *sortProxy;
2022-12-03 21:21:08 -05:00
QSet<UniverseWindow*> mInspectors;
2021-08-12 13:13:00 -04:00
};