Kage Studio 0.7.240121
A Simple Free and Open Source 2D Animation Software
Loading...
Searching...
No Matches
scenes.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_SCENES_UI_H
23 #define GTKMM_KAGE_SCENES_UI_H
24
25 #include <gtkmm/drawingarea.h>
26 #include <time.h>
28 #include "../../label_rename.h"
29
30 class Kage;
31
32 class KageScenesUI : public Gtk::DrawingArea {
33 public:
34 static bool mouseIsDown;
35 static Glib::RefPtr<Gdk::Pixbuf> iconSCENE_KAGE;
36
37 Glib::RefPtr<Gdk::Window> window;
38
39 KageScenesUI(Kage *p_kage);
40 virtual ~KageScenesUI();
41
42 void setFocus();
43 void renderStage();
44
45 void forceRender();
46 virtual bool invalidateToRender();
47
48 static bool _gotFocus;
49
50 void addEventsListener();
51 protected:
53 //Override default signal handler:
54 virtual bool on_expose_event(GdkEventExpose *e);
55 virtual bool on_key_press_event(GdkEventKey *e) override;
56 virtual bool on_key_release_event(GdkEventKey *e) override;
57 virtual bool on_event(GdkEvent *e) override;
58
59 bool on_draw(const Cairo::RefPtr<Cairo::Context>& p_context) override;
60
63 };
64#endif // GTKMM_KAGE_SCENES_UI_H
Definition kage.h:74
virtual bool on_key_press_event(GdkEventKey *e) override
Definition scenes.cpp:69
PointData draw1
Definition scenes.h:61
PointData draw2
Definition scenes.h:62
void setFocus()
Definition scenes.cpp:291
static Glib::RefPtr< Gdk::Pixbuf > iconSCENE_KAGE
Definition scenes.h:35
Kage * _kage
Definition scenes.h:52
Glib::RefPtr< Gdk::Window > window
Definition scenes.h:37
void addEventsListener()
Definition scenes.cpp:60
bool on_draw(const Cairo::RefPtr< Cairo::Context > &p_context) override
Definition scenes.cpp:206
KageScenesUI(Kage *p_kage)
Definition scenes.cpp:35
virtual bool on_expose_event(GdkEventExpose *e)
Definition scenes.cpp:90
static bool _gotFocus
Definition scenes.h:48
virtual ~KageScenesUI()
Definition scenes.cpp:56
virtual bool invalidateToRender()
Definition scenes.cpp:186
virtual bool on_event(GdkEvent *e) override
Definition scenes.cpp:101
void renderStage()
Definition scenes.cpp:298
static bool mouseIsDown
Definition scenes.h:34
virtual bool on_key_release_event(GdkEventKey *e) override
Definition scenes.cpp:81
void forceRender()
when sceneUI item is double clicked, update Stage
Definition scenes.cpp:180
Definition point.h:27