2009-04-08 16:40:46 +00:00
|
|
|
/**
|
|
|
|
* $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.
|
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2009 Blender Foundation.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Contributor(s): Blender Foundation
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "RNA_define.h"
|
|
|
|
#include "RNA_types.h"
|
|
|
|
|
2009-04-11 01:52:27 +00:00
|
|
|
#include "UI_interface.h"
|
2009-06-15 20:28:49 +00:00
|
|
|
#include "UI_resources.h"
|
|
|
|
|
2009-06-18 19:48:55 +00:00
|
|
|
#ifdef RNA_RUNTIME
|
|
|
|
|
2009-09-13 22:33:47 +00:00
|
|
|
static void rna_uiItemR(uiLayout *layout, char *name, int icon, PointerRNA *ptr, char *propname, int expand, int slider, int toggle, int icon_only)
|
2009-08-21 12:57:47 +00:00
|
|
|
{
|
|
|
|
int flag= 0;
|
|
|
|
|
|
|
|
flag |= (slider)? UI_ITEM_R_SLIDER: 0;
|
|
|
|
flag |= (expand)? UI_ITEM_R_EXPAND: 0;
|
|
|
|
flag |= (toggle)? UI_ITEM_R_TOGGLE: 0;
|
2009-09-13 22:33:47 +00:00
|
|
|
flag |= (icon_only)? UI_ITEM_R_ICON_ONLY: 0;
|
2009-09-13 03:30:51 +00:00
|
|
|
|
2009-08-21 12:57:47 +00:00
|
|
|
uiItemR(layout, name, icon, ptr, propname, flag);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PointerRNA rna_uiItemO(uiLayout *layout, char *name, int icon, char *opname, int properties)
|
|
|
|
{
|
|
|
|
int flag= (properties)? UI_ITEM_O_RETURN_PROPS: 0;
|
|
|
|
return uiItemFullO(layout, name, icon, opname, NULL, uiLayoutGetOperatorContext(layout), flag);
|
|
|
|
}
|
|
|
|
|
2009-06-18 19:48:55 +00:00
|
|
|
#else
|
|
|
|
|
2009-06-16 00:52:21 +00:00
|
|
|
#define DEF_ICON(name) {name, #name, 0, #name, ""},
|
2009-06-15 20:28:49 +00:00
|
|
|
static EnumPropertyItem icon_items[] = {
|
|
|
|
#include "UI_icons.h"
|
2009-06-16 00:52:21 +00:00
|
|
|
{0, NULL, 0, NULL, NULL}};
|
2009-06-15 20:28:49 +00:00
|
|
|
#undef DEF_ICON
|
2009-04-11 01:52:27 +00:00
|
|
|
|
|
|
|
static void api_ui_item_common(FunctionRNA *func)
|
|
|
|
{
|
2009-06-15 20:28:49 +00:00
|
|
|
PropertyRNA *prop;
|
|
|
|
|
2009-04-11 01:52:27 +00:00
|
|
|
RNA_def_string(func, "text", "", 0, "", "Override automatic text of the item.");
|
2009-06-15 20:28:49 +00:00
|
|
|
|
|
|
|
prop= RNA_def_property(func, "icon", PROP_ENUM, PROP_NONE);
|
|
|
|
RNA_def_property_enum_items(prop, icon_items);
|
|
|
|
RNA_def_property_ui_text(prop, "Icon", "Override automatic icon of the item.");
|
|
|
|
|
2009-04-11 01:52:27 +00:00
|
|
|
}
|
|
|
|
|
2009-04-22 18:39:44 +00:00
|
|
|
static void api_ui_item_op_common(FunctionRNA *func)
|
|
|
|
{
|
|
|
|
PropertyRNA *parm;
|
|
|
|
|
|
|
|
api_ui_item_common(func);
|
|
|
|
parm= RNA_def_string(func, "operator", "", 0, "", "Identifier of the operator.");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
|
|
|
}
|
|
|
|
|
2009-06-16 00:52:21 +00:00
|
|
|
static void api_ui_item_rna_common(FunctionRNA *func)
|
|
|
|
{
|
|
|
|
PropertyRNA *parm;
|
|
|
|
|
|
|
|
parm= RNA_def_pointer(func, "data", "AnyType", "", "Data from which to take property.");
|
2009-09-16 18:04:01 +00:00
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED|PROP_RNAPTR|PROP_NEVER_NULL);
|
2009-06-16 00:52:21 +00:00
|
|
|
parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in data.");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
|
|
|
}
|
|
|
|
|
2009-04-08 16:40:46 +00:00
|
|
|
void RNA_api_ui_layout(StructRNA *srna)
|
|
|
|
{
|
|
|
|
FunctionRNA *func;
|
2009-04-11 01:52:27 +00:00
|
|
|
PropertyRNA *parm;
|
|
|
|
|
2009-06-03 00:14:12 +00:00
|
|
|
static EnumPropertyItem curve_type_items[] = {
|
2009-06-16 00:52:21 +00:00
|
|
|
{0, "NONE", 0, "None", ""},
|
|
|
|
{'v', "VECTOR", 0, "Vector", ""},
|
|
|
|
{'c', "COLOR", 0, "Color", ""},
|
|
|
|
{0, NULL, 0, NULL, NULL}};
|
2009-07-21 01:26:17 +00:00
|
|
|
|
|
|
|
static EnumPropertyItem list_type_items[] = {
|
|
|
|
{0, "DEFAULT", 0, "None", ""},
|
|
|
|
{'c', "COMPACT", 0, "Compact", ""},
|
|
|
|
{'i', "ICONS", 0, "Icons", ""},
|
|
|
|
{0, NULL, 0, NULL, NULL}};
|
2009-06-03 00:14:12 +00:00
|
|
|
|
2009-04-16 12:17:58 +00:00
|
|
|
/* simple layout specifiers */
|
|
|
|
func= RNA_def_function(srna, "row", "uiLayoutRow");
|
UI: Layout Engine
* Buttons are now created first, and after that the layout is computed.
This means the layout engine now works at button level, and makes it
easier to write templates. Otherwise you had to store all info and
create the buttons later.
* Added interface_templates.c as a separate file to put templates in.
These can contain regular buttons, and can be put in a Free layout,
which means you can specify manual coordinates, but still get nested
correct inside other layouts.
* API was changed to allow better nesting. Previously items were added
in the last added layout specifier, i.e. one level up in the layout
hierarchy. This doesn't work well in always, so now when creating things
like rows or columns it always returns a layout which you have to add
the items in. All py scripts were updated to follow this.
* Computing the layout now goes in two passes, first estimating the
required width/height of all nested layouts, and then in the second
pass using the results of that to decide on the actual locations.
* Enum and array buttons now follow the direction of the layout, i.e.
they are vertical or horizontal depending if they are in a column or row.
* Color properties now get a color picker, and only get the additional
RGB sliders with Expand=True.
* File/directory string properties now get a button next to them for
opening the file browse, though this is not implemented yet.
* Layout items can now be aligned, set align=True when creating a column,
row, etc.
* Buttons now get a minimum width of one icon (avoids squashing icon
buttons).
* Moved some more space variables into Style.
2009-05-15 11:19:59 +00:00
|
|
|
parm= RNA_def_pointer(func, "layout", "UILayout", "", "Sub-layout to put items in.");
|
|
|
|
RNA_def_function_return(func, parm);
|
|
|
|
RNA_def_boolean(func, "align", 0, "", "Align buttons to each other.");
|
|
|
|
|
2009-04-16 12:17:58 +00:00
|
|
|
func= RNA_def_function(srna, "column", "uiLayoutColumn");
|
UI: Layout Engine
* Buttons are now created first, and after that the layout is computed.
This means the layout engine now works at button level, and makes it
easier to write templates. Otherwise you had to store all info and
create the buttons later.
* Added interface_templates.c as a separate file to put templates in.
These can contain regular buttons, and can be put in a Free layout,
which means you can specify manual coordinates, but still get nested
correct inside other layouts.
* API was changed to allow better nesting. Previously items were added
in the last added layout specifier, i.e. one level up in the layout
hierarchy. This doesn't work well in always, so now when creating things
like rows or columns it always returns a layout which you have to add
the items in. All py scripts were updated to follow this.
* Computing the layout now goes in two passes, first estimating the
required width/height of all nested layouts, and then in the second
pass using the results of that to decide on the actual locations.
* Enum and array buttons now follow the direction of the layout, i.e.
they are vertical or horizontal depending if they are in a column or row.
* Color properties now get a color picker, and only get the additional
RGB sliders with Expand=True.
* File/directory string properties now get a button next to them for
opening the file browse, though this is not implemented yet.
* Layout items can now be aligned, set align=True when creating a column,
row, etc.
* Buttons now get a minimum width of one icon (avoids squashing icon
buttons).
* Moved some more space variables into Style.
2009-05-15 11:19:59 +00:00
|
|
|
parm= RNA_def_pointer(func, "layout", "UILayout", "", "Sub-layout to put items in.");
|
|
|
|
RNA_def_function_return(func, parm);
|
|
|
|
RNA_def_boolean(func, "align", 0, "", "Align buttons to each other.");
|
|
|
|
|
2009-04-16 12:17:58 +00:00
|
|
|
func= RNA_def_function(srna, "column_flow", "uiLayoutColumnFlow");
|
|
|
|
parm= RNA_def_int(func, "columns", 0, 0, INT_MAX, "", "Number of columns, 0 is automatic.", 0, INT_MAX);
|
UI: Layout Engine
* Buttons are now created first, and after that the layout is computed.
This means the layout engine now works at button level, and makes it
easier to write templates. Otherwise you had to store all info and
create the buttons later.
* Added interface_templates.c as a separate file to put templates in.
These can contain regular buttons, and can be put in a Free layout,
which means you can specify manual coordinates, but still get nested
correct inside other layouts.
* API was changed to allow better nesting. Previously items were added
in the last added layout specifier, i.e. one level up in the layout
hierarchy. This doesn't work well in always, so now when creating things
like rows or columns it always returns a layout which you have to add
the items in. All py scripts were updated to follow this.
* Computing the layout now goes in two passes, first estimating the
required width/height of all nested layouts, and then in the second
pass using the results of that to decide on the actual locations.
* Enum and array buttons now follow the direction of the layout, i.e.
they are vertical or horizontal depending if they are in a column or row.
* Color properties now get a color picker, and only get the additional
RGB sliders with Expand=True.
* File/directory string properties now get a button next to them for
opening the file browse, though this is not implemented yet.
* Layout items can now be aligned, set align=True when creating a column,
row, etc.
* Buttons now get a minimum width of one icon (avoids squashing icon
buttons).
* Moved some more space variables into Style.
2009-05-15 11:19:59 +00:00
|
|
|
parm= RNA_def_pointer(func, "layout", "UILayout", "", "Sub-layout to put items in.");
|
|
|
|
RNA_def_function_return(func, parm);
|
|
|
|
RNA_def_boolean(func, "align", 0, "", "Align buttons to each other.");
|
2009-04-08 16:40:46 +00:00
|
|
|
|
2009-04-16 12:17:58 +00:00
|
|
|
/* box layout */
|
|
|
|
func= RNA_def_function(srna, "box", "uiLayoutBox");
|
|
|
|
parm= RNA_def_pointer(func, "layout", "UILayout", "", "Sub-layout to put items in.");
|
|
|
|
RNA_def_function_return(func, parm);
|
2009-04-11 01:52:27 +00:00
|
|
|
|
2009-04-16 12:17:58 +00:00
|
|
|
/* split layout */
|
|
|
|
func= RNA_def_function(srna, "split", "uiLayoutSplit");
|
|
|
|
parm= RNA_def_pointer(func, "layout", "UILayout", "", "Sub-layout to put items in.");
|
2009-04-11 01:52:27 +00:00
|
|
|
RNA_def_function_return(func, parm);
|
2009-08-18 12:56:43 +00:00
|
|
|
RNA_def_float(func, "percentage", 0.0f, 0.0f, 1.0f, "Percentage", "Percentage of width to split at.", 0.0f, 1.0f);
|
2009-04-08 16:40:46 +00:00
|
|
|
|
|
|
|
/* items */
|
2009-08-21 12:57:47 +00:00
|
|
|
func= RNA_def_function(srna, "itemR", "rna_uiItemR");
|
2009-04-11 01:52:27 +00:00
|
|
|
api_ui_item_common(func);
|
2009-06-16 00:52:21 +00:00
|
|
|
api_ui_item_rna_common(func);
|
2009-04-16 12:17:58 +00:00
|
|
|
RNA_def_boolean(func, "expand", 0, "", "Expand button to show more detail.");
|
2009-05-27 00:03:49 +00:00
|
|
|
RNA_def_boolean(func, "slider", 0, "", "Use slider widget for numeric values.");
|
|
|
|
RNA_def_boolean(func, "toggle", 0, "", "Use toggle widget for boolean values.");
|
2009-09-16 18:04:01 +00:00
|
|
|
RNA_def_boolean(func, "icon_only", 0, "", "Draw only icons in buttons, no text.");
|
2009-04-08 16:40:46 +00:00
|
|
|
|
2009-04-22 18:39:44 +00:00
|
|
|
func= RNA_def_function(srna, "items_enumR", "uiItemsEnumR");
|
2009-06-16 00:52:21 +00:00
|
|
|
api_ui_item_rna_common(func);
|
2009-04-22 18:39:44 +00:00
|
|
|
|
2009-04-27 18:05:58 +00:00
|
|
|
func= RNA_def_function(srna, "item_menu_enumR", "uiItemMenuEnumR");
|
2009-04-22 18:39:44 +00:00
|
|
|
api_ui_item_common(func);
|
2009-06-16 00:52:21 +00:00
|
|
|
api_ui_item_rna_common(func);
|
2009-04-22 18:39:44 +00:00
|
|
|
|
2009-07-02 19:41:31 +00:00
|
|
|
func= RNA_def_function(srna, "item_enumR", "uiItemEnumR_string");
|
2009-04-11 01:52:27 +00:00
|
|
|
api_ui_item_common(func);
|
2009-06-16 00:52:21 +00:00
|
|
|
api_ui_item_rna_common(func);
|
2009-04-22 18:39:44 +00:00
|
|
|
parm= RNA_def_string(func, "value", "", 0, "", "Enum property value.");
|
2009-07-02 19:41:31 +00:00
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
2009-04-22 18:39:44 +00:00
|
|
|
|
2009-06-27 01:15:31 +00:00
|
|
|
func= RNA_def_function(srna, "item_pointerR", "uiItemPointerR");
|
|
|
|
api_ui_item_common(func);
|
|
|
|
api_ui_item_rna_common(func);
|
|
|
|
parm= RNA_def_pointer(func, "search_data", "AnyType", "", "Data from which to take collection to search in.");
|
2009-09-16 18:04:01 +00:00
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED|PROP_RNAPTR|PROP_NEVER_NULL);
|
2009-06-27 01:15:31 +00:00
|
|
|
parm= RNA_def_string(func, "search_property", "", 0, "", "Identifier of search collection property.");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
|
|
|
|
2009-08-21 12:57:47 +00:00
|
|
|
func= RNA_def_function(srna, "itemO", "rna_uiItemO");
|
2009-04-22 18:39:44 +00:00
|
|
|
api_ui_item_op_common(func);
|
2009-08-21 12:57:47 +00:00
|
|
|
parm= RNA_def_boolean(func, "properties", 0, "Properties", "Return operator properties to fill in manually.");
|
|
|
|
parm= RNA_def_pointer(func, "return_properties", "OperatorProperties", "", "Operator properties to fill in, return when 'properties' is set to true.");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED|PROP_RNAPTR);
|
|
|
|
RNA_def_function_return(func, parm);
|
2009-04-22 18:39:44 +00:00
|
|
|
|
2009-06-07 14:53:08 +00:00
|
|
|
func= RNA_def_function(srna, "item_enumO", "uiItemEnumO_string");
|
2009-04-22 18:39:44 +00:00
|
|
|
api_ui_item_op_common(func);
|
|
|
|
parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in operator.");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
|
|
|
parm= RNA_def_string(func, "value", "", 0, "", "Enum property value.");
|
2009-06-07 14:53:08 +00:00
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
2009-04-22 18:39:44 +00:00
|
|
|
|
|
|
|
func= RNA_def_function(srna, "items_enumO", "uiItemsEnumO");
|
2009-04-11 01:52:27 +00:00
|
|
|
parm= RNA_def_string(func, "operator", "", 0, "", "Identifier of the operator.");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
2009-04-22 18:39:44 +00:00
|
|
|
parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in operator.");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
|
|
|
|
2009-04-27 18:05:58 +00:00
|
|
|
func= RNA_def_function(srna, "item_menu_enumO", "uiItemMenuEnumO");
|
2009-04-22 18:39:44 +00:00
|
|
|
api_ui_item_op_common(func);
|
|
|
|
parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in operator.");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
|
|
|
|
|
|
|
func= RNA_def_function(srna, "item_booleanO", "uiItemBooleanO");
|
|
|
|
api_ui_item_op_common(func);
|
|
|
|
parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in operator.");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
|
|
|
parm= RNA_def_boolean(func, "value", 0, "", "Value of the property to call the operator with.");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
|
|
|
|
|
|
|
func= RNA_def_function(srna, "item_intO", "uiItemIntO");
|
|
|
|
api_ui_item_op_common(func);
|
|
|
|
parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in operator.");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
|
|
|
parm= RNA_def_int(func, "value", 0, INT_MIN, INT_MAX, "", "Value of the property to call the operator with.", INT_MIN, INT_MAX);
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
|
|
|
|
|
|
|
func= RNA_def_function(srna, "item_floatO", "uiItemFloatO");
|
|
|
|
api_ui_item_op_common(func);
|
|
|
|
parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in operator.");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
|
|
|
parm= RNA_def_float(func, "value", 0, -FLT_MAX, FLT_MAX, "", "Value of the property to call the operator with.", -FLT_MAX, FLT_MAX);
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
|
|
|
|
|
|
|
func= RNA_def_function(srna, "item_stringO", "uiItemStringO");
|
|
|
|
api_ui_item_op_common(func);
|
|
|
|
parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in operator.");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
|
|
|
parm= RNA_def_string(func, "value", "", 0, "", "Value of the property to call the operator with.");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
2009-04-08 16:40:46 +00:00
|
|
|
|
2009-04-11 01:52:27 +00:00
|
|
|
func= RNA_def_function(srna, "itemL", "uiItemL");
|
|
|
|
api_ui_item_common(func);
|
2009-04-22 18:39:44 +00:00
|
|
|
|
|
|
|
func= RNA_def_function(srna, "itemM", "uiItemM");
|
2009-06-23 00:19:10 +00:00
|
|
|
RNA_def_function_flag(func, FUNC_USE_CONTEXT);
|
2009-04-22 18:39:44 +00:00
|
|
|
api_ui_item_common(func);
|
|
|
|
parm= RNA_def_string(func, "menu", "", 0, "", "Identifier of the menu.");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
|
|
|
|
|
|
|
func= RNA_def_function(srna, "itemS", "uiItemS");
|
|
|
|
|
2009-05-28 23:13:42 +00:00
|
|
|
/* context */
|
|
|
|
func= RNA_def_function(srna, "set_context_pointer", "uiLayoutSetContextPointer");
|
|
|
|
parm= RNA_def_string(func, "name", "", 0, "Name", "Name of entry in the context.");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
|
|
|
parm= RNA_def_pointer(func, "data", "AnyType", "", "Pointer to put in context.");
|
2009-06-16 00:52:21 +00:00
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED|PROP_RNAPTR);
|
2009-05-28 23:13:42 +00:00
|
|
|
|
2009-04-22 18:39:44 +00:00
|
|
|
/* templates */
|
|
|
|
func= RNA_def_function(srna, "template_header", "uiTemplateHeader");
|
2009-06-23 00:19:10 +00:00
|
|
|
RNA_def_function_flag(func, FUNC_USE_CONTEXT);
|
2009-08-18 12:56:43 +00:00
|
|
|
RNA_def_boolean(func, "menus", 1, "", "The header has menus, and should show menu expander.");
|
2009-04-22 18:39:44 +00:00
|
|
|
|
2009-06-07 13:20:41 +00:00
|
|
|
func= RNA_def_function(srna, "template_ID", "uiTemplateID");
|
2009-06-23 00:19:10 +00:00
|
|
|
RNA_def_function_flag(func, FUNC_USE_CONTEXT);
|
2009-06-16 00:52:21 +00:00
|
|
|
api_ui_item_rna_common(func);
|
2009-04-22 18:39:44 +00:00
|
|
|
RNA_def_string(func, "new", "", 0, "", "Operator identifier to create a new ID block.");
|
2009-09-04 21:02:43 +00:00
|
|
|
RNA_def_string(func, "open", "", 0, "", "Operator identifier to open a file for creating a new ID block.");
|
2009-04-22 18:39:44 +00:00
|
|
|
RNA_def_string(func, "unlink", "", 0, "", "Operator identifier to unlink the ID block.");
|
2009-05-21 15:34:09 +00:00
|
|
|
|
|
|
|
func= RNA_def_function(srna, "template_modifier", "uiTemplateModifier");
|
2009-06-16 00:52:21 +00:00
|
|
|
parm= RNA_def_pointer(func, "data", "Modifier", "", "Modifier data.");
|
2009-09-16 18:04:01 +00:00
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED|PROP_RNAPTR|PROP_NEVER_NULL);
|
2009-05-21 15:34:09 +00:00
|
|
|
parm= RNA_def_pointer(func, "layout", "UILayout", "", "Sub-layout to put items in.");
|
|
|
|
RNA_def_function_return(func, parm);
|
2009-05-27 00:03:49 +00:00
|
|
|
|
|
|
|
func= RNA_def_function(srna, "template_constraint", "uiTemplateConstraint");
|
2009-06-16 00:52:21 +00:00
|
|
|
parm= RNA_def_pointer(func, "data", "Constraint", "", "Constraint data.");
|
2009-09-16 18:04:01 +00:00
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED|PROP_RNAPTR|PROP_NEVER_NULL);
|
2009-05-27 00:03:49 +00:00
|
|
|
parm= RNA_def_pointer(func, "layout", "UILayout", "", "Sub-layout to put items in.");
|
|
|
|
RNA_def_function_return(func, parm);
|
2009-05-28 23:41:12 +00:00
|
|
|
|
|
|
|
func= RNA_def_function(srna, "template_preview", "uiTemplatePreview");
|
|
|
|
parm= RNA_def_pointer(func, "id", "ID", "", "ID datablock.");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
2009-09-16 18:04:01 +00:00
|
|
|
RNA_def_pointer(func, "parent", "ID", "", "ID datablock.");
|
|
|
|
RNA_def_pointer(func, "slot", "TextureSlot", "", "Texture slot.");
|
2009-05-28 23:41:12 +00:00
|
|
|
|
2009-06-03 00:14:12 +00:00
|
|
|
func= RNA_def_function(srna, "template_curve_mapping", "uiTemplateCurveMapping");
|
2009-09-16 18:47:42 +00:00
|
|
|
api_ui_item_rna_common(func);
|
2009-06-03 00:14:12 +00:00
|
|
|
RNA_def_enum(func, "type", curve_type_items, 0, "Type", "Type of curves to display.");
|
2009-09-16 18:47:42 +00:00
|
|
|
RNA_def_boolean(func, "levels", 0, "", "Show black/white levels.");
|
2009-06-03 00:14:12 +00:00
|
|
|
|
|
|
|
func= RNA_def_function(srna, "template_color_ramp", "uiTemplateColorRamp");
|
2009-09-16 18:47:42 +00:00
|
|
|
api_ui_item_rna_common(func);
|
2009-06-03 00:14:12 +00:00
|
|
|
RNA_def_boolean(func, "expand", 0, "", "Expand button to show more detail.");
|
2009-06-13 11:21:02 +00:00
|
|
|
|
|
|
|
func= RNA_def_function(srna, "template_layers", "uiTemplateLayers");
|
2009-06-16 00:52:21 +00:00
|
|
|
api_ui_item_rna_common(func);
|
2009-07-21 12:38:01 +00:00
|
|
|
|
|
|
|
func= RNA_def_function(srna, "template_triColorSet", "uiTemplateTriColorSet");
|
|
|
|
api_ui_item_rna_common(func);
|
2009-06-23 00:45:41 +00:00
|
|
|
|
|
|
|
func= RNA_def_function(srna, "template_image_layers", "uiTemplateImageLayers");
|
|
|
|
RNA_def_function_flag(func, FUNC_USE_CONTEXT);
|
|
|
|
parm= RNA_def_pointer(func, "image", "Image", "", "");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
|
|
|
parm= RNA_def_pointer(func, "image_user", "ImageUser", "", "");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
2009-06-24 14:16:56 +00:00
|
|
|
|
2009-09-16 19:27:08 +00:00
|
|
|
func= RNA_def_function(srna, "template_image", "uiTemplateImage");
|
|
|
|
RNA_def_function_flag(func, FUNC_USE_CONTEXT);
|
|
|
|
api_ui_item_rna_common(func);
|
|
|
|
parm= RNA_def_pointer(func, "image_user", "ImageUser", "", "");
|
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED|PROP_RNAPTR);
|
|
|
|
RNA_def_boolean(func, "compact", 0, "", "Use more compact layout.");
|
|
|
|
|
2009-06-24 14:16:56 +00:00
|
|
|
func= RNA_def_function(srna, "template_list", "uiTemplateList");
|
2009-07-21 01:26:17 +00:00
|
|
|
RNA_def_function_flag(func, FUNC_USE_CONTEXT);
|
2009-06-24 14:16:56 +00:00
|
|
|
api_ui_item_rna_common(func);
|
2009-07-01 22:25:49 +00:00
|
|
|
parm= RNA_def_pointer(func, "active_data", "AnyType", "", "Data from which to take property for the active element.");
|
2009-09-16 19:27:08 +00:00
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED|PROP_RNAPTR|PROP_NEVER_NULL);
|
2009-06-27 01:15:31 +00:00
|
|
|
parm= RNA_def_string(func, "active_property", "", 0, "", "Identifier of property in data, for the active element.");
|
2009-06-24 14:16:56 +00:00
|
|
|
RNA_def_property_flag(parm, PROP_REQUIRED);
|
2009-06-27 01:15:31 +00:00
|
|
|
parm= RNA_def_int(func, "rows", 5, 0, INT_MAX, "", "Number of rows to display.", 0, INT_MAX);
|
2009-07-21 01:26:17 +00:00
|
|
|
parm= RNA_def_enum(func, "type", list_type_items, 0, "Type", "Type of list to use.");
|
2009-06-27 01:15:31 +00:00
|
|
|
parm= RNA_def_collection(func, "items", 0, "", "Items visible in the list.");
|
|
|
|
RNA_def_function_return(func, parm);
|
2009-06-30 19:20:45 +00:00
|
|
|
|
|
|
|
func= RNA_def_function(srna, "template_running_jobs", "uiTemplateRunningJobs");
|
|
|
|
RNA_def_function_flag(func, FUNC_USE_CONTEXT);
|
|
|
|
|
|
|
|
func= RNA_def_function(srna, "template_operator_search", "uiTemplateOperatorSearch");
|
2009-07-11 13:32:20 +00:00
|
|
|
|
|
|
|
func= RNA_def_function(srna, "template_header_3D", "uiTemplateHeader3D");
|
|
|
|
RNA_def_function_flag(func, FUNC_USE_CONTEXT);
|
2009-07-21 12:57:55 +00:00
|
|
|
|
2009-08-15 19:40:09 +00:00
|
|
|
func= RNA_def_function(srna, "view3d_select_faceselmenu", "uiTemplate_view3d_select_faceselmenu");
|
|
|
|
RNA_def_function_flag(func, FUNC_USE_CONTEXT);
|
2009-04-08 16:40:46 +00:00
|
|
|
}
|
|
|
|
|
2009-06-18 19:48:55 +00:00
|
|
|
#endif
|
|
|
|
|