Kage Studio 0.7.240121
A Simple Free and Open Source 2D Animation Software
Loading...
Searching...
No Matches
about.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_ABOUT_H
23 #define GTKMM_KAGE_ABOUT_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/stock.h>
30 #include <gtkmm/image.h>
31 #include <gtkmm/table.h>
32
33 class KageAbout : public Gtk::Dialog {
34 public:
35 KageAbout(Gtk::Window& parent);
36 virtual ~KageAbout();
37 static std::string app_version;
38 static std::string app_title;
39 static std::string app_author;
40 static std::string app_contact;
41 static std::string app_website;
42 static std::string app_copyright;
43 static std::string app_comment;
44 static Glib::RefPtr<Gdk::Pixbuf> imageABOUT;
45
46 protected:
47 //Member widgets:
48 Gtk::HBox m_HBox;
49 Gtk::Table m_Table;
50 Gtk::Label m_Label1, m_Label2;
51 Gtk::Image m_Image;
52 };
53#endif //GTKMM_KAGE_ABOUT_H
static std::string app_version
Definition about.h:37
virtual ~KageAbout()
Definition about.cpp:73
static std::string app_website
Definition about.h:41
static std::string app_title
Definition about.h:38
KageAbout(Gtk::Window &parent)
Definition about.cpp:33
Gtk::HBox m_HBox
Definition about.h:48
Gtk::Label m_Label2
Definition about.h:50
Gtk::Image m_Image
Definition about.h:51
static Glib::RefPtr< Gdk::Pixbuf > imageABOUT
Definition about.h:44
static std::string app_contact
Definition about.h:40
Gtk::Table m_Table
Definition about.h:49
static std::string app_author
Definition about.h:39
static std::string app_copyright
Definition about.h:42
Gtk::Label m_Label1
Definition about.h:50
static std::string app_comment
Definition about.h:43