~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/makesrna/intern/rna_text_api.c

  • Committer: Bazaar Package Importer
  • Author(s): Kevin Roy
  • Date: 2011-02-08 22:20:54 UTC
  • mfrom: (1.4.2 upstream)
  • mto: (14.2.6 sid) (1.5.1)
  • mto: This revision was merged to the branch mainline in revision 27.
  • Revision ID: james.westby@ubuntu.com-20110208222054-kk0gwa4bu8h5lyq4
Tags: upstream-2.56.1-beta-svn34076
ImportĀ upstreamĀ versionĀ 2.56.1-beta-svn34076

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 *
 
3
 * ***** BEGIN GPL LICENSE BLOCK *****
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or
 
6
 * modify it under the terms of the GNU General Public License
 
7
 * as published by the Free Software Foundation; either version 2
 
8
 * of the License, or (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 Foundation,
 
17
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
18
 *
 
19
 * Contributor(s): Campbell Barton
 
20
 *
 
21
 * ***** END GPL LICENSE BLOCK *****
 
22
 */
 
23
 
 
24
#include <stdlib.h>
 
25
#include <stdio.h>
 
26
 
 
27
 
 
28
#include "RNA_define.h"
 
29
 
 
30
#ifdef RNA_RUNTIME
 
31
 
 
32
#else
 
33
 
 
34
void RNA_api_text(StructRNA *srna)
 
35
{
 
36
        FunctionRNA *func;
 
37
        PropertyRNA *prop;
 
38
 
 
39
        func= RNA_def_function(srna, "clear", "clear_text");
 
40
        RNA_def_function_ui_description(func, "clear the text block.");
 
41
 
 
42
        func= RNA_def_function(srna, "write", "write_text");
 
43
        RNA_def_function_ui_description(func, "write text at the cursor location and advance to the end of the text block.");
 
44
        prop= RNA_def_string(func, "text", "Text", 0, "", "New text for this datablock.");
 
45
        RNA_def_property_flag(prop, PROP_REQUIRED);
 
46
}
 
47
 
 
48
#endif