Skip to content
OE_display.h 4.35 KiB
Newer Older
/*
 * Copyright (c) 2015 Tricoire Sebastien 3dsman@free.fr
 *
 * This software is provided 'as-is', without any express or implied
 * warranty.  In no event will the authors be held liable for any damages
 * arising from the use of this software.
 *
 * Permission is granted to anyone to use this software for any purpose,
 * including commercial applications, and to alter it and redistribute it
 * freely, subject to the following restrictions:
 *
 * 1. The origin of this software must not be misrepresented; you must not
 * claim that you wrote the original software. If you use this software
 * in a product, an acknowledgment in the product documentation would be
 * appreciated but is not required.
 * 2. Altered source versions must be plainly marked as such, and must not be
 * misrepresented as being the original software.
 * 3. This notice may not be removed or altered from any source distribution.
 *
 */

raoul's avatar
raoul committed
#pragma once
raoul's avatar
raoul committed
#include <qopenglwidget.h>
#include <QOpenGLFunctions_2_0>
raoul's avatar
raoul committed

#include "OE_utils.h"
#include <stdint.h>
#include <vector>
raoul's avatar
raoul committed
#include <QDropEvent>
#include "OE_document.h"
#include "curves/OE_joincurve.h"
#include "curves/OE_subcurve.h"
#include "stitchs/OE_fillstitch.h"
3dsman's avatar
3dsman committed
static const GLuint TOOLSSELID = 0;
static const GLuint STITCHSSELID  = 1;
static const GLuint CURVESSELID = 2;

static const GLuint ZEROID  = 0;
static const GLuint TRANSTOOLID = 1;
static const GLuint MOVETOOLID = 0;
static const GLuint SCALETOOLID = 1;

class OE_controller;

class OE_display : public QOpenGLWidget, protected QOpenGLFunctions_2_0
raoul's avatar
raoul committed
	public:
raoul's avatar
raoul committed

				bool drawHoop = true;
				bool drawGrid = true;
				bool drawZero = true;

				bool drawCurves = true;
				bool drawCurvePoints = false;
				bool drawCurveControls = true;

				bool drawStitches = true;
				bool drawStitchControl = true;

				bool drawCommands = false;
				bool selectCurves = true;
				bool selectStitches = true;


				OE_displayStyle(){}
		};
raoul's avatar
raoul committed
		/** Default constructor */
raoul's avatar
raoul committed
		OE_display(QWidget* parent = Q_NULLPTR, Qt::WindowFlags f = Qt::WindowFlags());
raoul's avatar
raoul committed
		/** Default destructor */
		virtual ~OE_display();
raoul's avatar
raoul committed
		virtual void mouseMoveEvent(QMouseEvent* event) final;
		virtual void mousePressEvent(QMouseEvent* event) final;
		virtual void mouseReleaseEvent(QMouseEvent* event) final;
		virtual void wheelEvent(QWheelEvent* event) final;
		virtual void keyPressEvent(QKeyEvent* event) final;
		virtual void keyReleaseEvent(QKeyEvent* event) final;
raoul's avatar
raoul committed
		virtual void dragEnterEvent(QDragEnterEvent *event) final;
		virtual void dropEvent(QDropEvent *event) final;
raoul's avatar
raoul committed

		void loadFile(std::string file); // TODO put it elsewhere

raoul's avatar
raoul committed
		virtual void initializeGL() Q_DECL_OVERRIDE;
		virtual void resizeGL(int, int) Q_DECL_OVERRIDE;
		virtual void paintGL() Q_DECL_OVERRIDE;

raoul's avatar
raoul committed
		virtual bool setDocument(OE_document* document);
		virtual bool setController(OE_controller* controller);
		virtual bool setDisplayStyle(OE_displayStyle* style);
raoul's avatar
raoul committed

raoul's avatar
raoul committed
		virtual bool mouse_Pos(double x, double y);
		virtual bool mouse_Button(QMouseEvent* event);
		virtual void scroll(double xoffset, double yoffset);
		virtual void resize(int width, int height);
raoul's avatar
raoul committed
		virtual void key(QKeyEvent* event);

		vector_2d screenToDocument(vector_2d pos);
		void pick(std::list<OE_pointcurve*> selectedCurves, std::list<OE_stitchs*> selectedStitches);
raoul's avatar
raoul committed

		//void drawframe();

		void drawTriangle(vector_2d point1, vector_2d point2, float size);
raoul's avatar
raoul committed
		bool drawSelectionTools(bool select=false);
raoul's avatar
raoul committed
		bool drawCurve(OE_curve* curve);
		bool drawStitch(OE_stitchs* stitch, int curpoint);
		bool drawCurveControl(OE_curve* curve, bool select=false);
		bool drawStitchControl(OE_stitchs* stitch, bool select=false);
		void drawJoincurveControl(OE_joincurve* curve, bool select, int index=0);
		void drawFillstitchControl(OE_fillstitch* fillstitch, bool select);
		bool drawCommands();

		virtual bool draw();
		virtual void showAll();
		virtual void zoomSelection();
3dsman's avatar
3dsman committed
		vector_2d viewPos;
raoul's avatar
raoul committed
		vector_2d absMouse;
3dsman's avatar
3dsman committed
		float zoom;
raoul's avatar
raoul committed
		vector_2d mouse;
		vector_2d mouseInit;
3dsman's avatar
3dsman committed
		bool pan;
		int width, height;
raoul's avatar
raoul committed
		OE_displayStyle* style = NULL;
raoul's avatar
raoul committed
	protected:

		static const float moveCrossSize;

		bool changeDpi = true;

raoul's avatar
raoul committed
		/** \brief is displaying controls. */
		bool controls = false;

		BoundingBox selectionBounds;

		OE_curve* selectedCurve = nullptr;
		OE_stitchs* selectedStitch = nullptr;
raoul's avatar
raoul committed

		OE_document * document = NULL;
		OE_controller* controller = NULL;
raoul's avatar
raoul committed