Kage Studio 0.7.240121
A Simple Free and Open Source 2D Animation Software
Loading...
Searching...
No Matches
project.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/*Project
22 Info
23 Name
24 Width
25 Height
26 BG Color
27 Assets
28 asset01 Image
29 asset02 Image
30 asset03 SceneID
31 Scene01
32 layer01
33 frame01
34 data Move X Y
35 data Line X Y
36 data Color
37 frame02
38 data Move X Y
39 data Line X Y
40 data Asset ID
41 layer02
42 ...
43 Scene02
44 ...
45 Scene03
46 layer01
47 frame01
48 data Move X Y
49 data Line X Y
50 data Color
51 frame02
52 ...
53 layer02
54 ...
55 layer03
56 ...
57*/
58#ifndef GTKMM_KAGE_PROJECT_H
59 #define GTKMM_KAGE_PROJECT_H
60
61 #include <vector>
62 #include "data/color.h"
63 #include "./data/scene.h"
64
66
67 #include <gdkmm/color.h>
68 class Kage; //forward declaration
69
70 class KageProject: public KageDocument {
71 public:
72 std::string _name;
73 double _width; //made double for zoom
74 double _height; //ditto
76 unsigned int _fps;
77
78 std::string toString();
79
81
82 KageProject(Kage *p_kage);
83 KageProject operator=(const KageProject &p_project);
84 KageProject operator=(const KageDocument &p_document);
85 void init(Kage *p_kage);
86 virtual ~KageProject();
87
88 void renameLayer();
89 void renameScene();
90 };
91#endif //GTKMM_KAGE_PROJECT_H
Definition color.h:28
KageDocument()
Definition document.cpp:25
void init()
Definition document.cpp:87
Definition kage.h:74
double _height
Definition project.h:74
KageProject operator=(const KageProject &p_project)
Definition project.cpp:28
double _width
Definition project.h:73
void renameScene()
Definition project.cpp:105
Kage * _kage
Definition project.h:80
KageProject(Kage *p_kage)
Definition project.cpp:25
void renameLayer()
Definition project.cpp:89
std::string _name
Definition project.h:72
unsigned int _fps
Definition project.h:76
virtual ~KageProject()
Definition project.cpp:73
std::string toString()
Definition project.cpp:78
ColorData _backgroundColor
Definition project.h:75