4 * ***** BEGIN GPL LICENSE BLOCK *****
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 * The Original Code is Copyright (C) 2008 Blender Foundation.
21 * All rights reserved.
24 * Contributor(s): Blender Foundation
26 * ***** END GPL LICENSE BLOCK *****
29 #ifndef ED_CURVE_INTERN_H
30 #define ED_CURVE_INTERN_H
32 /* internal exports only */
33 struct wmOperatorType;
39 enum { DEL_ALL, DEL_NEXT_CHAR, DEL_PREV_CHAR, DEL_SELECTION, DEL_NEXT_SEL, DEL_PREV_SEL };
40 enum { CASE_LOWER, CASE_UPPER };
41 enum { LINE_BEGIN, LINE_END, PREV_CHAR, NEXT_CHAR, PREV_WORD, NEXT_WORD,
42 PREV_LINE, NEXT_LINE, PREV_PAGE, NEXT_PAGE };
44 void FONT_OT_text_insert(struct wmOperatorType *ot);
45 void FONT_OT_line_break(struct wmOperatorType *ot);
46 void FONT_OT_insert_lorem(struct wmOperatorType *ot);
48 void FONT_OT_case_toggle(struct wmOperatorType *ot);
49 void FONT_OT_case_set(struct wmOperatorType *ot);
50 void FONT_OT_style_toggle(struct wmOperatorType *ot);
51 void FONT_OT_style_set(struct wmOperatorType *ot);
53 void FONT_OT_text_copy(struct wmOperatorType *ot);
54 void FONT_OT_text_cut(struct wmOperatorType *ot);
55 void FONT_OT_text_paste(struct wmOperatorType *ot);
56 void FONT_OT_file_paste(struct wmOperatorType *ot);
57 void FONT_OT_buffer_paste(struct wmOperatorType *ot);
59 void FONT_OT_move(struct wmOperatorType *ot);
60 void FONT_OT_move_select(struct wmOperatorType *ot);
61 void FONT_OT_delete(struct wmOperatorType *ot);
63 void FONT_OT_change_character(struct wmOperatorType *ot);
64 void FONT_OT_change_spacing(struct wmOperatorType *ot);
67 void CURVE_OT_hide(struct wmOperatorType *ot);
68 void CURVE_OT_reveal(struct wmOperatorType *ot);
70 void CURVE_OT_separate(struct wmOperatorType *ot);
71 void CURVE_OT_duplicate(struct wmOperatorType *ot);
72 void CURVE_OT_delete(struct wmOperatorType *ot);
74 void CURVE_OT_spline_type_set(struct wmOperatorType *ot);
75 void CURVE_OT_radius_set(struct wmOperatorType *ot);
76 void CURVE_OT_spline_weight_set(struct wmOperatorType *ot);
77 void CURVE_OT_handle_type_set(struct wmOperatorType *ot);
78 void CURVE_OT_shade_smooth(struct wmOperatorType *ot);
79 void CURVE_OT_shade_flat(struct wmOperatorType *ot);
80 void CURVE_OT_tilt_clear(struct wmOperatorType *ot);
82 void CURVE_OT_smooth(struct wmOperatorType *ot);
83 void CURVE_OT_smooth_radius(struct wmOperatorType *ot);
85 void CURVE_OT_de_select_first(struct wmOperatorType *ot);
86 void CURVE_OT_de_select_last(struct wmOperatorType *ot);
87 void CURVE_OT_select_all_toggle(struct wmOperatorType *ot);
88 void CURVE_OT_select_inverse(struct wmOperatorType *ot);
89 void CURVE_OT_select_linked(struct wmOperatorType *ot);
90 void CURVE_OT_select_row(struct wmOperatorType *ot);
91 void CURVE_OT_select_next(struct wmOperatorType *ot);
92 void CURVE_OT_select_previous(struct wmOperatorType *ot);
93 void CURVE_OT_select_more(struct wmOperatorType *ot);
94 void CURVE_OT_select_less(struct wmOperatorType *ot);
95 void CURVE_OT_select_random(struct wmOperatorType *ot);
96 void CURVE_OT_select_every_nth(struct wmOperatorType *ot);
98 void CURVE_OT_switch_direction(struct wmOperatorType *ot);
99 void CURVE_OT_subdivide(struct wmOperatorType *ot);
100 void CURVE_OT_make_segment(struct wmOperatorType *ot);
101 void CURVE_OT_spin(struct wmOperatorType *ot);
102 void CURVE_OT_vertex_add(struct wmOperatorType *ot);
103 void CURVE_OT_extrude(struct wmOperatorType *ot);
104 void CURVE_OT_cyclic_toggle(struct wmOperatorType *ot);
106 void CURVE_OT_specials_menu(struct wmOperatorType *ot);
108 #endif /* ED_UTIL_INTERN_H */