22#ifndef GTKMM_KAGE_ASSET_H
23 #define GTKMM_KAGE_ASSET_H
25 #include <gtkmm/drawingarea.h>
26 #include <gtkmm/entry.h>
77 void render(
unsigned int p_assetID);
86 virtual bool on_event(GdkEvent *e)
override;
88 bool on_draw(
const Cairo::RefPtr<Cairo::Context>& cr)
override;
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