Skip to content
OE_display.h 3.15 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.
 *
 */

#ifndef OE_DISPLAY_H
#define OE_DISPLAY_H

#include "OE_utils.h"
#include <stdint.h>
#include <vector>
//#include "OE_controller.h"
#include "OE_document.h"
#include <GLFW/glfw3.h>

class OE_controller;

		class OE_displayStyle
		{
			OE_Color hoopColor;
			OE_Color gridColor;
			OE_Color zeroColor;

			OE_Color curveColor;
			OE_Color curveTangeantColor;
			OE_Color curvePointColor;
			OE_Color curveStartPointColor;

			float curveSize = 1.5;
			float curveTangeantSize = 1.5;
			float curvePointSize = 3.0;
			float curveStartPointSize = 5.0;

			OE_Color stitchLineBeforeCurrentColor;
			OE_Color stitchLineAfterCurrentColor;
			OE_Color stitchPointBeforeCurrentColor;
			OE_Color stitchPointAfterCurrentColor;
			OE_Color stitchStartPointColor;

			float stitchPointSize = 3.0;
			float stitchLineSize = 1.5;
			float stitchStartPointSize = 5.0;

			OE_Color machineStartPointColor;
			OE_Color machineCurPointColor;

			bool drawHoop = true;
			bool drawGrid = true;
			bool drawZero = true;
			bool drawCurves = true;
			bool drawStitches = true;
			bool drawCommands = false;
			bool selectCurves = true;
			bool selectStitches = true;
		};
		
        /** Default constructor */
        OE_display();
		OE_display(OE_document* document,OE_controller* controller);
        /** Default destructor */
        virtual ~OE_display();
		
        virtual bool setDocument(OE_document * document);
        virtual bool setController(OE_controller* controller);
		virtual void mouse_Pos(double x, double y);
		virtual void mouse_Button(int button, int action, int mods);
		virtual void scroll(double xoffset, double yoffset);
		virtual void resize(int width, int height);
		virtual void key(int key, int scancode, int action, int mods);

		vector_2d screenToDocument(vector_2d pos);
		//void drawframe();
		virtual bool draw() = 0;
		virtual void showAll();

        static vector_2d viewPos;
        vector_2d absMouse;
		static float zoom;
        vector_2d mouse;
        vector_2d mouseInit;
		static bool pan;
		static int width, height;

    protected:
		
		
		GLFWwindow* window;
		const GLFWvidmode* mode;
		
		
		OE_document * document = NULL;
		OE_controller* controller = NULL;