mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-07-19 14:07:04 +00:00
764d13e11d
* From https://github.com/Riateche/toolwindowmanager * It seems superior to the built-in Qt docking as-is, and since it's a few open source files it should be easy to improve with features we might want to match DockingUI functionality. * Programmatic sizing for the default layout seems inflexible, but since that's a one-time thing it's not the end of the world. * There's no auto-hide functionality. * The highlighting of where to drop could be improved, as well as the detection of where to drop (currently it seems to cycle through several possibilities each second rather than having a consistent drop location). * Floating windows could be styled a bit better. * Need to check whether we can have nested docking sections (so the texture viewer e.g. can have its own docks, that won't float or go out of the texture viewer.
92 lines
3.2 KiB
C++
92 lines
3.2 KiB
C++
/*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2014 Pavel Strakhov
|
|
*
|
|
* 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.
|
|
*
|
|
*/
|
|
#ifndef TOOLWINDOWMANAGERAREA_H
|
|
#define TOOLWINDOWMANAGERAREA_H
|
|
|
|
#include <QTabWidget>
|
|
#include <QVariantMap>
|
|
|
|
class ToolWindowManager;
|
|
|
|
/*!
|
|
* \brief The ToolWindowManagerArea class is a tab widget used to store tool windows.
|
|
* It implements dragging of its tab or the whole tab widget.
|
|
*/
|
|
class ToolWindowManagerArea : public QTabWidget {
|
|
Q_OBJECT
|
|
public:
|
|
//! Creates new area.
|
|
explicit ToolWindowManagerArea(ToolWindowManager* manager, QWidget *parent = 0);
|
|
//! Destroys the area.
|
|
virtual ~ToolWindowManagerArea();
|
|
|
|
/*!
|
|
* Add \a toolWindow to this area.
|
|
*/
|
|
void addToolWindow(QWidget* toolWindow);
|
|
|
|
/*!
|
|
* Add \a toolWindows to this area.
|
|
*/
|
|
void addToolWindows(const QList<QWidget*>& toolWindows);
|
|
|
|
/*!
|
|
* Returns a list of all tool windows in this area.
|
|
*/
|
|
QList<QWidget*> toolWindows();
|
|
|
|
protected:
|
|
//! Reimplemented from QTabWidget::mousePressEvent.
|
|
virtual void mousePressEvent(QMouseEvent *);
|
|
//! Reimplemented from QTabWidget::mouseReleaseEvent.
|
|
virtual void mouseReleaseEvent(QMouseEvent *);
|
|
//! Reimplemented from QTabWidget::mouseMoveEvent.
|
|
virtual void mouseMoveEvent(QMouseEvent *);
|
|
//! Reimplemented from QTabWidget::eventFilter.
|
|
virtual bool eventFilter(QObject *object, QEvent *event);
|
|
|
|
private:
|
|
ToolWindowManager* m_manager;
|
|
bool m_dragCanStart; // indicates that user has started mouse movement on QTabWidget
|
|
// that can be considered as dragging it if the cursor will leave
|
|
// its area
|
|
|
|
bool m_tabDragCanStart; // indicates that user has started mouse movement on QTabWidget
|
|
// that can be considered as dragging current tab
|
|
// if the cursor will leave the tab bar area
|
|
|
|
QVariantMap saveState(); // dump contents to variable
|
|
void restoreState(const QVariantMap& data); //restore contents from given variable
|
|
|
|
//check if mouse left tab widget area so that dragging should start
|
|
void check_mouse_move();
|
|
|
|
friend class ToolWindowManager;
|
|
friend class ToolWindowManagerWrapper;
|
|
|
|
};
|
|
|
|
#endif // TOOLWINDOWMANAGERAREA_H
|