Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rna_screen.c « intern « makesrna « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b599a60767004b1765ec7940bbe13b2834476006 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/**
 * $Id$
 *
 * ***** BEGIN GPL LICENSE BLOCK *****
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *
 * Contributor(s): Blender Foundation (2008), Nathan Letwory
 *
 * ***** END GPL LICENSE BLOCK *****
 */

#include <stdlib.h>

#include "RNA_define.h"
#include "RNA_types.h"

#include "rna_internal.h"

#include "DNA_screen_types.h"
#include "DNA_scene_types.h"

#ifdef RNA_RUNTIME


static void *rna_Screen_scene_get(PointerRNA *ptr)
{
	bScreen *sc= (bScreen*)ptr->data;
	return sc->scene;
}

static void rna_Screen_verts_begin(CollectionPropertyIterator *iter, PointerRNA *ptr)
{
	bScreen *scr= (bScreen*)ptr->data;
	rna_iterator_listbase_begin(iter, &scr->vertbase, NULL);
}

static void rna_Screen_edges_begin(CollectionPropertyIterator *iter, PointerRNA *ptr)
{
	bScreen *scr= (bScreen*)ptr->data;
	rna_iterator_listbase_begin(iter, &scr->edgebase, NULL);
}

static void rna_Screen_areas_begin(CollectionPropertyIterator *iter, PointerRNA *ptr)
{
	bScreen *scr= (bScreen*)ptr->data;
	rna_iterator_listbase_begin(iter, &scr->areabase, NULL);
}

#else

static void RNA_def_vectypes(BlenderRNA *brna)
{
	StructRNA *srna;
	
	srna= RNA_def_struct(brna, "vec2s", NULL, "vec2s");
	RNA_def_struct_sdna(srna, "vec2s");	
}

static void RNA_def_scrvert(BlenderRNA *brna)
{
	StructRNA *srna;
	PropertyRNA *prop;
	
	srna= RNA_def_struct(brna, "ScrVert", NULL, "Screen Vertex");
	RNA_def_struct_sdna(srna, "ScrVert");
	
	prop= RNA_def_property(srna, "Location", PROP_INT, PROP_VECTOR);
	RNA_def_property_int_sdna(prop, NULL, "vec.x");
	RNA_def_property_array(prop, 2);
	RNA_def_property_ui_text(prop, "Location", "Screen Vert Location");
	/*
	prop= RNA_def_property(srna, "y", PROP_INT, PROP_NONE);
	RNA_def_property_int_sdna(prop, NULL, "vec.y");
	RNA_def_property_array(prop, 2);
	RNA_def_property_ui_text(prop, "Y Location", "Screen Vert Y-Location");*/
}

static void RNA_def_scredge(BlenderRNA *brna)
{
	StructRNA *srna;
	
	srna= RNA_def_struct(brna, "ScrEdge", NULL, "Screen Edge");
	RNA_def_struct_sdna(srna, "ScrEdge");
}

static void RNA_def_scrarea(BlenderRNA *brna)
{
	StructRNA *srna;
	
	srna= RNA_def_struct(brna, "ScrArea", NULL, "Area");
	RNA_def_struct_sdna(srna, "ScrArea");
}

static void RNA_def_panel(BlenderRNA *brna)
{
	StructRNA *srna;
	
	srna= RNA_def_struct(brna, "Panel", NULL, "Panel");
	RNA_def_struct_sdna(srna, "Panel");
}

static void RNA_def_region(BlenderRNA *brna)
{
	StructRNA *srna;
	
	srna= RNA_def_struct(brna, "Region", NULL, "Area Region");
	RNA_def_struct_sdna(srna, "ARegion");
}

static void RNA_def_bscreen(BlenderRNA *brna)
{
	StructRNA *srna;
	PropertyRNA *prop;
	
	srna= RNA_def_struct(brna, "Screen", "ID", "Screen");
	RNA_def_struct_sdna(srna, "bScreen");
	
	prop= RNA_def_property(srna, "scene", PROP_POINTER, PROP_NONE);
	RNA_def_property_flag(prop, PROP_NOT_EDITABLE);
	RNA_def_property_struct_type(prop, "Scene");
	RNA_def_property_pointer_funcs(prop, "rna_Screen_scene_get", NULL, NULL);
	RNA_def_property_ui_text(prop, "Scene", "Active scene.");
	
	prop= RNA_def_property(srna, "vertbase", PROP_COLLECTION, PROP_NONE);
	RNA_def_property_struct_type(prop, "ScrVert");
	RNA_def_property_collection_funcs(prop, "rna_Screen_verts_begin", "rna_iterator_listbase_next", "rna_iterator_listbase_end", "rna_iterator_listbase_get", 0, 0, 0, 0);
	RNA_def_property_ui_text(prop, "Verts", "All Screen Verts");
	
	prop= RNA_def_property(srna, "edgebase", PROP_COLLECTION, PROP_NONE);
	RNA_def_property_struct_type(prop, "ScrEdge");
	RNA_def_property_collection_funcs(prop, "rna_Screen_edges_begin", "rna_iterator_listbase_next", "rna_iterator_listbase_end", "rna_iterator_listbase_get", 0, 0, 0, 0);
	RNA_def_property_ui_text(prop, "Edges", "All Screen Edges");
	
	prop= RNA_def_property(srna, "areabase", PROP_COLLECTION, PROP_NONE);
	RNA_def_property_struct_type(prop, "ScrArea");
	RNA_def_property_collection_funcs(prop, "rna_Screen_areas_begin", "rna_iterator_listbase_next", "rna_iterator_listbase_end", "rna_iterator_listbase_get", 0, 0, 0, 0);
	RNA_def_property_ui_text(prop, "Areas", "All Screen Areas");
}

void RNA_def_screen(BlenderRNA *brna)
{
	RNA_def_bscreen(brna);
	RNA_def_vectypes(brna);
	RNA_def_scrvert(brna);
	RNA_def_scredge(brna);
	RNA_def_scrarea(brna);
	RNA_def_panel(brna);
	RNA_def_region(brna);
}

#endif