Kage Studio 0.7.240121
A Simple Free and Open Source 2D Animation Software
Loading...
Searching...
No Matches
asset.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_ASSET_H
23 #define GTKMM_KAGE_ASSET_H
24
25 #include <gtkmm/drawingarea.h>
26 #include <gtkmm/entry.h>
27 #include <time.h>
29
30 class KageAssetManager;
31
32 class KageAsset : public Gtk::DrawingArea {
33 public:
40
41 static bool mouseIsDown;
42 static Glib::RefPtr<Gdk::Pixbuf> iconASSET_IMAGE;
43 static Glib::RefPtr<Gdk::Pixbuf> iconASSET_KAGE;
44 static Glib::RefPtr<Gdk::Pixbuf> iconASSET_VIDEO;
45
46 Glib::RefPtr<Gdk::Window> window;
47
48 KageAsset(KageAssetManager *p_assetManager, unsigned p_assetID);
49 virtual ~KageAsset();
50
51 void setAssetHash(std::string p_assetHash);
52 std::string getAssetHash();
53
54 void setFilePath(std::string p_filePath);
55 std::string getFilePath();
56 void setFileName(std::string p_fileName);
57 std::string getFileName();
58
59 void setLabel(std::string p_label);
60 std::string getLabel();
61 void setSelected(bool p_selected);
62 bool isSelected();
63 void setFocus();
64
65 void setAssetType(KageAsset::AssetType p_assetType);
67
68 unsigned int assetID;
69
70 void forceRender();
71 virtual bool invalidateToRender();
72 Gtk::Entry _txtLabel;
73 void txtLabel_onEnter();
74
75 void addEventsListener();
76
77 void render(unsigned int p_assetID);
78 void render();
79 protected:
80 std::string _assetHash;
81
82 //Override default signal handler:
83 virtual bool on_expose_event(GdkEventExpose *e);
84 virtual bool on_key_press_event(GdkEventKey *e) override;
85 virtual bool on_key_release_event(GdkEventKey *e) override;
86 virtual bool on_event(GdkEvent *e) override;
87
88 bool on_draw(const Cairo::RefPtr<Cairo::Context>& cr) override;
91 std::string _label;
92
94 std::string _filePath;
95 std::string _fileName;
96
97 unsigned int _renderAssetID;
98 bool _CTRL;
99 };
100#endif // GTKMM_KAGE_ASSET_H
KageAsset::AssetType getAssetType()
Definition asset.cpp:325
virtual bool on_key_release_event(GdkEventKey *e) override
Definition asset.cpp:95
bool _CTRL
Definition asset.h:98
AssetType
Definition asset.h:34
@ ASSET_KAGE
Definition asset.h:37
@ ASSET_IMAGE
Definition asset.h:36
@ ASSET_VIDEO
Definition asset.h:38
@ ASSET_NULL
Definition asset.h:35
Gtk::Entry _txtLabel
Definition asset.h:72
std::string getFilePath()
Definition asset.cpp:284
void setFocus()
Definition asset.cpp:317
void setAssetType(KageAsset::AssetType p_assetType)
Definition asset.cpp:321
bool _selected
Definition asset.h:89
void setFileName(std::string p_fileName)
Set the original File Name where this ASSET was loaded.
Definition asset.cpp:292
std::string _filePath
Definition asset.h:94
std::string getAssetHash()
Definition asset.cpp:277
static bool mouseIsDown
Definition asset.h:41
KageAsset::AssetType _assetType
Definition asset.h:90
void addEventsListener()
Definition asset.cpp:68
void setLabel(std::string p_label)
Definition asset.cpp:299
bool isSelected()
Definition asset.cpp:313
unsigned int _renderAssetID
Definition asset.h:97
virtual bool invalidateToRender()
Definition asset.cpp:181
KageAsset(KageAssetManager *p_assetManager, unsigned p_assetID)
Definition asset.cpp:37
static Glib::RefPtr< Gdk::Pixbuf > iconASSET_VIDEO
Definition asset.h:44
virtual bool on_key_press_event(GdkEventKey *e) override
Definition asset.cpp:82
void setSelected(bool p_selected)
Definition asset.cpp:306
virtual bool on_event(GdkEvent *e) override
Definition asset.cpp:115
void txtLabel_onEnter()
Definition asset.cpp:77
std::string getLabel()
Definition asset.cpp:303
virtual ~KageAsset()
Definition asset.cpp:64
std::string getFileName()
Definition asset.cpp:295
bool on_draw(const Cairo::RefPtr< Cairo::Context > &cr) override
Definition asset.cpp:205
void forceRender()
Definition asset.cpp:173
void setAssetHash(std::string p_assetHash)
When User imports a file, the original file is copied inside project file; the copied file name will ...
Definition asset.cpp:274
Glib::RefPtr< Gdk::Window > window
Definition asset.h:46
static Glib::RefPtr< Gdk::Pixbuf > iconASSET_IMAGE
Definition asset.h:42
std::string _assetHash
Definition asset.h:80
KageAssetManager * _assetManager
Definition asset.h:93
std::string _fileName
Definition asset.h:95
unsigned int assetID
Definition asset.h:68
void render()
Definition asset.cpp:337
void setFilePath(std::string p_filePath)
Definition asset.cpp:281
static Glib::RefPtr< Gdk::Pixbuf > iconASSET_KAGE
Definition asset.h:43
std::string _label
Definition asset.h:91
virtual bool on_expose_event(GdkEventExpose *e)
Definition asset.cpp:104
Definition assetmanager.h:36