2022-06-07 11:55:27 +00:00
|
|
|
// Copyright (C) 2015 The Qt Company Ltd.
|
2024-03-15 08:19:25 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
**
|
|
|
|
** The GLObjectWindow contains a GLBox and three sliders connected to
|
|
|
|
** the GLBox's rotation slots.
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef GLOBJWIN_H
|
|
|
|
#define GLOBJWIN_H
|
|
|
|
|
|
|
|
#include <qwidget.h>
|
|
|
|
|
|
|
|
class GLObjectWindow : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-08-21 11:23:48 +00:00
|
|
|
explicit GLObjectWindow(QWidget *parent = nullptr);
|
2011-04-27 10:05:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|