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) 2023~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_PROP_ASSET_H
23 #define GTKMM_KAGE_PROP_ASSET_H
24
25 #include <gtkmm/box.h>
26 #include <gtkmm/label.h>
27 #include <gtkmm/entry.h>
28 #include <gtkmm/colorbutton.h>
29 //#include <gtkmm/colorselection.h>
30 #include <gtkmm/scale.h>
31
32 class Kage; //forward declaration
33
34 class PropertyAsset : public Gtk::HBox {
35 public:
36 PropertyAsset(Kage* p_kage);
37 virtual ~PropertyAsset();
38
39 protected:
41 //Member widgets:
42 Gtk::VBox m_propAssetV1;
43 Gtk::VBox m_propAssetV2;
44 Gtk::Label m_LabelX;
45 Gtk::Entry m_EntryX;
46 Gtk::Label m_LabelY;
47 Gtk::Entry m_EntryY;
48 Gtk::Label m_LabelWidth;
49 Gtk::Entry m_EntryWidth;
50 Gtk::Label m_LabelHeight;
51 Gtk::Entry m_EntryHeight;
52 Gtk::Label m_LabelRotation;
53 Gtk::Entry m_EntryRotation;
54 Gtk::Label m_LabelAlpha;
55 Glib::RefPtr<Gtk::Adjustment> _adjustAlpha;
56 Gtk::Scale _scaleAlpha;
57 public:
58 void EntryX_onEnter();
59 void EntryY_onEnter();
60 void EntryWidth_onEnter();
63 void Alpha_onChange();
64
65 void setXText(double p_x);
66 void setYText(double p_y);
67 void setWidthText(double p_width);
68 void setHeightText(double p_height);
69 void setRotationText(double p_rotation);
70 void setScaleAlpha(double p_alpha);
71
72 unsigned int getScaleAlpha();
73 };
74#endif //GTKMM_KAGE_PROP_ASSET_H
Definition kage.h:74
void EntryRotation_onEnter()
Definition asset.cpp:123
Gtk::Label m_LabelX
Definition asset.h:44
Gtk::Entry m_EntryWidth
Definition asset.h:49
virtual ~PropertyAsset()
Definition asset.cpp:93
void EntryY_onEnter()
Definition asset.cpp:103
Gtk::Label m_LabelY
Definition asset.h:46
unsigned int getScaleAlpha()
Definition asset.cpp:160
Kage * _kage
Definition asset.h:40
Gtk::Entry m_EntryRotation
Definition asset.h:53
void setScaleAlpha(double p_alpha)
Definition asset.cpp:156
Gtk::Label m_LabelRotation
Definition asset.h:52
Gtk::Label m_LabelWidth
Definition asset.h:48
void setYText(double p_y)
Definition asset.cpp:140
void setRotationText(double p_rotation)
Definition asset.cpp:152
PropertyAsset(Kage *p_kage)
Definition asset.cpp:25
void setXText(double p_x)
Definition asset.cpp:136
Gtk::Label m_LabelAlpha
Definition asset.h:54
Glib::RefPtr< Gtk::Adjustment > _adjustAlpha
Definition asset.h:55
Gtk::Entry m_EntryHeight
Definition asset.h:51
void EntryWidth_onEnter()
Definition asset.cpp:109
void EntryX_onEnter()
Definition asset.cpp:97
void EntryHeight_onEnter()
Definition asset.cpp:116
Gtk::Label m_LabelHeight
Definition asset.h:50
Gtk::Entry m_EntryX
Definition asset.h:45
void setHeightText(double p_height)
Definition asset.cpp:148
void Alpha_onChange()
Definition asset.cpp:131
Gtk::VBox m_propAssetV2
Definition asset.h:43
Gtk::Entry m_EntryY
Definition asset.h:47
void setWidthText(double p_width)
Definition asset.cpp:144
Gtk::Scale _scaleAlpha
Definition asset.h:56
Gtk::VBox m_propAssetV1
Definition asset.h:42