2010-10-22 03:34:26 +00:00
|
|
|
/*
|
|
|
|
Object Viewer Qt
|
|
|
|
Copyright (C) 2010 Dzmitry Kamiahin <dnk-88@tut.by>
|
|
|
|
|
|
|
|
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 GRAPHICS_VIEWPORT_H
|
|
|
|
#define GRAPHICS_VIEWPORT_H
|
|
|
|
|
|
|
|
#include <nel/misc/types_nl.h>
|
|
|
|
#include <nel/misc/event_emitter.h>
|
|
|
|
|
|
|
|
// STL includes
|
|
|
|
|
|
|
|
// Qt includes
|
|
|
|
#include <QtOpenGL/QGLWidget>
|
|
|
|
#include <QtGui/QWidget>
|
|
|
|
|
|
|
|
// NeL includes
|
|
|
|
|
|
|
|
// Project includes
|
|
|
|
|
2010-10-31 15:50:56 +00:00
|
|
|
/* TODO every platform should use QWidget */
|
|
|
|
#if defined(NL_OS_WINDOWS)
|
2010-10-22 03:34:26 +00:00
|
|
|
typedef QWidget QNLWidget;
|
2010-10-31 15:50:56 +00:00
|
|
|
#elif defined(NL_OS_MAC)
|
|
|
|
typedef QWidget QNLWidget;
|
|
|
|
#elif defined(NL_OS_UNIX)
|
2010-10-22 03:34:26 +00:00
|
|
|
typedef QGLWidget QNLWidget;
|
|
|
|
#endif // NL_OS_UNIX
|
|
|
|
|
|
|
|
class QAction;
|
|
|
|
|
2010-11-26 11:54:06 +00:00
|
|
|
namespace NLQT
|
|
|
|
{
|
2010-10-22 03:34:26 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
@class CGraphicsViewport
|
|
|
|
@brief Responsible for interaction between Qt and NeL. Initializes CObjectViewer, CParticleEditor and CVegetableEditor subsystem.
|
|
|
|
*/
|
2011-01-21 10:05:04 +00:00
|
|
|
class CGraphicsViewport : public QNLWidget, public NLMISC::IEventEmitter
|
2010-10-22 03:34:26 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
CGraphicsViewport(QWidget *parent);
|
|
|
|
virtual ~CGraphicsViewport();
|
|
|
|
|
2011-09-01 22:29:19 +00:00
|
|
|
virtual QPaintEngine *paintEngine() const
|
2010-11-26 11:54:06 +00:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-10-22 03:34:26 +00:00
|
|
|
|
|
|
|
void init();
|
|
|
|
void release();
|
|
|
|
|
|
|
|
QAction *createSaveScreenshotAction(QObject *parent);
|
|
|
|
QAction *createSetBackgroundColor(QObject *parent);
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void saveScreenshot();
|
|
|
|
void setBackgroundColor();
|
2010-11-26 11:54:06 +00:00
|
|
|
|
2010-10-22 03:34:26 +00:00
|
|
|
void submitEvents(NLMISC::CEventServer &server, bool allWindows) { }
|
|
|
|
void emulateMouseRawMode(bool) { }
|
2010-11-26 11:54:06 +00:00
|
|
|
|
2010-10-22 03:34:26 +00:00
|
|
|
protected:
|
|
|
|
virtual void resizeEvent(QResizeEvent *resizeEvent);
|
2010-11-26 11:54:06 +00:00
|
|
|
|
2010-10-31 15:50:56 +00:00
|
|
|
#if defined(NL_OS_WINDOWS)
|
2010-12-04 12:03:31 +00:00
|
|
|
virtual bool winEvent(MSG *message, long *result);
|
2010-10-31 15:50:56 +00:00
|
|
|
#elif defined(NL_OS_MAC)
|
|
|
|
virtual bool macEvent(EventHandlerCallRef caller, EventRef event);
|
|
|
|
#elif defined(NL_OS_UNIX)
|
2010-10-22 03:34:26 +00:00
|
|
|
virtual bool x11Event(XEvent *event);
|
|
|
|
#endif
|
2010-11-26 11:54:06 +00:00
|
|
|
|
2010-10-22 03:34:26 +00:00
|
|
|
private:
|
|
|
|
CGraphicsViewport(const CGraphicsViewport &);
|
|
|
|
CGraphicsViewport &operator=(const CGraphicsViewport &);
|
2010-11-26 11:54:06 +00:00
|
|
|
|
2010-10-22 03:34:26 +00:00
|
|
|
}; /* class CGraphicsViewport */
|
|
|
|
|
|
|
|
} /* namespace NLQT */
|
|
|
|
|
|
|
|
|
|
|
|
#endif // GRAPHICS_VIEWPORT_H
|