fix eo build break.

removed docs actually it's empty.

the doc will be filled at Enventor 1.0
This commit is contained in:
ChunEon Park 2015-09-04 15:37:11 +09:00
parent a1a9d7eae1
commit 31c0b592b3
1 changed files with 42 additions and 315 deletions

View File

@ -3,510 +3,237 @@ class Enventor.Object (Elm.Widget, Efl.File) {
methods { methods {
@property part_highlight { @property part_highlight {
set { set {
/*@
@brief
@warning
@see
@ingroup Enventor */
} }
get { get {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
} }
values { values {
part_highlight: bool; /*@ ... */ part_highlight: bool;
} }
} }
@property live_view_scale { @property live_view_scale {
set { set {
/*@
@brief
@warning
@see
@ingroup Enventor */
} }
get { get {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
} }
values { values {
scale: double; /*@ ... */ scale: double;
} }
} }
@property dummy_swallow { @property dummy_swallow {
set { set {
/*@
@brief
@warning
@see
@ingroup Enventor */
} }
get { get {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
} }
values { values {
dummy_swallow: bool; /*@ ... */ dummy_swallow: bool;
} }
} }
@property auto_complete { @property auto_complete {
set { set {
/*@
@brief
@warning
@see
@ingroup Enventor */
} }
get { get {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
} }
values { values {
auto_complete: bool; /*@ ... */ auto_complete: bool;
} }
} }
@property auto_indent { @property auto_indent {
set { set {
/*@
@brief
@warning
@see
@ingroup Enventor */
} }
get { get {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
} }
values { values {
auto_indent: bool; /*@ ... */ auto_indent: bool;
} }
} }
@property ctxpopup { @property ctxpopup {
set { set {
/*@
@brief
@warning
@see
@ingroup Enventor */
} }
get { get {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
} }
values { values {
ctxpopup: bool; /*@ ... */ ctxpopup: bool;
} }
} }
@property focus { @property focus {
set { set {
/*@
@brief
@warning
@see
@ingroup Enventor */
} }
get { get {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
} }
values { values {
focus: bool; /*@ ... */ focus: bool;
} }
} }
@property modified { @property modified {
set { set {
/*@
@brief
@warning
@see
@ingroup Enventor */
} }
get { get {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
} }
values { values {
modified: bool; /*@ ... */ modified: bool;
} }
} }
@property font_scale { @property font_scale {
set { set {
/*@
@brief
@warning
@see
@ingroup Enventor */
} }
get { get {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
} }
values { values {
font_scale: double; /*@ ... */ font_scale: double;
} }
} }
@property linenumber { @property linenumber {
set { set {
/*@
@brief
@warning
@see
@ingroup Enventor */
} }
get { get {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
} }
values { values {
linenumber: bool; /*@ ... */ linenumber: bool;
} }
} }
path_set { path_set {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
return: Eina_Bool; return: Eina_Bool;
params { params {
@in type: Enventor_Path_Type; /*@ ... */ @in type: Enventor_Path_Type;
@in pathes: const(Eina_List) *; /*@ ... */ @in pathes: const(Eina_List) *;
} }
} }
path_get { path_get {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
return: const(Eina_List) *; return: const(Eina_List) *;
params { params {
@in type: Enventor_Path_Type; /*@ ... */ @in type: Enventor_Path_Type;
} }
} }
max_line_get { max_line_get {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
return: int; return: int;
} }
text_get { text_get {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
return: const(char) *; return: const(char) *;
} }
text_insert { text_insert {
/*@
@brief
@warning
@see
@ingroup Enventor */
params { params {
@in text: const(char) *; /*@ ... */ @in text: const(char) *;
} }
} }
selection_get { selection_get {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
return: const(char) *; return: const(char) *;
} }
cursor_pos_get { cursor_pos_get {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
return: int; return: int;
} }
cursor_pos_set { cursor_pos_set {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
params { params {
@in position: int; /*@ ... */ @in position: int;
} }
} }
select_none { select_none {
/*@
@brief
@warning
@see
@ingroup Enventor */
} }
select_region_set { select_region_set {
/*@
@brief
@warning
@see
@ingroup Enventor */
params { params {
@in start: int; /*@ ... */ @in start: int;
@in end: int; /*@ ... */ @in end: int;
} }
} }
line_delete { line_delete {
/*@
@brief
@warning
@see
@ingroup Enventor */
} }
save { save {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
return: bool; return: bool;
params { params {
@in file: const(char) *; /*@ ... */ @in file: const(char) *;
} }
} }
live_view_get { live_view_get {
/*@
@brief
@warning
@see
@ingroup Enventor */
return: Eo *; return: Eo *;
} }
line_goto { line_goto {
/*@
@brief
@warning
@see
@ingroup Enventor */
params { params {
@in line: int; /*@ ... */ @in line: int;
} }
} }
syntax_color_set { syntax_color_set {
/*@
@brief
@warning
@see
@ingroup Enventor */
params { params {
@in color_type: Enventor_Syntax_Color_Type; /*@ ... */ @in color_type: Enventor_Syntax_Color_Type;
@in val: const(char) *; /*@ ... */ @in val: const(char) *;
} }
} }
syntax_color_get { syntax_color_get {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
return: const(char) *; return: const(char) *;
params { params {
@in color_type: Enventor_Syntax_Color_Type; /*@ ... */ @in color_type: Enventor_Syntax_Color_Type;
} }
} }
syntax_color_full_apply { syntax_color_full_apply {
/*@
@brief
@warning
@see
@ingroup Enventor */
params { params {
@in force: bool; /*@ ... */ @in force: bool;
} }
} }
syntax_color_partial_apply { syntax_color_partial_apply {
/*@
@brief
@warning
@see
@ingroup Enventor */
params { params {
@in interval: double; /*@ ... */ @in interval: double;
} }
} }
template_insert { template_insert {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
return: Eina_Bool; return: Eina_Bool;
params { params {
@in insert_type: Enventor_Template_Insert_Type; /*@ ... */ @in insert_type: Enventor_Template_Insert_Type;
@in syntax: char *; /*@ ... */ @in syntax: char *;
@in n: size_t; @in n: size_t;
} }
} }
template_part_insert { template_part_insert {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
return: Eina_Bool; return: Eina_Bool;
params { params {
@in type: Edje_Part_Type; /*@ ... */ @in type: Edje_Part_Type;
@in insert_type: Enventor_Template_Insert_Type; /*@ ... */ @in insert_type: Enventor_Template_Insert_Type;
@in rel1_x: float; /*@ ... */ @in rel1_x: float;
@in rel1_y: float; /*@ ... */ @in rel1_y: float;
@in rel2_x: float; /*@ ... */ @in rel2_x: float;
@in rel2_y: float; /*@ ... */ @in rel2_y: float;
@in syntax: char *; /*@ ... */ @in syntax: char *;
@in n: size_t; @in n: size_t;
} }
} }
ctxpopup_visible_get { ctxpopup_visible_get {
/*@
@brief
@warning
@see
@ingroup Enventor */
return: bool; return: bool;
} }
ctxpopup_dismiss { ctxpopup_dismiss {
/*@
@brief
@warning
@see
@ingroup Enventor */
} }
disabled_set { disabled_set {
/*@
@brief
@warning
@see
@ingroup Enventor */
params { params {
@in disabled: bool; /*@ ... */ @in disabled: bool;
} }
} }
live_view_size_set { live_view_size_set {
/*@
@brief
@warning
@see
@ingroup Enventor */
params { params {
@in w: Evas_Coord; /*@ ... */ @in w: Evas_Coord;
@in h: Evas_Coord; /*@ ... */ @in h: Evas_Coord;
} }
} }
live_view_size_get { live_view_size_get {
/*@
@brief
@warning
@see
@ingroup Enventor */
params { params {
@in w: Evas_Coord *; /*@ ... */ @in w: Evas_Coord *;
@in h: Evas_Coord *; /*@ ... */ @in h: Evas_Coord *;
} }
} }
redo { redo {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
return: bool; return: bool;
} }
undo { undo {
/*@
@brief
@return
@warning
@see
@ingroup Enventor */
return: bool; return: bool;
} }
font_set { font_set {
/*@
@brief
@warning
@see
@ingroup Enventor */
params { params {
@in font_name: const(char) *; /*@ ... */ @in font_name: const(char) *;
@in font_style: const(char) *; /*@ ... */ @in font_style: const(char) *;
} }
} }
font_get { font_get {
/*@
@brief
@warning
@see
@ingroup Enventor */
params { params {
@in font_name: const(char) **; /*@ ... */ @in font_name: const(char) **;
@in font_style: const(char) **; /*@ ... */ @in font_style: const(char) **;
} }
} }
auto_complete_list_show { auto_complete_list_show {
/*@
@brief
@warning
@see
@ingroup Enventor */
} }
} }
implements { implements {