Kage Studio 0.7.240121
A Simple Free and Open Source 2D Animation Software
Loading...
Searching...
No Matches
frametween.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_PROP_FRAME_TWEEN_H
23 #define GTKMM_KAGE_PROP_FRAME_TWEEN_H
24
25 #include <gtkmm/box.h>
26 #include <gtkmm/label.h>
27 #include <gtkmm/entry.h>
28 #include <gtkmm/comboboxtext.h>
29
30 class Kage; //forward declaration
31
32 class PropertyFrameTween : public Gtk::HBox {
33 public:
34 PropertyFrameTween(Kage* p_kage);
35 virtual ~PropertyFrameTween();
36
37 protected:
39 //Member widgets:Gtk::HBox m_propFrameTween;
42 Gtk::Label m_LabelTweenX;
43 Gtk::ComboBoxText m_ComboX;
44 Gtk::Label m_LabelTweenY;
45 Gtk::ComboBoxText m_ComboY;
46 public:
48
49 void setTweenXText(std::string p_tween);
50 void setTweenYText(std::string p_tween);
51 };
52#endif //GTKMM_KAGE_PROP_FRAME_TWEEN_H
Definition kage.h:74
void FrameTween_onChange()
Definition frametween.cpp:56
Kage * _kage
Definition frametween.h:38
Gtk::ComboBoxText m_ComboY
Definition frametween.h:45
Gtk::Label m_LabelTweenX
Definition frametween.h:42
Gtk::VBox m_propFrameTweenV2
Definition frametween.h:41
virtual ~PropertyFrameTween()
Definition frametween.cpp:52
Gtk::ComboBoxText m_ComboX
Definition frametween.h:43
void setTweenXText(std::string p_tween)
Definition frametween.cpp:84
void setTweenYText(std::string p_tween)
Definition frametween.cpp:87
PropertyFrameTween(Kage *p_kage)
Definition frametween.cpp:25
Gtk::VBox m_propFrameTweenV1
Definition frametween.h:40
Gtk::Label m_LabelTweenY
Definition frametween.h:44