Kage Studio 0.7.240121
A Simple Free and Open Source 2D Animation Software
Loading...
Searching...
No Matches
form_new.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_FORM_NEW_H
23 #define GTKMM_KAGE_FORM_NEW_H
24
25 #include <gtkmm/window.h>
26 #include <gtkmm/dialog.h>
27 #include <gtkmm/box.h>
28 #include <gtkmm/label.h>
29 #include <gtkmm/entry.h>
30 #include <gtkmm/comboboxtext.h>
31 #include <gtkmm/stock.h>
32 #include <iostream>
33 #include "util/xml/xml.h"
35
36 class FormNewDialog : public Gtk::Dialog {
37 public:
38 FormNewDialog(Gtk::Window& parent);
39 virtual ~FormNewDialog();
40
41 unsigned int getFPS();
42 double getWidth();
43 double getHeight();
44 protected:
45 //Member widgets:
46 Gtk::HBox m_HBox;
47 Gtk::Label _label;
48
49 Gtk::VBox m_VBox1;
50 Gtk::VBox m_VBox2;
51 Gtk::Label _lblOrientation;
52 Gtk::ComboBoxText _cmbOrientation;
54 Gtk::Label _lblTemplate;
55 Gtk::ComboBoxText _cmbTemplate;
56 void Template_onChange();
57 Gtk::Label _lblFPS;
58 Gtk::Entry _txtFPS;
59 void txtFPS_onEnter();
60 void setFPSText(unsigned int p_fps);
61 Gtk::Label _lblWidth;
62 Gtk::Entry _txtWidth;
63 void txtWidth_onEnter();
64 void setWidthText(double p_width);
65 Gtk::Label _lblHeight;
66 Gtk::Entry _txtHeight;
67 void txtHeight_onEnter();
68 void setHeightText(double p_height);
69
71 std::string _name;
72 bool _square;
74 unsigned int _fps;
75 double _width;
76 double _height;
77 };
78
79 std::vector<TemplateProfile> _templateProfiles;
82
83 };
84#endif //GTKMM_KAGE_FORM_NEW_H
Gtk::Entry _txtWidth
Definition form_new.h:62
Gtk::Entry _txtHeight
Definition form_new.h:66
void setWidthText(double p_width)
Definition form_new.cpp:162
virtual ~FormNewDialog()
Definition form_new.cpp:145
unsigned int getFPS()
Definition form_new.cpp:216
Gtk::ComboBoxText _cmbOrientation
Definition form_new.h:52
bool doOpenTemplateProfile()
Definition form_new.cpp:226
void setHeightText(double p_height)
Definition form_new.cpp:170
Gtk::Label _lblTemplate
Definition form_new.h:54
Gtk::Entry _txtFPS
Definition form_new.h:58
Gtk::HBox m_HBox
Definition form_new.h:46
Gtk::Label _lblOrientation
Definition form_new.h:51
void txtFPS_onEnter()
Definition form_new.cpp:149
void Template_onChange()
Definition form_new.cpp:197
Gtk::Label _lblFPS
Definition form_new.h:57
Gtk::Label _lblWidth
Definition form_new.h:61
double getHeight()
Definition form_new.cpp:222
FormNewDialog(Gtk::Window &parent)
Definition form_new.cpp:24
Gtk::VBox m_VBox1
Definition form_new.h:49
void setFPSText(unsigned int p_fps)
Definition form_new.cpp:154
Gtk::Label _label
Definition form_new.h:47
void txtWidth_onEnter()
Definition form_new.cpp:157
Gtk::VBox m_VBox2
Definition form_new.h:50
void txtHeight_onEnter()
Definition form_new.cpp:165
double getWidth()
Definition form_new.cpp:219
TemplateProfile _templateProfile
Definition form_new.h:80
Gtk::ComboBoxText _cmbTemplate
Definition form_new.h:55
Gtk::Label _lblHeight
Definition form_new.h:65
std::vector< TemplateProfile > _templateProfiles
Definition form_new.h:79
void Orientation_onChange()
Definition form_new.cpp:174
Definition form_new.h:70
bool _square
Definition form_new.h:72
unsigned int _fps
Definition form_new.h:74
double _height
Definition form_new.h:76
double _width
Definition form_new.h:75
std::string _name
Definition form_new.h:71
bool _landscape
Definition form_new.h:73