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

ui.py « extensions_framework « modules - git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f24d873471e5d663b9c72f3cf0876171592f654 (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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# -*- coding: utf8 -*-
#
# ***** BEGIN GPL LICENSE BLOCK *****
#
# --------------------------------------------------------------------------
# Blender 2.5 Extensions Framework
# --------------------------------------------------------------------------
#
# Authors:
# Doug Hammond
#
# 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, see <http://www.gnu.org/licenses/>.
#
# ***** END GPL LICENCE BLOCK *****
#
import bpy

from extensions_framework.validate import Logician

class EF_OT_msg(bpy.types.Operator):
	"""An operator to show simple messages in the UI"""
	bl_idname = 'ef.msg'
	bl_label = 'Show UI Message'
	msg_type = bpy.props.StringProperty(default='INFO')
	msg_text = bpy.props.StringProperty(default='')
	def execute(self, context):
		self.report({self.properties.msg_type}, self.properties.msg_text)
		return {'FINISHED'}

def _get_item_from_context(context, path):
	"""Utility to get an object when the path to it is known:
	_get_item_from_context(context, ['a','b','c']) returns
	context.a.b.c
	No error checking is performed other than checking that context
	is not None. Exceptions caused by invalid path should be caught in
	the calling code.
	
	"""
	
	if context is not None:
		for p in path:
			context = getattr(context, p)
	return context

class property_group_renderer(bpy.types.Panel):
	"""Mix-in class for sub-classes of bpy.types.Panel. This class
	will provide the draw() method which implements drawing one or
	more property groups derived from
	extensions_framework.declarative_propery_group.
	The display_property_groups list attribute describes which
	declarative_property_groups should be drawn in the Panel, and
	how to extract those groups from the context passed to draw().
	
	"""
	
	"""The display_property_groups list attribute specifies which
	custom declarative_property_groups this panel should draw, and
	where to find that property group in the active context.
	Example item:
		( ('scene',), 'myaddon_property_group')
	In this case, this renderer will look for properties in
	context.scene.myaddon_property_group to draw in the Panel.
	
	"""
	display_property_groups = []
	
	def draw(self, context):
		"""Sub-classes should override this if they need to display
		other (object-related) property groups. super().draw(context)
		can be a useful call in those cases.
		
		"""
		for property_group_path, property_group_name in \
			self.display_property_groups:
			ctx = _get_item_from_context(context, property_group_path)
			property_group = getattr(ctx, property_group_name)
			for p in property_group.controls:
				self.draw_column(p, self.layout, ctx, context,
					property_group=property_group)
			property_group.draw_callback(context)
	
	def check_visibility(self, lookup_property, property_group):
		"""Determine if the lookup_property should be drawn in the Panel"""
		vt = Logician(property_group)
		if lookup_property in property_group.visibility.keys():
			if hasattr(property_group, lookup_property):
				member = getattr(property_group, lookup_property)
			else:
				member = None
			return vt.test_logic(member,
				property_group.visibility[lookup_property])
		else:
			return True
	
	def check_enabled(self, lookup_property, property_group):
		"""Determine if the lookup_property should be enabled in the Panel"""
		et = Logician(property_group)
		if lookup_property in property_group.enabled.keys():
			if hasattr(property_group, lookup_property):
				member = getattr(property_group, lookup_property)
			else:
				member = None
			return et.test_logic(member,
				property_group.enabled[lookup_property])
		else:
			return True
	
	def check_alert(self, lookup_property, property_group):
		"""Determine if the lookup_property should be in an alert state in the Panel"""
		et = Logician(property_group)
		if lookup_property in property_group.alert.keys():
			if hasattr(property_group, lookup_property):
				member = getattr(property_group, lookup_property)
			else:
				member = None
			return et.test_logic(member,
				property_group.alert[lookup_property])
		else:
			return False
	
	def is_real_property(self, lookup_property, property_group):
		for prop in property_group.properties:
			if prop['attr'] == lookup_property:
				return prop['type'] not in ['text', 'prop_search']
		
		return False
	
	def draw_column(self, control_list_item, layout, context,
					supercontext=None, property_group=None):
		"""Draw a column's worth of UI controls in this Panel"""
		if type(control_list_item) is list:
			draw_row = False
			
			found_percent = None
			for sp in control_list_item:
				if type(sp) is float:
					found_percent = sp
				elif type(sp) is list:
					for ssp in [s for s in sp if self.is_real_property(s, property_group)]:
						draw_row = draw_row or self.check_visibility(ssp,
							property_group)
				else:
					draw_row = draw_row or self.check_visibility(sp,
						property_group)
			
			next_items = [s for s in control_list_item if type(s) in [str, list]]
			if draw_row and len(next_items) > 0:
				if found_percent is not None:
					splt = layout.split(percentage=found_percent)
				else:
					splt = layout.row(True)
				for sp in next_items:
					col2 = splt.column()
					self.draw_column(sp, col2, context, supercontext,
						property_group)
		else:
			if self.check_visibility(control_list_item, property_group):
				
				for current_property in property_group.properties:
					if current_property['attr'] == control_list_item:
						current_property_keys = current_property.keys() 
						
						sub_layout_created = False
						if not self.check_enabled(control_list_item, property_group):
							last_layout = layout
							sub_layout_created = True
							
							layout = layout.row()
							layout.enabled = False
						
						if self.check_alert(control_list_item, property_group):
							if not sub_layout_created:
								last_layout = layout
								sub_layout_created = True
							layout = layout.row()
							layout.alert = True
						
						if 'type' in current_property_keys:
							if current_property['type'] in ['int', 'float',
								'float_vector', 'string']:
								layout.prop(
									property_group,
									control_list_item,
									text = current_property['name'],
									expand = current_property['expand'] \
										if 'expand' in current_property_keys \
										else False,
									slider = current_property['slider'] \
										if 'slider' in current_property_keys \
										else False,
									toggle = current_property['toggle'] \
										if 'toggle' in current_property_keys \
										else False,
									icon_only = current_property['icon_only'] \
										if 'icon_only' in current_property_keys \
										else False,
									event = current_property['event'] \
										if 'event' in current_property_keys \
										else False,
									full_event = current_property['full_event'] \
										if 'full_event' in current_property_keys \
										else False,
									emboss = current_property['emboss'] \
										if 'emboss' in current_property_keys \
										else True,
								)
							if current_property['type'] in ['enum']:
								if 'use_menu' in current_property_keys and \
									current_property['use_menu']:
									layout.prop_menu_enum(
										property_group,
										control_list_item,
										text = current_property['name']
									)
								else:
									layout.prop(
										property_group,
										control_list_item,
										text = current_property['name'],
										expand = current_property['expand'] \
											if 'expand' in current_property_keys \
											else False,
										slider = current_property['slider'] \
											if 'slider' in current_property_keys \
											else False,
										toggle = current_property['toggle'] \
											if 'toggle' in current_property_keys \
											else False,
										icon_only = current_property['icon_only'] \
											if 'icon_only' in current_property_keys \
											else False,
										event = current_property['event'] \
											if 'event' in current_property_keys \
											else False,
										full_event = current_property['full_event'] \
											if 'full_event' in current_property_keys \
											else False,
										emboss = current_property['emboss'] \
											if 'emboss' in current_property_keys \
											else True,
									)
							if current_property['type'] in ['bool']:
								layout.prop(
									property_group,
									control_list_item,
									text = current_property['name'],
									toggle = current_property['toggle'] \
										if 'toggle' in current_property_keys \
										else False,
									icon_only = current_property['icon_only'] \
										if 'icon_only' in current_property_keys \
										else False,
									event = current_property['event'] \
										if 'event' in current_property_keys \
										else False,
									full_event = current_property['full_event'] \
										if 'full_event' in current_property_keys \
										else False,
									emboss = current_property['emboss'] \
										if 'emboss' in current_property_keys \
										else True,
								)
							elif current_property['type'] in ['operator']:
								args = {}
								for optional_arg in ('text', 'icon'):
									if optional_arg in current_property_keys:
										args.update({
											optional_arg: current_property[optional_arg],
										})
								layout.operator( current_property['operator'], **args )
							
							elif current_property['type'] in ['menu']:
								args = {}
								for optional_arg in ('text', 'icon'):
									if optional_arg in current_property_keys:
										args.update({
											optional_arg: current_property[optional_arg],
										})
								layout.menu(current_property['menu'], **args)
							
							elif current_property['type'] in ['text']:
								layout.label(
									text = current_property['name']
								)
								
							elif current_property['type'] in ['template_list']:
								layout.template_list(
									current_property['src'](supercontext, context),
									current_property['src_attr'],
									current_property['trg'](supercontext, context),
									current_property['trg_attr'],
									rows = 4 \
										if not 'rows' in current_property_keys \
										else current_property['rows'],
									maxrows = 4 \
										if not 'rows' in current_property_keys \
										else current_property['rows'],
									type = 'DEFAULT' \
										if not 'list_type' in current_property_keys \
										else current_property['list_type']
								)
								
							elif current_property['type'] in ['prop_search']:
								layout.prop_search(
									current_property['trg'](supercontext,
										context),
									current_property['trg_attr'],
									current_property['src'](supercontext,
										context),
									current_property['src_attr'],
									text = current_property['name'],
								)
							
							elif current_property['type'] in ['ef_callback']:
								getattr(self, current_property['method'])(supercontext)
						else:
							layout.prop(property_group, control_list_item)
						
						if sub_layout_created:
							layout = last_layout
						
						# Fire a draw callback if specified
						if 'draw' in current_property_keys:
							current_property['draw'](supercontext, context)
						
						break