Kage Studio 0.7.240121
A Simple Free and Open Source 2D Animation Software
Loading...
Searching...
No Matches
layers.h
Go to the documentation of this file.
1/*
2 * Kage Studio - a simple free and open source vector-based 2D animation software
3 * Copyright (C) 2011~2024 Mj Mendoza IV
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18 * MA 02110-1301, USA. Or, see <https://www.gnu.org/licenses/>.
19 *
20 */
21
22#ifndef GTKMM_KAGE_LAYERS_UI_H
23 #define GTKMM_KAGE_LAYERS_UI_H
24
25 #include <gtkmm/drawingarea.h>
26 #include <time.h>
27 #include "../vectordatamanager.h"
28 #include "../data/point.h"
30 #include "../../label_rename.h"
31
32 class Kage;
33
34 class KageLayersUI : public Gtk::DrawingArea {
35 public:
36 static bool mouseIsDown;
37 static Glib::RefPtr<Gdk::Pixbuf> imageVISIBLE_TRUE;
38 static Glib::RefPtr<Gdk::Pixbuf> imageVISIBLE_FALSE;
39 static Glib::RefPtr<Gdk::Pixbuf> imageLOCKED_TRUE;
40 static Glib::RefPtr<Gdk::Pixbuf> imageLOCKED_FALSE;
41
42 Glib::RefPtr<Gdk::Window> window;
43
44 KageLayersUI(Kage *p_kage);
45 virtual ~KageLayersUI();
46
47 void setFocus();
48 void renderStage();
49
50 //unsigned int layerID;
51
52 void forceRender();
53 virtual bool invalidateToRender();
54
55 static bool _gotFocus;
56
57 void addEventsListener();
58 protected:
60 //Override default signal handler:
61 virtual bool on_expose_event(GdkEventExpose *e);
62 virtual bool on_key_press_event(GdkEventKey *e) override;
63 virtual bool on_key_release_event(GdkEventKey *e) override;
64 virtual bool on_event(GdkEvent *e) override;
65
66 bool on_draw(const Cairo::RefPtr<Cairo::Context>& p_context) override;
67
70 };
71#endif // GTKMM_KAGE_LAYERS_UI_H
Definition kage.h:74
KageLayersUI(Kage *p_kage)
Definition layers.cpp:38
PointData draw1
Definition layers.h:68
virtual bool invalidateToRender()
Definition layers.cpp:207
static Glib::RefPtr< Gdk::Pixbuf > imageLOCKED_FALSE
Definition layers.h:40
virtual bool on_key_release_event(GdkEventKey *e) override
Definition layers.cpp:79
PointData draw2
Definition layers.h:69
static Glib::RefPtr< Gdk::Pixbuf > imageLOCKED_TRUE
Definition layers.h:39
static bool _gotFocus
Definition layers.h:55
void addEventsListener()
Definition layers.cpp:63
Kage * _kage
Definition layers.h:59
void renderStage()
Definition layers.cpp:341
Glib::RefPtr< Gdk::Window > window
Definition layers.h:42
virtual bool on_expose_event(GdkEventExpose *e)
Definition layers.cpp:89
bool on_draw(const Cairo::RefPtr< Cairo::Context > &p_context) override
Definition layers.cpp:229
static bool mouseIsDown
Definition layers.h:36
static Glib::RefPtr< Gdk::Pixbuf > imageVISIBLE_FALSE
Definition layers.h:38
void setFocus()
Definition layers.cpp:334
virtual ~KageLayersUI()
Definition layers.cpp:59
virtual bool on_event(GdkEvent *e) override
Definition layers.cpp:100
virtual bool on_key_press_event(GdkEventKey *e) override
Definition layers.cpp:71
static Glib::RefPtr< Gdk::Pixbuf > imageVISIBLE_TRUE
Definition layers.h:37
void forceRender()
Definition layers.cpp:201
Definition point.h:27