diff options
author | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2019-01-18 14:22:23 +0100 |
---|---|---|
committer | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2019-01-18 16:31:26 +0100 |
commit | 34efdfb1b1ed24f00b95edfbf9bde3db8884f9df (patch) | |
tree | 15bd03f3c9408dd939af6af00cc487f04b93c285 /src | |
parent | 50c41b1100d2dce33518e59ebaadc5cfcc63c69e (diff) |
efl: convert all classes to the new eolian syntax
ref T7459
Reviewed-by: Daniel Kolesa <daniel@octaforge.org>
Reviewed-by: Xavi Artigas <xavierartigas@yahoo.es>
Differential Revision: https://phab.enlightenment.org/D7684
Diffstat (limited to 'src')
409 files changed, 493 insertions, 494 deletions
diff --git a/src/examples/efl_mono/example_numberwrapper.eo b/src/examples/efl_mono/example_numberwrapper.eo index 4e0279e..43de18d 100644 --- a/src/examples/efl_mono/example_numberwrapper.eo +++ b/src/examples/efl_mono/example_numberwrapper.eo | |||
@@ -5,7 +5,7 @@ function NumberCb { | |||
5 | return: int; | 5 | return: int; |
6 | }; | 6 | }; |
7 | 7 | ||
8 | class Example.Numberwrapper (Efl.Object) { | 8 | class Example.Numberwrapper extends Efl.Object { |
9 | methods { | 9 | methods { |
10 | @property number { | 10 | @property number { |
11 | get { | 11 | get { |
diff --git a/src/examples/eolian_cxx/ns_colourable.eo b/src/examples/eolian_cxx/ns_colourable.eo index bfb08b2..8fce408 100644 --- a/src/examples/eolian_cxx/ns_colourable.eo +++ b/src/examples/eolian_cxx/ns_colourable.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ns.Colourable (Efl.Object) | 1 | class Ns.Colourable extends Efl.Object |
2 | { | 2 | { |
3 | [[Colourable class.]] | 3 | [[Colourable class.]] |
4 | data: Colourable_Data; | 4 | data: Colourable_Data; |
diff --git a/src/examples/eolian_cxx/ns_colourablesquare.eo b/src/examples/eolian_cxx/ns_colourablesquare.eo index 66fe8ae..733701f 100644 --- a/src/examples/eolian_cxx/ns_colourablesquare.eo +++ b/src/examples/eolian_cxx/ns_colourablesquare.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ns.ColourableSquare (Ns.Colourable) | 1 | class Ns.ColourableSquare extends Ns.Colourable |
2 | { | 2 | { |
3 | data: ColourableSquare_Data; | 3 | data: ColourableSquare_Data; |
4 | methods { | 4 | methods { |
diff --git a/src/lib/ecore/ecore_event_message.eo b/src/lib/ecore/ecore_event_message.eo index aae68c1..80ec985 100644 --- a/src/lib/ecore/ecore_event_message.eo +++ b/src/lib/ecore/ecore_event_message.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ecore.Event.Message (Efl.Loop_Message) | 1 | class Ecore.Event.Message extends Efl.Loop_Message |
2 | { | 2 | { |
3 | [[ For Legacy API usage Only. Legacy Ecore Events ]] | 3 | [[ For Legacy API usage Only. Legacy Ecore Events ]] |
4 | methods { | 4 | methods { |
diff --git a/src/lib/ecore/ecore_event_message_handler.eo b/src/lib/ecore/ecore_event_message_handler.eo index f6f9c07..c2bc6b9 100644 --- a/src/lib/ecore/ecore_event_message_handler.eo +++ b/src/lib/ecore/ecore_event_message_handler.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ecore.Event.Message.Handler (Efl.Loop_Message_Handler) | 1 | class Ecore.Event.Message.Handler extends Efl.Loop_Message_Handler |
2 | { | 2 | { |
3 | [[ For Legacy API usage Only | 3 | [[ For Legacy API usage Only |
4 | This class is rather hacky/messy as it's really internal glue | 4 | This class is rather hacky/messy as it's really internal glue |
diff --git a/src/lib/ecore/ecore_exe.eo b/src/lib/ecore/ecore_exe.eo index 5d9084f..899d8a0 100644 --- a/src/lib/ecore/ecore_exe.eo +++ b/src/lib/ecore/ecore_exe.eo | |||
@@ -39,7 +39,7 @@ enum Ecore.Exe_Flags | |||
39 | isolate_io = 1024, [[Try and isolate stdin/out and err of the process so it isn't shared with the parent.]] | 39 | isolate_io = 1024, [[Try and isolate stdin/out and err of the process so it isn't shared with the parent.]] |
40 | } | 40 | } |
41 | 41 | ||
42 | class Ecore.Exe (Efl.Object, Efl.Control) | 42 | class Ecore.Exe extends Efl.Object implements Efl.Control |
43 | { | 43 | { |
44 | [[Ecore.Exe is responsible for managing portable process spawning. | 44 | [[Ecore.Exe is responsible for managing portable process spawning. |
45 | 45 | ||
diff --git a/src/lib/ecore/efl_accelerate_interpolator.eo b/src/lib/ecore/efl_accelerate_interpolator.eo index 3c94735..793f8b6 100644 --- a/src/lib/ecore/efl_accelerate_interpolator.eo +++ b/src/lib/ecore/efl_accelerate_interpolator.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Accelerate_Interpolator (Efl.Object, Efl.Interpolator) | 1 | class Efl.Accelerate_Interpolator extends Efl.Object implements Efl.Interpolator |
2 | { | 2 | { |
3 | [[Efl accelerate interpolator class | 3 | [[Efl accelerate interpolator class |
4 | 4 | ||
diff --git a/src/lib/ecore/efl_app.eo b/src/lib/ecore/efl_app.eo index 860de3a..30f0e98 100644 --- a/src/lib/ecore/efl_app.eo +++ b/src/lib/ecore/efl_app.eo | |||
@@ -1,6 +1,6 @@ | |||
1 | import efl_types; | 1 | import efl_types; |
2 | 2 | ||
3 | class Efl.App (Efl.Loop) | 3 | class Efl.App extends Efl.Loop |
4 | { | 4 | { |
5 | [[ ]] | 5 | [[ ]] |
6 | methods { | 6 | methods { |
diff --git a/src/lib/ecore/efl_appthread.eo b/src/lib/ecore/efl_appthread.eo index 436846e..964d128 100644 --- a/src/lib/ecore/efl_appthread.eo +++ b/src/lib/ecore/efl_appthread.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Appthread (Efl.Loop, Efl.ThreadIO) | 1 | class Efl.Appthread extends Efl.Loop implements Efl.ThreadIO |
2 | { | 2 | { |
3 | [[ ]] | 3 | [[ ]] |
4 | methods { | 4 | methods { |
diff --git a/src/lib/ecore/efl_bounce_interpolator.eo b/src/lib/ecore/efl_bounce_interpolator.eo index eaa5512..85dc219 100644 --- a/src/lib/ecore/efl_bounce_interpolator.eo +++ b/src/lib/ecore/efl_bounce_interpolator.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Bounce_Interpolator (Efl.Object, Efl.Interpolator) | 1 | class Efl.Bounce_Interpolator extends Efl.Object implements Efl.Interpolator |
2 | { | 2 | { |
3 | [[Efl bounce interpolator class]] | 3 | [[Efl bounce interpolator class]] |
4 | data: Efl_Bounce_Interpolator_Data; | 4 | data: Efl_Bounce_Interpolator_Data; |
diff --git a/src/lib/ecore/efl_cubic_bezier_interpolator.eo b/src/lib/ecore/efl_cubic_bezier_interpolator.eo index 9d910f4..a4dd964 100644 --- a/src/lib/ecore/efl_cubic_bezier_interpolator.eo +++ b/src/lib/ecore/efl_cubic_bezier_interpolator.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Cubic_Bezier_Interpolator (Efl.Object, Efl.Interpolator) | 1 | class Efl.Cubic_Bezier_Interpolator extends Efl.Object implements Efl.Interpolator |
2 | { | 2 | { |
3 | [[Efl cubic_bezier interpolator class]] | 3 | [[Efl cubic_bezier interpolator class]] |
4 | data: Efl_Cubic_Bezier_Interpolator_Data; | 4 | data: Efl_Cubic_Bezier_Interpolator_Data; |
diff --git a/src/lib/ecore/efl_decelerate_interpolator.eo b/src/lib/ecore/efl_decelerate_interpolator.eo index 1662cff..3e376f8 100644 --- a/src/lib/ecore/efl_decelerate_interpolator.eo +++ b/src/lib/ecore/efl_decelerate_interpolator.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Decelerate_Interpolator (Efl.Object, Efl.Interpolator) | 1 | class Efl.Decelerate_Interpolator extends Efl.Object implements Efl.Interpolator |
2 | { | 2 | { |
3 | [[Efl decelerate interpolator class | 3 | [[Efl decelerate interpolator class |
4 | 4 | ||
diff --git a/src/lib/ecore/efl_divisor_interpolator.eo b/src/lib/ecore/efl_divisor_interpolator.eo index 487f8f2..f9baae5 100644 --- a/src/lib/ecore/efl_divisor_interpolator.eo +++ b/src/lib/ecore/efl_divisor_interpolator.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Divisor_Interpolator (Efl.Object, Efl.Interpolator) | 1 | class Efl.Divisor_Interpolator extends Efl.Object implements Efl.Interpolator |
2 | { | 2 | { |
3 | [[Efl divisor interpolator class]] | 3 | [[Efl divisor interpolator class]] |
4 | data: Efl_Divisor_Interpolator_Data; | 4 | data: Efl_Divisor_Interpolator_Data; |
diff --git a/src/lib/ecore/efl_exe.eo b/src/lib/ecore/efl_exe.eo index c58451c..54249da 100644 --- a/src/lib/ecore/efl_exe.eo +++ b/src/lib/ecore/efl_exe.eo | |||
@@ -19,7 +19,7 @@ enum Efl.Exe_Flags { | |||
19 | hide_io = 4 | 19 | hide_io = 4 |
20 | } | 20 | } |
21 | 21 | ||
22 | class Efl.Exe (Efl.Task) | 22 | class Efl.Exe extends Efl.Task |
23 | { | 23 | { |
24 | [[ ]] | 24 | [[ ]] |
25 | methods { | 25 | methods { |
diff --git a/src/lib/ecore/efl_io_buffered_stream.eo b/src/lib/ecore/efl_io_buffered_stream.eo index 2104b3f..8e22b82 100644 --- a/src/lib/ecore/efl_io_buffered_stream.eo +++ b/src/lib/ecore/efl_io_buffered_stream.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Io.Buffered_Stream (Efl.Loop_Consumer, Efl.Io.Reader, Efl.Io.Writer, Efl.Io.Closer) { | 1 | class Efl.Io.Buffered_Stream extends Efl.Loop_Consumer implements Efl.Io.Reader, Efl.Io.Writer, Efl.Io.Closer { |
2 | [[A wrapper object offering easy to use buffered streams over existing I/O class. | 2 | [[A wrapper object offering easy to use buffered streams over existing I/O class. |
3 | 3 | ||
4 | The buffered stream encapsulates an actual @Efl.Io.Reader or | 4 | The buffered stream encapsulates an actual @Efl.Io.Reader or |
diff --git a/src/lib/ecore/efl_io_copier.eo b/src/lib/ecore/efl_io_copier.eo index 423233a..2565fba 100644 --- a/src/lib/ecore/efl_io_copier.eo +++ b/src/lib/ecore/efl_io_copier.eo | |||
@@ -1,6 +1,6 @@ | |||
1 | import eina_types; | 1 | import eina_types; |
2 | 2 | ||
3 | class Efl.Io.Copier (Efl.Loop_Consumer, Efl.Io.Closer) { | 3 | class Efl.Io.Copier extends Efl.Loop_Consumer implements Efl.Io.Closer { |
4 | [[Copy from an @Efl.Io.Reader source to @Efl.Io.Writer destination. | 4 | [[Copy from an @Efl.Io.Reader source to @Efl.Io.Writer destination. |
5 | 5 | ||
6 | During usage it will keep reference to @.source and | 6 | During usage it will keep reference to @.source and |
diff --git a/src/lib/ecore/efl_io_file.eo b/src/lib/ecore/efl_io_file.eo index b586a88..c0b48c3 100644 --- a/src/lib/ecore/efl_io_file.eo +++ b/src/lib/ecore/efl_io_file.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Io.File (Efl.Loop_Fd, Efl.File, Efl.Io.Reader_Fd, Efl.Io.Writer_Fd, Efl.Io.Closer_Fd, Efl.Io.Sizer_Fd, Efl.Io.Positioner_Fd) { | 1 | class Efl.Io.File extends Efl.Loop_Fd implements Efl.File, Efl.Io.Reader_Fd, Efl.Io.Writer_Fd, Efl.Io.Closer_Fd, Efl.Io.Sizer_Fd, Efl.Io.Positioner_Fd { |
2 | [[File access (open, close, read, write, lseek, ftruncate) | 2 | [[File access (open, close, read, write, lseek, ftruncate) |
3 | 3 | ||
4 | @Efl.Io.Closer.close_on_exec and | 4 | @Efl.Io.Closer.close_on_exec and |
diff --git a/src/lib/ecore/efl_io_stderr.eo b/src/lib/ecore/efl_io_stderr.eo index 8b92505..c8ecff3 100644 --- a/src/lib/ecore/efl_io_stderr.eo +++ b/src/lib/ecore/efl_io_stderr.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Io.Stderr (Efl.Loop_Fd, Efl.Io.Writer_Fd) { | 1 | class Efl.Io.Stderr extends Efl.Loop_Fd implements Efl.Io.Writer_Fd { |
2 | [[Application's standard error (stderr). | 2 | [[Application's standard error (stderr). |
3 | 3 | ||
4 | @since 1.19 | 4 | @since 1.19 |
diff --git a/src/lib/ecore/efl_io_stdin.eo b/src/lib/ecore/efl_io_stdin.eo index 8389ed2..1d4b914 100644 --- a/src/lib/ecore/efl_io_stdin.eo +++ b/src/lib/ecore/efl_io_stdin.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Io.Stdin (Efl.Loop_Fd, Efl.Io.Reader_Fd) { | 1 | class Efl.Io.Stdin extends Efl.Loop_Fd implements Efl.Io.Reader_Fd { |
2 | [[Application's standard input (stdin). | 2 | [[Application's standard input (stdin). |
3 | 3 | ||
4 | @since 1.19 | 4 | @since 1.19 |
diff --git a/src/lib/ecore/efl_io_stdout.eo b/src/lib/ecore/efl_io_stdout.eo index d985281..1bc7099 100644 --- a/src/lib/ecore/efl_io_stdout.eo +++ b/src/lib/ecore/efl_io_stdout.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Io.Stdout (Efl.Loop_Fd, Efl.Io.Writer_Fd) { | 1 | class Efl.Io.Stdout extends Efl.Loop_Fd implements Efl.Io.Writer_Fd { |
2 | [[Application's standard output (stdout). | 2 | [[Application's standard output (stdout). |
3 | 3 | ||
4 | @since 1.19 | 4 | @since 1.19 |
diff --git a/src/lib/ecore/efl_linear_interpolator.eo b/src/lib/ecore/efl_linear_interpolator.eo index 8872616..748a3be 100644 --- a/src/lib/ecore/efl_linear_interpolator.eo +++ b/src/lib/ecore/efl_linear_interpolator.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Linear_Interpolator (Efl.Object, Efl.Interpolator) | 1 | class Efl.Linear_Interpolator extends Efl.Object implements Efl.Interpolator |
2 | { | 2 | { |
3 | [[Efl linear interpolator class]] | 3 | [[Efl linear interpolator class]] |
4 | data: Efl_Linear_Interpolator_Data; | 4 | data: Efl_Linear_Interpolator_Data; |
diff --git a/src/lib/ecore/efl_loop_fd.eo b/src/lib/ecore/efl_loop_fd.eo index 3a40861..5ced4e7 100644 --- a/src/lib/ecore/efl_loop_fd.eo +++ b/src/lib/ecore/efl_loop_fd.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Loop_Fd (Efl.Loop_Consumer) | 1 | class Efl.Loop_Fd extends Efl.Loop_Consumer |
2 | { | 2 | { |
3 | [[Fds are objects that watch the activity on a given | 3 | [[Fds are objects that watch the activity on a given |
4 | file descriptor. This file descriptor can be a | 4 | file descriptor. This file descriptor can be a |
diff --git a/src/lib/ecore/efl_loop_handler.eo b/src/lib/ecore/efl_loop_handler.eo index 0058ceb..aab8443 100644 --- a/src/lib/ecore/efl_loop_handler.eo +++ b/src/lib/ecore/efl_loop_handler.eo | |||
@@ -7,7 +7,7 @@ enum Efl.Loop_Handler_Flags { | |||
7 | error = 4, [[ Error channel input is desired ]] | 7 | error = 4, [[ Error channel input is desired ]] |
8 | } | 8 | } |
9 | 9 | ||
10 | class Efl.Loop_Handler (Efl.Object) | 10 | class Efl.Loop_Handler extends Efl.Object |
11 | { | 11 | { |
12 | [[ An object that describes an low-level source of I/O to listen to | 12 | [[ An object that describes an low-level source of I/O to listen to |
13 | for available data to be read or written, depending on the OS and data | 13 | for available data to be read or written, depending on the OS and data |
diff --git a/src/lib/ecore/efl_loop_message.eo b/src/lib/ecore/efl_loop_message.eo index 2aec142..ef5ec0c 100644 --- a/src/lib/ecore/efl_loop_message.eo +++ b/src/lib/ecore/efl_loop_message.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Loop_Message (Efl.Object) | 1 | class Efl.Loop_Message extends Efl.Object |
2 | { | 2 | { |
3 | [[Base message payload object class. Inherit this and extend for | 3 | [[Base message payload object class. Inherit this and extend for |
4 | specific message types.]] | 4 | specific message types.]] |
diff --git a/src/lib/ecore/efl_loop_message_future.eo b/src/lib/ecore/efl_loop_message_future.eo index 5a86333..047c1c4 100644 --- a/src/lib/ecore/efl_loop_message_future.eo +++ b/src/lib/ecore/efl_loop_message_future.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Loop_Message_Future (Efl.Loop_Message) | 1 | class Efl.Loop_Message_Future extends Efl.Loop_Message |
2 | { | 2 | { |
3 | [[ Used internally for futures on the loop ]] | 3 | [[ Used internally for futures on the loop ]] |
4 | methods { | 4 | methods { |
diff --git a/src/lib/ecore/efl_loop_message_future_handler.eo b/src/lib/ecore/efl_loop_message_future_handler.eo index 0b30847..a676555 100644 --- a/src/lib/ecore/efl_loop_message_future_handler.eo +++ b/src/lib/ecore/efl_loop_message_future_handler.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Loop_Message_Future_Handler (Efl.Loop_Message_Handler) | 1 | class Efl.Loop_Message_Future_Handler extends Efl.Loop_Message_Handler |
2 | { | 2 | { |
3 | [[ Internal use for future on an efl loop - replacing legacy ecore events ]] | 3 | [[ Internal use for future on an efl loop - replacing legacy ecore events ]] |
4 | methods { | 4 | methods { |
diff --git a/src/lib/ecore/efl_loop_message_handler.eo b/src/lib/ecore/efl_loop_message_handler.eo index bf77810..291b0bc 100644 --- a/src/lib/ecore/efl_loop_message_handler.eo +++ b/src/lib/ecore/efl_loop_message_handler.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Loop_Message_Handler (Efl.Object) | 1 | class Efl.Loop_Message_Handler extends Efl.Object |
2 | { | 2 | { |
3 | [[Message handlers represent a single message type on the Efl.Loop | 3 | [[Message handlers represent a single message type on the Efl.Loop |
4 | parent object. These message handlers can be used to listen for | 4 | parent object. These message handlers can be used to listen for |
diff --git a/src/lib/ecore/efl_loop_timer.eo b/src/lib/ecore/efl_loop_timer.eo index 2b5ce08..44841d8 100644 --- a/src/lib/ecore/efl_loop_timer.eo +++ b/src/lib/ecore/efl_loop_timer.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Loop_Timer (Efl.Loop_Consumer) | 1 | class Efl.Loop_Timer extends Efl.Loop_Consumer |
2 | { | 2 | { |
3 | [[Timers are objects that will call a given callback at some point | 3 | [[Timers are objects that will call a given callback at some point |
4 | in the future and repeat that tick at a given interval. | 4 | in the future and repeat that tick at a given interval. |
diff --git a/src/lib/ecore/efl_model_composite.eo b/src/lib/ecore/efl_model_composite.eo index be05c98..d353a2e 100644 --- a/src/lib/ecore/efl_model_composite.eo +++ b/src/lib/ecore/efl_model_composite.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Model_Composite (Efl.Model_Loop, Efl.Ui.View) | 1 | class Efl.Model_Composite extends Efl.Model_Loop implements Efl.Ui.View |
2 | { | 2 | { |
3 | [[Efl model for all composite class which provide a unified API to set source of data]] | 3 | [[Efl model for all composite class which provide a unified API to set source of data]] |
4 | implements { | 4 | implements { |
diff --git a/src/lib/ecore/efl_model_composite_boolean.eo b/src/lib/ecore/efl_model_composite_boolean.eo index 21bf540..47c7e3c 100644 --- a/src/lib/ecore/efl_model_composite_boolean.eo +++ b/src/lib/ecore/efl_model_composite_boolean.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Model_Composite_Boolean (Efl.Model_Composite) | 1 | class Efl.Model_Composite_Boolean extends Efl.Model_Composite |
2 | { | 2 | { |
3 | [[Efl model composite boolean class]] | 3 | [[Efl model composite boolean class]] |
4 | methods { | 4 | methods { |
diff --git a/src/lib/ecore/efl_model_composite_boolean_children.eo b/src/lib/ecore/efl_model_composite_boolean_children.eo index 45bb2f6..d06a9cc 100644 --- a/src/lib/ecore/efl_model_composite_boolean_children.eo +++ b/src/lib/ecore/efl_model_composite_boolean_children.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Model_Composite_Boolean_Children (Efl.Model_Composite) | 1 | class Efl.Model_Composite_Boolean_Children extends Efl.Model_Composite |
2 | { | 2 | { |
3 | [[Efl model composite boolean children class]] | 3 | [[Efl model composite boolean children class]] |
4 | methods { | 4 | methods { |
diff --git a/src/lib/ecore/efl_model_composite_selection.eo b/src/lib/ecore/efl_model_composite_selection.eo index fca9b9c..35ecc27 100644 --- a/src/lib/ecore/efl_model_composite_selection.eo +++ b/src/lib/ecore/efl_model_composite_selection.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Model_Composite_Selection (Efl.Model_Composite_Boolean) | 1 | class Efl.Model_Composite_Selection extends Efl.Model_Composite_Boolean |
2 | { | 2 | { |
3 | [[Efl model composite selection class]] | 3 | [[Efl model composite selection class]] |
4 | implements { | 4 | implements { |
diff --git a/src/lib/ecore/efl_model_composite_selection_children.eo b/src/lib/ecore/efl_model_composite_selection_children.eo index ef2af4d..ce59ea2 100644 --- a/src/lib/ecore/efl_model_composite_selection_children.eo +++ b/src/lib/ecore/efl_model_composite_selection_children.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Model_Composite_Selection_Children (Efl.Model_Composite_Boolean_Children) | 1 | class Efl.Model_Composite_Selection_Children extends Efl.Model_Composite_Boolean_Children |
2 | { | 2 | { |
3 | [[Efl model composite selection children class]] | 3 | [[Efl model composite selection children class]] |
4 | implements { | 4 | implements { |
diff --git a/src/lib/ecore/efl_model_container.eo b/src/lib/ecore/efl_model_container.eo index 04b1d5a..04fbdf8 100644 --- a/src/lib/ecore/efl_model_container.eo +++ b/src/lib/ecore/efl_model_container.eo | |||
@@ -1,6 +1,6 @@ | |||
1 | import eina_types; | 1 | import eina_types; |
2 | 2 | ||
3 | class Efl.Model_Container (Efl.Model_Loop) | 3 | class Efl.Model_Container extends Efl.Model_Loop |
4 | { | 4 | { |
5 | [[ | 5 | [[ |
6 | Class used to create data models from Eina containers. | 6 | Class used to create data models from Eina containers. |
diff --git a/src/lib/ecore/efl_model_container_item.eo b/src/lib/ecore/efl_model_container_item.eo index f20ae03..f085043 100644 --- a/src/lib/ecore/efl_model_container_item.eo +++ b/src/lib/ecore/efl_model_container_item.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Model_Container_Item (Efl.Object, Efl.Model) | 1 | class Efl.Model_Container_Item extends Efl.Object implements Efl.Model |
2 | { | 2 | { |
3 | [[ | 3 | [[ |
4 | Used as a child of @Efl.Model_Container. | 4 | Used as a child of @Efl.Model_Container. |
diff --git a/src/lib/ecore/efl_model_item.eo b/src/lib/ecore/efl_model_item.eo index 1276be6..8543eec 100644 --- a/src/lib/ecore/efl_model_item.eo +++ b/src/lib/ecore/efl_model_item.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Model_Item (Efl.Model_Loop) | 1 | class Efl.Model_Item extends Efl.Model_Loop |
2 | { | 2 | { |
3 | [[ | 3 | [[ |
4 | Generic model that allows any property to be manually set. | 4 | Generic model that allows any property to be manually set. |
diff --git a/src/lib/ecore/efl_model_loop.eo b/src/lib/ecore/efl_model_loop.eo index be4fe6a..f0b34ab 100644 --- a/src/lib/ecore/efl_model_loop.eo +++ b/src/lib/ecore/efl_model_loop.eo | |||
@@ -1,7 +1,7 @@ | |||
1 | class Efl.Model_Loop (Efl.Loop_Consumer, Efl.Model) | 1 | class Efl.Model_Loop extends Efl.Loop_Consumer implements Efl.Model |
2 | { | 2 | { |
3 | data: null; | 3 | data: null; |
4 | implements { | 4 | implements { |
5 | Efl.Model.property_ready_get; | 5 | Efl.Model.property_ready_get; |
6 | } | 6 | } |
7 | } \ No newline at end of file | 7 | } |
diff --git a/src/lib/ecore/efl_model_view.eo b/src/lib/ecore/efl_model_view.eo index 244d8f4..ccfa354 100644 --- a/src/lib/ecore/efl_model_view.eo +++ b/src/lib/ecore/efl_model_view.eo | |||
@@ -17,7 +17,7 @@ function EflModelViewPropertySet { | |||
17 | return: future<any_value_ptr>; [[The value that was finally set.]] | 17 | return: future<any_value_ptr>; [[The value that was finally set.]] |
18 | }; | 18 | }; |
19 | 19 | ||
20 | class Efl.Model_View (Efl.Model_Composite) | 20 | class Efl.Model_View extends Efl.Model_Composite |
21 | { | 21 | { |
22 | [[Efl model providing helpers for custom properties used when linking a model to a view and you need to generate/adapt values for display. | 22 | [[Efl model providing helpers for custom properties used when linking a model to a view and you need to generate/adapt values for display. |
23 | 23 | ||
diff --git a/src/lib/ecore/efl_sinusoidal_interpolator.eo b/src/lib/ecore/efl_sinusoidal_interpolator.eo index d602b96..2f644ff 100644 --- a/src/lib/ecore/efl_sinusoidal_interpolator.eo +++ b/src/lib/ecore/efl_sinusoidal_interpolator.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Sinusoidal_Interpolator (Efl.Object, Efl.Interpolator) | 1 | class Efl.Sinusoidal_Interpolator extends Efl.Object implements Efl.Interpolator |
2 | { | 2 | { |
3 | [[Efl sinusoidal interpolator class | 3 | [[Efl sinusoidal interpolator class |
4 | 4 | ||
diff --git a/src/lib/ecore/efl_spring_interpolator.eo b/src/lib/ecore/efl_spring_interpolator.eo index 2169816..1459342 100644 --- a/src/lib/ecore/efl_spring_interpolator.eo +++ b/src/lib/ecore/efl_spring_interpolator.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Spring_Interpolator (Efl.Object, Efl.Interpolator) | 1 | class Efl.Spring_Interpolator extends Efl.Object implements Efl.Interpolator |
2 | { | 2 | { |
3 | [[Efl spring interpolator class]] | 3 | [[Efl spring interpolator class]] |
4 | data: Efl_Spring_Interpolator_Data; | 4 | data: Efl_Spring_Interpolator_Data; |
diff --git a/src/lib/ecore/efl_thread.eo b/src/lib/ecore/efl_thread.eo index 565bca4..aedc0c2 100644 --- a/src/lib/ecore/efl_thread.eo +++ b/src/lib/ecore/efl_thread.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Thread (Efl.Task, Efl.ThreadIO) | 1 | class Efl.Thread extends Efl.Task implements Efl.ThreadIO |
2 | { | 2 | { |
3 | methods { | 3 | methods { |
4 | } | 4 | } |
diff --git a/src/lib/ecore_audio/ecore_audio_in.eo b/src/lib/ecore_audio/ecore_audio_in.eo index 43f0d7b..9b79e62 100644 --- a/src/lib/ecore_audio/ecore_audio_in.eo +++ b/src/lib/ecore_audio/ecore_audio_in.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ecore.Audio.In (Ecore.Audio) | 1 | class Ecore.Audio.In extends Ecore.Audio |
2 | { | 2 | { |
3 | [[Ecore Audio input object.]] | 3 | [[Ecore Audio input object.]] |
4 | eo_prefix: ecore_audio_obj_in; | 4 | eo_prefix: ecore_audio_obj_in; |
diff --git a/src/lib/ecore_audio/ecore_audio_in_sndfile.eo b/src/lib/ecore_audio/ecore_audio_in_sndfile.eo index 533e4b2..76aeb42 100644 --- a/src/lib/ecore_audio/ecore_audio_in_sndfile.eo +++ b/src/lib/ecore_audio/ecore_audio_in_sndfile.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ecore.Audio.In.Sndfile (Ecore.Audio.In) | 1 | class Ecore.Audio.In.Sndfile extends Ecore.Audio.In |
2 | { | 2 | { |
3 | [[Ecore Audio sndfile input.]] | 3 | [[Ecore Audio sndfile input.]] |
4 | eo_prefix: ecore_audio_obj_in_sndfile; | 4 | eo_prefix: ecore_audio_obj_in_sndfile; |
diff --git a/src/lib/ecore_audio/ecore_audio_in_tone.eo b/src/lib/ecore_audio/ecore_audio_in_tone.eo index 8cdd935..8e6e3d4 100644 --- a/src/lib/ecore_audio/ecore_audio_in_tone.eo +++ b/src/lib/ecore_audio/ecore_audio_in_tone.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ecore.Audio.In.Tone (Ecore.Audio.In) | 1 | class Ecore.Audio.In.Tone extends Ecore.Audio.In |
2 | { | 2 | { |
3 | [[Ecore Audio tone input.]] | 3 | [[Ecore Audio tone input.]] |
4 | eo_prefix: ecore_audio_obj_in_tone; | 4 | eo_prefix: ecore_audio_obj_in_tone; |
diff --git a/src/lib/ecore_audio/ecore_audio_out.eo b/src/lib/ecore_audio/ecore_audio_out.eo index a89e15c..72d65d1 100644 --- a/src/lib/ecore_audio/ecore_audio_out.eo +++ b/src/lib/ecore_audio/ecore_audio_out.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ecore.Audio.Out (Ecore.Audio) | 1 | class Ecore.Audio.Out extends Ecore.Audio |
2 | { | 2 | { |
3 | [[Ecore Audio output object.]] | 3 | [[Ecore Audio output object.]] |
4 | 4 | ||
diff --git a/src/lib/ecore_audio/ecore_audio_out_pulse.eo b/src/lib/ecore_audio/ecore_audio_out_pulse.eo index 2e97f4e..6d28e7e 100644 --- a/src/lib/ecore_audio/ecore_audio_out_pulse.eo +++ b/src/lib/ecore_audio/ecore_audio_out_pulse.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ecore.Audio.Out.Pulse (Ecore.Audio.Out) | 1 | class Ecore.Audio.Out.Pulse extends Ecore.Audio.Out |
2 | { | 2 | { |
3 | [[Ecore audio ouput for PulseAudio.]] | 3 | [[Ecore audio ouput for PulseAudio.]] |
4 | eo_prefix: ecore_audio_obj_out_pulse; | 4 | eo_prefix: ecore_audio_obj_out_pulse; |
diff --git a/src/lib/ecore_audio/ecore_audio_out_sndfile.eo b/src/lib/ecore_audio/ecore_audio_out_sndfile.eo index 1045fd4..e5358d5 100644 --- a/src/lib/ecore_audio/ecore_audio_out_sndfile.eo +++ b/src/lib/ecore_audio/ecore_audio_out_sndfile.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ecore.Audio.Out.Sndfile (Ecore.Audio.Out) | 1 | class Ecore.Audio.Out.Sndfile extends Ecore.Audio.Out |
2 | { | 2 | { |
3 | [[Ecore audio output to the sndfile library.]] | 3 | [[Ecore audio output to the sndfile library.]] |
4 | eo_prefix: ecore_audio_obj_out_sndfile; | 4 | eo_prefix: ecore_audio_obj_out_sndfile; |
diff --git a/src/lib/ecore_audio/ecore_audio_out_wasapi.eo b/src/lib/ecore_audio/ecore_audio_out_wasapi.eo index 14c9127..00c503d 100644 --- a/src/lib/ecore_audio/ecore_audio_out_wasapi.eo +++ b/src/lib/ecore_audio/ecore_audio_out_wasapi.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ecore.Audio.Out.Wasapi (Ecore.Audio.Out) | 1 | class Ecore.Audio.Out.Wasapi extends Ecore.Audio.Out |
2 | { | 2 | { |
3 | [[Ecore audio ouput for WasapiAudio.]] | 3 | [[Ecore audio ouput for WasapiAudio.]] |
4 | eo_prefix: ecore_audio_obj_out_wasapi; | 4 | eo_prefix: ecore_audio_obj_out_wasapi; |
diff --git a/src/lib/ecore_con/ecore_con_eet_base.eo b/src/lib/ecore_con/ecore_con_eet_base.eo index 76bdb3a..26717ef 100644 --- a/src/lib/ecore_con/ecore_con_eet_base.eo +++ b/src/lib/ecore_con/ecore_con_eet_base.eo | |||
@@ -5,9 +5,9 @@ type @extern Ecore_Con_Eet_Raw_Data_Cb: __undefined_type; [[Ecore connection eet | |||
5 | struct @extern Eet.Data.Descriptor; [[Eet data descriptor data structure]] | 5 | struct @extern Eet.Data.Descriptor; [[Eet data descriptor data structure]] |
6 | struct Ecore.Con.Reply; [[Ecore connection reply data structure]] | 6 | struct Ecore.Con.Reply; [[Ecore connection reply data structure]] |
7 | 7 | ||
8 | class Ecore.Con.Eet.Base (Efl.Object) { | 8 | class Ecore.Con.Eet.Base extends Efl.Object { |
9 | [[Ecore Connection Eet Base class. | 9 | [[Ecore Connection Eet Base class. |
10 | 10 | ||
11 | This class provides Eet data serialization features to Ecore Connection objects.]] | 11 | This class provides Eet data serialization features to Ecore Connection objects.]] |
12 | 12 | ||
13 | methods { | 13 | methods { |
diff --git a/src/lib/ecore_con/ecore_con_eet_client_obj.eo b/src/lib/ecore_con/ecore_con_eet_client_obj.eo index a9eb6bb..8b5955a 100644 --- a/src/lib/ecore_con/ecore_con_eet_client_obj.eo +++ b/src/lib/ecore_con/ecore_con_eet_client_obj.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ecore.Con.Eet.Client.Obj (Ecore.Con.Eet.Base) { | 1 | class Ecore.Con.Eet.Client.Obj extends Ecore.Con.Eet.Base { |
2 | [[Ecore Connection Eet Client class.]] | 2 | [[Ecore Connection Eet Client class.]] |
3 | 3 | ||
4 | eo_prefix: ecore_con_eet_client_obj; | 4 | eo_prefix: ecore_con_eet_client_obj; |
diff --git a/src/lib/ecore_con/ecore_con_eet_server_obj.eo b/src/lib/ecore_con/ecore_con_eet_server_obj.eo index d561833..11c97d4 100644 --- a/src/lib/ecore_con/ecore_con_eet_server_obj.eo +++ b/src/lib/ecore_con/ecore_con_eet_server_obj.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ecore.Con.Eet.Server.Obj (Ecore.Con.Eet.Base) { | 1 | class Ecore.Con.Eet.Server.Obj extends Ecore.Con.Eet.Base { |
2 | [[Ecore Connection Eet Server class.]] | 2 | [[Ecore Connection Eet Server class.]] |
3 | 3 | ||
4 | eo_prefix: ecore_con_eet_server_obj; | 4 | eo_prefix: ecore_con_eet_server_obj; |
diff --git a/src/lib/ecore_con/efl_net_control_access_point.eo b/src/lib/ecore_con/efl_net_control_access_point.eo index 5aaf13b..5390303 100644 --- a/src/lib/ecore_con/efl_net_control_access_point.eo +++ b/src/lib/ecore_con/efl_net_control_access_point.eo | |||
@@ -74,7 +74,7 @@ enum Efl.Net.Control.Access_Point_Proxy_Method { | |||
74 | unset, [[Only to be used with @Efl.Net.Control.Access_Point.configuration_proxy.]] | 74 | unset, [[Only to be used with @Efl.Net.Control.Access_Point.configuration_proxy.]] |
75 | } | 75 | } |
76 | 76 | ||
77 | class Efl.Net.Control.Access_Point (Efl.Loop_Consumer) { | 77 | class Efl.Net.Control.Access_Point extends Efl.Loop_Consumer { |
78 | [[An access point for network connectivity. | 78 | [[An access point for network connectivity. |
79 | 79 | ||
80 | The @Efl.Net.Control.Manager is composed of multiple technologies, each | 80 | The @Efl.Net.Control.Manager is composed of multiple technologies, each |
diff --git a/src/lib/ecore_con/efl_net_control_manager.eo b/src/lib/ecore_con/efl_net_control_manager.eo index cfe9145..5afdeb4 100644 --- a/src/lib/ecore_con/efl_net_control_manager.eo +++ b/src/lib/ecore_con/efl_net_control_manager.eo | |||
@@ -65,7 +65,7 @@ struct Efl.Net.Control.Agent_Browser_Url { | |||
65 | url: string; [[The URL to point the browser at.]] | 65 | url: string; [[The URL to point the browser at.]] |
66 | } | 66 | } |
67 | 67 | ||
68 | class Efl.Net.Control.Manager (Efl.Loop_Consumer) { | 68 | class Efl.Net.Control.Manager extends Efl.Loop_Consumer { |
69 | [[Controls network connectivity. | 69 | [[Controls network connectivity. |
70 | 70 | ||
71 | This class and its child objects are only useful to implement | 71 | This class and its child objects are only useful to implement |
diff --git a/src/lib/ecore_con/efl_net_control_technology.eo b/src/lib/ecore_con/efl_net_control_technology.eo index 04e0a4c..ccc2cf6 100644 --- a/src/lib/ecore_con/efl_net_control_technology.eo +++ b/src/lib/ecore_con/efl_net_control_technology.eo | |||
@@ -15,7 +15,7 @@ enum Efl.Net.Control.Technology_Type { | |||
15 | p2p, [[Type: Peer-2-Peer]] | 15 | p2p, [[Type: Peer-2-Peer]] |
16 | } | 16 | } |
17 | 17 | ||
18 | class Efl.Net.Control.Technology (Efl.Loop_Consumer) { | 18 | class Efl.Net.Control.Technology extends Efl.Loop_Consumer { |
19 | [[A technology that allows control of network access points. | 19 | [[A technology that allows control of network access points. |
20 | 20 | ||
21 | The @Efl.Net.Control.Manager is composed of multiple technologies, each | 21 | The @Efl.Net.Control.Manager is composed of multiple technologies, each |
diff --git a/src/lib/ecore_con/efl_net_dialer_http.eo b/src/lib/ecore_con/efl_net_dialer_http.eo index 95a1043..18c0c35 100644 --- a/src/lib/ecore_con/efl_net_dialer_http.eo +++ b/src/lib/ecore_con/efl_net_dialer_http.eo | |||
@@ -7,7 +7,7 @@ enum Efl.Net.Dialer_Http_Primary_Mode { | |||
7 | upload, [[HTTP upload mode]] | 7 | upload, [[HTTP upload mode]] |
8 | } | 8 | } |
9 | 9 | ||
10 | class Efl.Net.Dialer_Http (Efl.Loop_Consumer, Efl.Net.Dialer, Efl.Io.Sizer) { | 10 | class Efl.Net.Dialer_Http extends Efl.Loop_Consumer implements Efl.Net.Dialer, Efl.Io.Sizer { |
11 | [[HTTP Dialer (Client). | 11 | [[HTTP Dialer (Client). |
12 | 12 | ||
13 | The effective URL in use, if @.allow_redirects is $true will be | 13 | The effective URL in use, if @.allow_redirects is $true will be |
diff --git a/src/lib/ecore_con/efl_net_dialer_simple.eo b/src/lib/ecore_con/efl_net_dialer_simple.eo index 38ec878..0a5aa94 100644 --- a/src/lib/ecore_con/efl_net_dialer_simple.eo +++ b/src/lib/ecore_con/efl_net_dialer_simple.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Net.Dialer_Simple (Efl.Net.Socket_Simple, Efl.Net.Dialer) { | 1 | class Efl.Net.Dialer_Simple extends Efl.Net.Socket_Simple implements Efl.Net.Dialer { |
2 | [[Connects to a remote server offering an easy to use, buffered I/O. | 2 | [[Connects to a remote server offering an easy to use, buffered I/O. |
3 | 3 | ||
4 | The simple dialer is based on @Efl.Net.Socket_Simple, which | 4 | The simple dialer is based on @Efl.Net.Socket_Simple, which |
diff --git a/src/lib/ecore_con/efl_net_dialer_ssl.eo b/src/lib/ecore_con/efl_net_dialer_ssl.eo index c732e1c..832361b 100644 --- a/src/lib/ecore_con/efl_net_dialer_ssl.eo +++ b/src/lib/ecore_con/efl_net_dialer_ssl.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Net.Dialer_Ssl (Efl.Net.Socket_Ssl, Efl.Net.Dialer) { | 1 | class Efl.Net.Dialer_Ssl extends Efl.Net.Socket_Ssl implements Efl.Net.Dialer { |
2 | [[Connects to a remote SSL server using TCP. | 2 | [[Connects to a remote SSL server using TCP. |
3 | 3 | ||
4 | This creates an internal @Efl.Net.Dialer_Tcp and once connected | 4 | This creates an internal @Efl.Net.Dialer_Tcp and once connected |
diff --git a/src/lib/ecore_con/efl_net_dialer_tcp.eo b/src/lib/ecore_con/efl_net_dialer_tcp.eo index 757e926..75c7dee 100644 --- a/src/lib/ecore_con/efl_net_dialer_tcp.eo +++ b/src/lib/ecore_con/efl_net_dialer_tcp.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Net.Dialer_Tcp (Efl.Net.Socket_Tcp, Efl.Net.Dialer) { | 1 | class Efl.Net.Dialer_Tcp extends Efl.Net.Socket_Tcp implements Efl.Net.Dialer { |
2 | [[Connects to a remote TCP server. | 2 | [[Connects to a remote TCP server. |
3 | 3 | ||
4 | If the proxy is NULL (default), then the system proxy will be | 4 | If the proxy is NULL (default), then the system proxy will be |
diff --git a/src/lib/ecore_con/efl_net_dialer_udp.eo b/src/lib/ecore_con/efl_net_dialer_udp.eo index 4e5a407..af7aeec 100644 --- a/src/lib/ecore_con/efl_net_dialer_udp.eo +++ b/src/lib/ecore_con/efl_net_dialer_udp.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Net.Dialer_Udp (Efl.Net.Socket_Udp, Efl.Net.Dialer) { | 1 | class Efl.Net.Dialer_Udp extends Efl.Net.Socket_Udp implements Efl.Net.Dialer { |
2 | [[Connects to a remote UDP server. | 2 | [[Connects to a remote UDP server. |
3 | 3 | ||
4 | UDP proxies are not supported, not even using SOCKSv5. | 4 | UDP proxies are not supported, not even using SOCKSv5. |
diff --git a/src/lib/ecore_con/efl_net_dialer_unix.eo b/src/lib/ecore_con/efl_net_dialer_unix.eo index 9686cc2..f2454e5 100644 --- a/src/lib/ecore_con/efl_net_dialer_unix.eo +++ b/src/lib/ecore_con/efl_net_dialer_unix.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Net.Dialer_Unix (Efl.Net.Socket_Unix, Efl.Net.Dialer) { | 1 | class Efl.Net.Dialer_Unix extends Efl.Net.Socket_Unix implements Efl.Net.Dialer { |
2 | [[Connects to a local AF_UNIX server. | 2 | [[Connects to a local AF_UNIX server. |
3 | 3 | ||
4 | The dial address is a file system path (portable) or | 4 | The dial address is a file system path (portable) or |
diff --git a/src/lib/ecore_con/efl_net_dialer_websocket.eo b/src/lib/ecore_con/efl_net_dialer_websocket.eo index 6c8f0f1..f7a1812 100644 --- a/src/lib/ecore_con/efl_net_dialer_websocket.eo +++ b/src/lib/ecore_con/efl_net_dialer_websocket.eo | |||
@@ -47,7 +47,7 @@ struct Efl.Net.Dialer_Websocket_Closed_Reason { | |||
47 | message: string; [[Textual closing reason message]] | 47 | message: string; [[Textual closing reason message]] |
48 | } | 48 | } |
49 | 49 | ||
50 | class Efl.Net.Dialer_Websocket (Efl.Loop_Consumer, Efl.Net.Dialer) { | 50 | class Efl.Net.Dialer_Websocket extends Efl.Loop_Consumer implements Efl.Net.Dialer { |
51 | [[WebSocket Dialer (Client). | 51 | [[WebSocket Dialer (Client). |
52 | 52 | ||
53 | The WebSocket Protocol (https://tools.ietf.org/html/rfc6455) is | 53 | The WebSocket Protocol (https://tools.ietf.org/html/rfc6455) is |
diff --git a/src/lib/ecore_con/efl_net_dialer_windows.eo b/src/lib/ecore_con/efl_net_dialer_windows.eo index c15d5f8..202b636 100644 --- a/src/lib/ecore_con/efl_net_dialer_windows.eo +++ b/src/lib/ecore_con/efl_net_dialer_windows.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Net.Dialer_Windows (Efl.Net.Socket_Windows, Efl.Net.Dialer) { | 1 | class Efl.Net.Dialer_Windows extends Efl.Net.Socket_Windows implements Efl.Net.Dialer { |
2 | [[Connects to a Windows NamedPipe server. | 2 | [[Connects to a Windows NamedPipe server. |
3 | 3 | ||
4 | The dial address will have "\\\\.\\pipe\\" prepended as required by | 4 | The dial address will have "\\\\.\\pipe\\" prepended as required by |
diff --git a/src/lib/ecore_con/efl_net_ip_address.eo b/src/lib/ecore_con/efl_net_ip_address.eo index eebbb0a..3d12631 100644 --- a/src/lib/ecore_con/efl_net_ip_address.eo +++ b/src/lib/ecore_con/efl_net_ip_address.eo | |||
@@ -12,7 +12,7 @@ struct Efl.Net.Ip_Address_Resolve_Results { | |||
12 | results: array<Efl.Net.Ip_Address>; [[The resolved objects. Do not modify this array but you can keep reference to elements using efl_ref() and efl_unref()]] | 12 | results: array<Efl.Net.Ip_Address>; [[The resolved objects. Do not modify this array but you can keep reference to elements using efl_ref() and efl_unref()]] |
13 | } | 13 | } |
14 | 14 | ||
15 | class Efl.Net.Ip_Address (Efl.Object) { | 15 | class Efl.Net.Ip_Address extends Efl.Object { |
16 | [[An Internet Protocol (IP) Address. | 16 | [[An Internet Protocol (IP) Address. |
17 | 17 | ||
18 | This class is a set of helpers to translate to and from address | 18 | This class is a set of helpers to translate to and from address |
diff --git a/src/lib/ecore_con/efl_net_server_ip.eo b/src/lib/ecore_con/efl_net_server_ip.eo index 2c0a6bc..cb46921 100644 --- a/src/lib/ecore_con/efl_net_server_ip.eo +++ b/src/lib/ecore_con/efl_net_server_ip.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Net.Server_Ip (Efl.Net.Server_Fd) { | 1 | class Efl.Net.Server_Ip extends Efl.Net.Server_Fd { |
2 | [[An IP server. | 2 | [[An IP server. |
3 | 3 | ||
4 | @since 1.20 | 4 | @since 1.20 |
diff --git a/src/lib/ecore_con/efl_net_server_simple.eo b/src/lib/ecore_con/efl_net_server_simple.eo index 6e3e576..3934828 100644 --- a/src/lib/ecore_con/efl_net_server_simple.eo +++ b/src/lib/ecore_con/efl_net_server_simple.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Net.Server_Simple (Efl.Loop_Consumer, Efl.Net.Server) { | 1 | class Efl.Net.Server_Simple extends Efl.Loop_Consumer implements Efl.Net.Server { |
2 | [[A network server wrapper that creates clients based on @Efl.Net.Socket_Simple. | 2 | [[A network server wrapper that creates clients based on @Efl.Net.Socket_Simple. |
3 | 3 | ||
4 | This is just a wrapper server. It takes an actual server | 4 | This is just a wrapper server. It takes an actual server |
diff --git a/src/lib/ecore_con/efl_net_server_ssl.eo b/src/lib/ecore_con/efl_net_server_ssl.eo index 50ec24d..52b0bcc 100644 --- a/src/lib/ecore_con/efl_net_server_ssl.eo +++ b/src/lib/ecore_con/efl_net_server_ssl.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Net.Server_Ssl (Efl.Net.Server_Tcp) { | 1 | class Efl.Net.Server_Ssl extends Efl.Net.Server_Tcp { |
2 | [[A SSL server over TCP. | 2 | [[A SSL server over TCP. |
3 | 3 | ||
4 | @since 1.19 | 4 | @since 1.19 |
diff --git a/src/lib/ecore_con/efl_net_server_tcp.eo b/src/lib/ecore_con/efl_net_server_tcp.eo index b7c63a3..de6631a 100644 --- a/src/lib/ecore_con/efl_net_server_tcp.eo +++ b/src/lib/ecore_con/efl_net_server_tcp.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Net.Server_Tcp (Efl.Net.Server_Ip) { | 1 | class Efl.Net.Server_Tcp extends Efl.Net.Server_Ip { |
2 | [[A TCP server. | 2 | [[A TCP server. |
3 | 3 | ||
4 | @since 1.19 | 4 | @since 1.19 |
diff --git a/src/lib/ecore_con/efl_net_server_udp.eo b/src/lib/ecore_con/efl_net_server_udp.eo index afc5949..3e4138e 100644 --- a/src/lib/ecore_con/efl_net_server_udp.eo +++ b/src/lib/ecore_con/efl_net_server_udp.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Net.Server_Udp (Efl.Net.Server_Ip) { | 1 | class Efl.Net.Server_Udp extends Efl.Net.Server_Ip { |
2 | [[A UDP server. | 2 | [[A UDP server. |
3 | 3 | ||
4 | @since 1.19 | 4 | @since 1.19 |
diff --git a/src/lib/ecore_con/efl_net_server_udp_client.eo b/src/lib/ecore_con/efl_net_server_udp_client.eo index 6eeeede..205ca8b 100644 --- a/src/lib/ecore_con/efl_net_server_udp_client.eo +++ b/src/lib/ecore_con/efl_net_server_udp_client.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Net.Server_Udp_Client (Efl.Object, Efl.Net.Socket) { | 1 | class Efl.Net.Server_Udp_Client extends Efl.Object implements Efl.Net.Socket { |
2 | [[A UDP client child of Efl.Net.Server_Udp | 2 | [[A UDP client child of Efl.Net.Server_Udp |
3 | 3 | ||
4 | Unlike connection protocols such as TCP or Local, UDP doesn't | 4 | Unlike connection protocols such as TCP or Local, UDP doesn't |
diff --git a/src/lib/ecore_con/efl_net_server_unix.eo b/src/lib/ecore_con/efl_net_server_unix.eo index 9e82ea6..9e05dd6 100644 --- a/src/lib/ecore_con/efl_net_server_unix.eo +++ b/src/lib/ecore_con/efl_net_server_unix.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Net.Server_Unix (Efl.Net.Server_Fd) { | 1 | class Efl.Net.Server_Unix extends Efl.Net.Server_Fd { |
2 | [[An AF_UNIX server. | 2 | [[An AF_UNIX server. |
3 | 3 | ||
4 | The @Efl.Net.Server.serve method will call bind(2) directly. | 4 | The @Efl.Net.Server.serve method will call bind(2) directly. |
diff --git a/src/lib/ecore_con/efl_net_server_windows.eo b/src/lib/ecore_con/efl_net_server_windows.eo index 955d972..5bd087a 100644 --- a/src/lib/ecore_con/efl_net_server_windows.eo +++ b/src/lib/ecore_con/efl_net_server_windows.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Net.Server_Windows (Efl.Loop_Consumer, Efl.Net.Server) { | 1 | class Efl.Net.Server_Windows extends Efl.Loop_Consumer implements Efl.Net.Server { |
2 | [[A Windows NamedPipe server. | 2 | [[A Windows NamedPipe server. |
3 | 3 | ||
4 | The @Efl.Net.Server.serve method calls CreateNamedPipe() | 4 | The @Efl.Net.Server.serve method calls CreateNamedPipe() |
diff --git a/src/lib/ecore_con/efl_net_session.eo b/src/lib/ecore_con/efl_net_session.eo index 68965ff..84db3f8 100644 --- a/src/lib/ecore_con/efl_net_session.eo +++ b/src/lib/ecore_con/efl_net_session.eo | |||
@@ -27,7 +27,7 @@ enum Efl.Net.Session_Technology { | |||
27 | all = (Efl.Net.Session_Technology.ethernet | Efl.Net.Session_Technology.wifi | Efl.Net.Session_Technology.bluetooth | Efl.Net.Session_Technology.cellular | Efl.Net.Session_Technology.vpn | Efl.Net.Session_Technology.gadget), [[All technology types]] | 27 | all = (Efl.Net.Session_Technology.ethernet | Efl.Net.Session_Technology.wifi | Efl.Net.Session_Technology.bluetooth | Efl.Net.Session_Technology.cellular | Efl.Net.Session_Technology.vpn | Efl.Net.Session_Technology.gadget), [[All technology types]] |
28 | } | 28 | } |
29 | 29 | ||
30 | class Efl.Net.Session (Efl.Loop_Consumer) { | 30 | class Efl.Net.Session extends Efl.Loop_Consumer { |
31 | [[Used by application to request network connectivity. | 31 | [[Used by application to request network connectivity. |
32 | 32 | ||
33 | This API is targeted at applications that need access to the | 33 | This API is targeted at applications that need access to the |
diff --git a/src/lib/ecore_con/efl_net_socket_fd.eo b/src/lib/ecore_con/efl_net_socket_fd.eo index 951fe7f..c5b468b 100644 --- a/src/lib/ecore_con/efl_net_socket_fd.eo +++ b/src/lib/ecore_con/efl_net_socket_fd.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Net.Socket_Fd (Efl.Loop_Fd, Efl.Io.Reader_Fd, Efl.Io.Writer_Fd, Efl.Io.Closer_Fd, Efl.Net.Socket) { | 1 | class Efl.Net.Socket_Fd extends Efl.Loop_Fd implements Efl.Io.Reader_Fd, Efl.Io.Writer_Fd, Efl.Io.Closer_Fd, Efl.Net.Socket { |
2 | [[A base implementation for sockets over filedescriptors (fd) | 2 | [[A base implementation for sockets over filedescriptors (fd) |
3 | 3 | ||
4 | This is the common class and takes an existing FD, usually | 4 | This is the common class and takes an existing FD, usually |
diff --git a/src/lib/ecore_con/efl_net_socket_simple.eo b/src/lib/ecore_con/efl_net_socket_simple.eo index b204259..07b7c3e 100644 --- a/src/lib/ecore_con/efl_net_socket_simple.eo +++ b/src/lib/ecore_con/efl_net_socket_simple.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Net.Socket_Simple (Efl.Io.Buffered_Stream, Efl.Net.Socket) { | 1 | class Efl.Net.Socket_Simple extends Efl.Io.Buffered_Stream implements Efl.Net.Socket { |
2 | [[A wrapper socket offering an easy to use, buffered I/O. | 2 | [[A wrapper socket offering an easy to use, buffered I/O. |
3 | 3 | ||
4 | The simple socket encapsulates an actual @Efl.Net.Socket and | 4 | The simple socket encapsulates an actual @Efl.Net.Socket and |
diff --git a/src/lib/ecore_con/efl_net_socket_ssl.eo b/src/lib/ecore_con/efl_net_socket_ssl.eo index c8e3066..dc60763 100644 --- a/src/lib/ecore_con/efl_net_socket_ssl.eo +++ b/src/lib/ecore_con/efl_net_socket_ssl.eo | |||
@@ -1,7 +1,7 @@ | |||
1 | var Efl.Net.Socket_Ssl_Error.HANDSHAKE: Eina.Error; [[Failed SSL handshake]] | 1 | var Efl.Net.Socket_Ssl_Error.HANDSHAKE: Eina.Error; [[Failed SSL handshake]] |
2 | var Efl.Net.Socket_Ssl_Error.CERTIFICATE_VERIFY_FAILED: Eina.Error; [[Failed to verify peer's certificate]] | 2 | var Efl.Net.Socket_Ssl_Error.CERTIFICATE_VERIFY_FAILED: Eina.Error; [[Failed to verify peer's certificate]] |
3 | 3 | ||
4 | class Efl.Net.Socket_Ssl (Efl.Loop_Consumer, Efl.Net.Socket) { | 4 | class Efl.Net.Socket_Ssl extends Efl.Loop_Consumer implements Efl.Net.Socket { |
5 | [[A wrapper socket doing SSL (Secure Sockets Layer). | 5 | [[A wrapper socket doing SSL (Secure Sockets Layer). |
6 | 6 | ||
7 | Use this wrapper around an existing socket for secure | 7 | Use this wrapper around an existing socket for secure |
diff --git a/src/lib/ecore_con/efl_net_socket_tcp.eo b/src/lib/ecore_con/efl_net_socket_tcp.eo index de40b1d..d3f0d5b 100644 --- a/src/lib/ecore_con/efl_net_socket_tcp.eo +++ b/src/lib/ecore_con/efl_net_socket_tcp.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Net.Socket_Tcp (Efl.Net.Socket_Fd) { | 1 | class Efl.Net.Socket_Tcp extends Efl.Net.Socket_Fd { |
2 | [[A base TCP socket. | 2 | [[A base TCP socket. |
3 | 3 | ||
4 | This is the common class and takes an existing FD, usually | 4 | This is the common class and takes an existing FD, usually |
diff --git a/src/lib/ecore_con/efl_net_socket_udp.eo b/src/lib/ecore_con/efl_net_socket_udp.eo index 97caebc..7e2b533 100644 --- a/src/lib/ecore_con/efl_net_socket_udp.eo +++ b/src/lib/ecore_con/efl_net_socket_udp.eo | |||
@@ -1,6 +1,6 @@ | |||
1 | import efl_net_ip_address; | 1 | import efl_net_ip_address; |
2 | 2 | ||
3 | class Efl.Net.Socket_Udp (Efl.Net.Socket_Fd) { | 3 | class Efl.Net.Socket_Udp extends Efl.Net.Socket_Fd { |
4 | [[A base UDP socket. | 4 | [[A base UDP socket. |
5 | 5 | ||
6 | This is the common class and takes an existing FD, usually | 6 | This is the common class and takes an existing FD, usually |
diff --git a/src/lib/ecore_con/efl_net_socket_unix.eo b/src/lib/ecore_con/efl_net_socket_unix.eo index 9befbea..854130e 100644 --- a/src/lib/ecore_con/efl_net_socket_unix.eo +++ b/src/lib/ecore_con/efl_net_socket_unix.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Net.Socket_Unix (Efl.Net.Socket_Fd) { | 1 | class Efl.Net.Socket_Unix extends Efl.Net.Socket_Fd { |
2 | [[A base UNIX socket. | 2 | [[A base UNIX socket. |
3 | 3 | ||
4 | This is the common class and takes an existing FD, usually | 4 | This is the common class and takes an existing FD, usually |
diff --git a/src/lib/ecore_con/efl_net_socket_windows.eo b/src/lib/ecore_con/efl_net_socket_windows.eo index 95cdea6..f1e1625 100644 --- a/src/lib/ecore_con/efl_net_socket_windows.eo +++ b/src/lib/ecore_con/efl_net_socket_windows.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Net.Socket_Windows (Efl.Loop_Consumer, Efl.Net.Socket) { | 1 | class Efl.Net.Socket_Windows extends Efl.Loop_Consumer implements Efl.Net.Socket { |
2 | [[A base Windows NamedPipe socket. | 2 | [[A base Windows NamedPipe socket. |
3 | 3 | ||
4 | This is the common class and takes an existing file HANDLE, | 4 | This is the common class and takes an existing file HANDLE, |
diff --git a/src/lib/ecore_con/efl_net_ssl_context.eo b/src/lib/ecore_con/efl_net_ssl_context.eo index bf69467..c19fe19 100644 --- a/src/lib/ecore_con/efl_net_ssl_context.eo +++ b/src/lib/ecore_con/efl_net_ssl_context.eo | |||
@@ -1,6 +1,6 @@ | |||
1 | import efl_net_ssl_types; | 1 | import efl_net_ssl_types; |
2 | 2 | ||
3 | class Efl.Net.Ssl.Context (Efl.Object) { | 3 | class Efl.Net.Ssl.Context extends Efl.Object { |
4 | [[A SSL Context that is used to start a SSL socket wrapper. | 4 | [[A SSL Context that is used to start a SSL socket wrapper. |
5 | 5 | ||
6 | The context will contain common configurations such as | 6 | The context will contain common configurations such as |
diff --git a/src/lib/ector/cairo/ector_cairo_software_surface.eo b/src/lib/ector/cairo/ector_cairo_software_surface.eo index f389a23..03d7e49 100644 --- a/src/lib/ector/cairo/ector_cairo_software_surface.eo +++ b/src/lib/ector/cairo/ector_cairo_software_surface.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ector.Cairo.Software.Surface (Ector.Cairo.Surface, Ector.Software.Buffer.Base) | 1 | class Ector.Cairo.Software.Surface extends Ector.Cairo.Surface implements Ector.Software.Buffer.Base |
2 | { | 2 | { |
3 | [[Ector surface on a cairo software backend | 3 | [[Ector surface on a cairo software backend |
4 | 4 | ||
diff --git a/src/lib/ector/cairo/ector_cairo_surface.eo b/src/lib/ector/cairo/ector_cairo_surface.eo index 76f2c82..f267a23 100644 --- a/src/lib/ector/cairo/ector_cairo_surface.eo +++ b/src/lib/ector/cairo/ector_cairo_surface.eo | |||
@@ -1,6 +1,6 @@ | |||
1 | struct @extern cairo_t; [[cairo_t type]] | 1 | struct @extern cairo_t; [[cairo_t type]] |
2 | 2 | ||
3 | class Ector.Cairo.Surface (Efl.Object, Ector.Surface) | 3 | class Ector.Cairo.Surface extends Efl.Object implements Ector.Surface |
4 | { | 4 | { |
5 | [[Ector surface on a cairo backend | 5 | [[Ector surface on a cairo backend |
6 | 6 | ||
diff --git a/src/lib/ector/cairo/ector_renderer_cairo_gradient_linear.eo b/src/lib/ector/cairo/ector_renderer_cairo_gradient_linear.eo index 948792a..28f267f 100644 --- a/src/lib/ector/cairo/ector_renderer_cairo_gradient_linear.eo +++ b/src/lib/ector/cairo/ector_renderer_cairo_gradient_linear.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ector.Renderer.Cairo.Gradient.Linear (Ector.Renderer.Cairo, Ector.Renderer.Gradient, Ector.Renderer.Gradient.Linear, Efl.Gfx.Path) | 1 | class Ector.Renderer.Cairo.Gradient.Linear extends Ector.Renderer.Cairo implements Ector.Renderer.Gradient, Ector.Renderer.Gradient.Linear, Efl.Gfx.Path |
2 | { | 2 | { |
3 | [[Ector cairo renderer gradient linear]] | 3 | [[Ector cairo renderer gradient linear]] |
4 | eo_prefix: ector_renderer_cairo_gradient_linear; | 4 | eo_prefix: ector_renderer_cairo_gradient_linear; |
diff --git a/src/lib/ector/cairo/ector_renderer_cairo_gradient_radial.eo b/src/lib/ector/cairo/ector_renderer_cairo_gradient_radial.eo index afcd441..144019d 100644 --- a/src/lib/ector/cairo/ector_renderer_cairo_gradient_radial.eo +++ b/src/lib/ector/cairo/ector_renderer_cairo_gradient_radial.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ector.Renderer.Cairo.Gradient.Radial (Ector.Renderer.Cairo, Ector.Renderer.Gradient, Ector.Renderer.Gradient.Radial, Efl.Gfx.Path) | 1 | class Ector.Renderer.Cairo.Gradient.Radial extends Ector.Renderer.Cairo implements Ector.Renderer.Gradient, Ector.Renderer.Gradient.Radial, Efl.Gfx.Path |
2 | { | 2 | { |
3 | [[Ector cairo renderer gradient radial]] | 3 | [[Ector cairo renderer gradient radial]] |
4 | eo_prefix: ector_renderer_cairo_gradient_radial; | 4 | eo_prefix: ector_renderer_cairo_gradient_radial; |
diff --git a/src/lib/ector/cairo/ector_renderer_cairo_shape.eo b/src/lib/ector/cairo/ector_renderer_cairo_shape.eo index 7c95844..336d469 100644 --- a/src/lib/ector/cairo/ector_renderer_cairo_shape.eo +++ b/src/lib/ector/cairo/ector_renderer_cairo_shape.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ector.Renderer.Cairo.Shape (Ector.Renderer.Cairo, Ector.Renderer.Shape, Efl.Gfx.Path) | 1 | class Ector.Renderer.Cairo.Shape extends Ector.Renderer.Cairo implements Ector.Renderer.Shape, Efl.Gfx.Path |
2 | { | 2 | { |
3 | [[Ector cairo renderer shape class]] | 3 | [[Ector cairo renderer shape class]] |
4 | eo_prefix: ector_renderer_cairo_shape; | 4 | eo_prefix: ector_renderer_cairo_shape; |
diff --git a/src/lib/ector/gl/ector_gl_surface.eo b/src/lib/ector/gl/ector_gl_surface.eo index 034a27a..37dc43f 100644 --- a/src/lib/ector/gl/ector_gl_surface.eo +++ b/src/lib/ector/gl/ector_gl_surface.eo | |||
@@ -1,6 +1,6 @@ | |||
1 | import ector_types; | 1 | import ector_types; |
2 | 2 | ||
3 | class Ector.GL.Surface (Ector.GL.Buffer, Ector.Surface) | 3 | class Ector.GL.Surface extends Ector.GL.Buffer implements Ector.Surface |
4 | { | 4 | { |
5 | [[Ector GL surface class]] | 5 | [[Ector GL surface class]] |
6 | eo_prefix: ector_gl_surface; | 6 | eo_prefix: ector_gl_surface; |
diff --git a/src/lib/ector/gl/ector_renderer_gl_gradient_linear.eo b/src/lib/ector/gl/ector_renderer_gl_gradient_linear.eo index 0623a8e..5971664 100644 --- a/src/lib/ector/gl/ector_renderer_gl_gradient_linear.eo +++ b/src/lib/ector/gl/ector_renderer_gl_gradient_linear.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ector.Renderer.GL.Gradient.Linear (Ector.Renderer.GL, Ector.Renderer.Gradient, Ector.Renderer.Gradient.Linear, Efl.Gfx.Path) | 1 | class Ector.Renderer.GL.Gradient.Linear extends Ector.Renderer.GL implements Ector.Renderer.Gradient, Ector.Renderer.Gradient.Linear, Efl.Gfx.Path |
2 | { | 2 | { |
3 | [[Ector GL renderer gradient linear]] | 3 | [[Ector GL renderer gradient linear]] |
4 | eo_prefix: ector_renderer_gl_gradient_linear; | 4 | eo_prefix: ector_renderer_gl_gradient_linear; |
diff --git a/src/lib/ector/gl/ector_renderer_gl_gradient_radial.eo b/src/lib/ector/gl/ector_renderer_gl_gradient_radial.eo index 954ecbc..3f4154f 100644 --- a/src/lib/ector/gl/ector_renderer_gl_gradient_radial.eo +++ b/src/lib/ector/gl/ector_renderer_gl_gradient_radial.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ector.Renderer.GL.Gradient.Radial (Ector.Renderer.GL, Ector.Renderer.Gradient, Ector.Renderer.Gradient.Radial, Efl.Gfx.Path) | 1 | class Ector.Renderer.GL.Gradient.Radial extends Ector.Renderer.GL implements Ector.Renderer.Gradient, Ector.Renderer.Gradient.Radial, Efl.Gfx.Path |
2 | { | 2 | { |
3 | [[Ector GL renderer gradient radial]] | 3 | [[Ector GL renderer gradient radial]] |
4 | eo_prefix: ector_renderer_gl_gradient_radial; | 4 | eo_prefix: ector_renderer_gl_gradient_radial; |
diff --git a/src/lib/ector/gl/ector_renderer_gl_shape.eo b/src/lib/ector/gl/ector_renderer_gl_shape.eo index 6323ef6..608581b 100644 --- a/src/lib/ector/gl/ector_renderer_gl_shape.eo +++ b/src/lib/ector/gl/ector_renderer_gl_shape.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ector.Renderer.GL.Shape (Ector.Renderer.GL, Ector.Renderer.Shape, Efl.Gfx.Path) | 1 | class Ector.Renderer.GL.Shape extends Ector.Renderer.GL implements Ector.Renderer.Shape, Efl.Gfx.Path |
2 | { | 2 | { |
3 | [[Ector GL renderer shape class]] | 3 | [[Ector GL renderer shape class]] |
4 | eo_prefix: ector_renderer_gl_shape; | 4 | eo_prefix: ector_renderer_gl_shape; |
diff --git a/src/lib/ector/software/ector_renderer_software_gradient_linear.eo b/src/lib/ector/software/ector_renderer_software_gradient_linear.eo index 5cc4bdf..f2705dd 100644 --- a/src/lib/ector/software/ector_renderer_software_gradient_linear.eo +++ b/src/lib/ector/software/ector_renderer_software_gradient_linear.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ector.Renderer.Software.Gradient.Linear (Ector.Renderer.Software, Ector.Renderer.Gradient, Ector.Renderer.Gradient.Linear) | 1 | class Ector.Renderer.Software.Gradient.Linear extends Ector.Renderer.Software implements Ector.Renderer.Gradient, Ector.Renderer.Gradient.Linear |
2 | { | 2 | { |
3 | [[Ector software renderer gradient linear class]] | 3 | [[Ector software renderer gradient linear class]] |
4 | eo_prefix: ector_renderer_software_gradient_linear; | 4 | eo_prefix: ector_renderer_software_gradient_linear; |
diff --git a/src/lib/ector/software/ector_renderer_software_gradient_radial.eo b/src/lib/ector/software/ector_renderer_software_gradient_radial.eo index f05ea41..03bde1e 100644 --- a/src/lib/ector/software/ector_renderer_software_gradient_radial.eo +++ b/src/lib/ector/software/ector_renderer_software_gradient_radial.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ector.Renderer.Software.Gradient.Radial (Ector.Renderer.Software, Ector.Renderer.Gradient, Ector.Renderer.Gradient.Radial) | 1 | class Ector.Renderer.Software.Gradient.Radial extends Ector.Renderer.Software implements Ector.Renderer.Gradient, Ector.Renderer.Gradient.Radial |
2 | { | 2 | { |
3 | [[Ector software renderer gradient radial]] | 3 | [[Ector software renderer gradient radial]] |
4 | eo_prefix: ector_renderer_software_gradient_radial; | 4 | eo_prefix: ector_renderer_software_gradient_radial; |
diff --git a/src/lib/ector/software/ector_renderer_software_shape.eo b/src/lib/ector/software/ector_renderer_software_shape.eo index 04f19ba..b4889b3 100644 --- a/src/lib/ector/software/ector_renderer_software_shape.eo +++ b/src/lib/ector/software/ector_renderer_software_shape.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ector.Renderer.Software.Shape (Ector.Renderer.Software, Ector.Renderer.Shape) | 1 | class Ector.Renderer.Software.Shape extends Ector.Renderer.Software implements Ector.Renderer.Shape |
2 | { | 2 | { |
3 | [[Ector software renderer shape class]] | 3 | [[Ector software renderer shape class]] |
4 | eo_prefix: ector_renderer_software_shape; | 4 | eo_prefix: ector_renderer_software_shape; |
diff --git a/src/lib/ector/software/ector_software_buffer.eo b/src/lib/ector/software/ector_software_buffer.eo index 7d7eb82..76c3987 100644 --- a/src/lib/ector/software/ector_software_buffer.eo +++ b/src/lib/ector/software/ector_software_buffer.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ector.Software.Buffer (Efl.Object, Ector.Software.Buffer.Base) | 1 | class Ector.Software.Buffer extends Efl.Object implements Ector.Software.Buffer.Base |
2 | { | 2 | { |
3 | [[Ector software buffer class]] | 3 | [[Ector software buffer class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/ector/software/ector_software_surface.eo b/src/lib/ector/software/ector_software_surface.eo index 2d03339..65d807a 100644 --- a/src/lib/ector/software/ector_software_surface.eo +++ b/src/lib/ector/software/ector_software_surface.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Ector.Software.Surface (Ector.Software.Buffer, Ector.Surface) | 1 | class Ector.Software.Surface extends Ector.Software.Buffer implements Ector.Surface |
2 | { | 2 | { |
3 | [[Ector surface software class]] | 3 | [[Ector surface software class]] |
4 | eo_prefix: ector_software_surface; | 4 | eo_prefix: ector_software_surface; |
diff --git a/src/lib/edje/edje_edit.eo b/src/lib/edje/edje_edit.eo index 1f225ae..a7bb40a 100644 --- a/src/lib/edje/edje_edit.eo +++ b/src/lib/edje/edje_edit.eo | |||
@@ -1,7 +1,7 @@ | |||
1 | class Edje.Edit (Efl.Canvas.Layout) | 1 | class Edje.Edit extends Efl.Canvas.Layout |
2 | { | 2 | { |
3 | [[Edje editing class to access edje object internals. | 3 | [[Edje editing class to access edje object internals. |
4 | 4 | ||
5 | This was intended ONLY for use in an actual edje editor program. Unless | 5 | This was intended ONLY for use in an actual edje editor program. Unless |
6 | you are writing one of these, do NOT use this API here. | 6 | you are writing one of these, do NOT use this API here. |
7 | ]] | 7 | ]] |
diff --git a/src/lib/edje/edje_global.eo b/src/lib/edje/edje_global.eo index f5001f2..bff48e2 100644 --- a/src/lib/edje/edje_global.eo +++ b/src/lib/edje/edje_global.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Edje.Global (Efl.Object, Efl.Gfx.Color_Class, Efl.Gfx.Text_Class, Efl.Gfx.Size_Class) | 1 | class Edje.Global extends Efl.Object implements Efl.Gfx.Color_Class, Efl.Gfx.Text_Class, Efl.Gfx.Size_Class |
2 | { | 2 | { |
3 | [[An internal object that manages global color, text and size classes for | 3 | [[An internal object that manages global color, text and size classes for |
4 | the whole application. Individual edje objects also support the same | 4 | the whole application. Individual edje objects also support the same |
diff --git a/src/lib/edje/efl_canvas_layout.eo b/src/lib/edje/efl_canvas_layout.eo index 5feac56..f607e81 100644 --- a/src/lib/edje/efl_canvas_layout.eo +++ b/src/lib/edje/efl_canvas_layout.eo | |||
@@ -1,10 +1,10 @@ | |||
1 | // FIXME: This EO doc needs a direct link to the "edcref" doc | 1 | // FIXME: This EO doc needs a direct link to the "edcref" doc |
2 | 2 | ||
3 | class Efl.Canvas.Layout (Efl.Canvas.Group, Efl.File, Efl.Container, Efl.Part, | 3 | class Efl.Canvas.Layout extends Efl.Canvas.Group implements Efl.File, Efl.Container, Efl.Part, |
4 | Efl.Observer, Efl.Layout.Calc, | 4 | Efl.Observer, Efl.Layout.Calc, |
5 | Efl.Layout.Signal, Efl.Layout.Group, | 5 | Efl.Layout.Signal, Efl.Layout.Group, |
6 | Efl.Player, Efl.Gfx.Color_Class, Efl.Gfx.Text_Class, | 6 | Efl.Player, Efl.Gfx.Color_Class, Efl.Gfx.Text_Class, |
7 | Efl.Gfx.Size_Class) | 7 | Efl.Gfx.Size_Class |
8 | { | 8 | { |
9 | [[Edje object class]] | 9 | [[Edje object class]] |
10 | legacy_prefix: edje_object; | 10 | legacy_prefix: edje_object; |
diff --git a/src/lib/edje/efl_canvas_layout_part.eo b/src/lib/edje/efl_canvas_layout_part.eo index c96e9a7..927e70a 100644 --- a/src/lib/edje/efl_canvas_layout_part.eo +++ b/src/lib/edje/efl_canvas_layout_part.eo | |||
@@ -1,6 +1,6 @@ | |||
1 | import edje_types; | 1 | import edje_types; |
2 | 2 | ||
3 | class Efl.Canvas.Layout_Part (Efl.Object, Efl.Gfx.Entity, Efl.Ui.Drag) | 3 | class Efl.Canvas.Layout_Part extends Efl.Object implements Efl.Gfx.Entity, Efl.Ui.Drag |
4 | { | 4 | { |
5 | [[Common class for part proxy objects for @Efl.Canvas.Layout. | 5 | [[Common class for part proxy objects for @Efl.Canvas.Layout. |
6 | 6 | ||
diff --git a/src/lib/edje/efl_canvas_layout_part_box.eo b/src/lib/edje/efl_canvas_layout_part_box.eo index 02be070..0173bab 100644 --- a/src/lib/edje/efl_canvas_layout_part_box.eo +++ b/src/lib/edje/efl_canvas_layout_part_box.eo | |||
@@ -1,5 +1,5 @@ | |||
1 | class Efl.Canvas.Layout_Part_Box (Efl.Canvas.Layout_Part, Efl.Pack_Linear, | 1 | class Efl.Canvas.Layout_Part_Box extends Efl.Canvas.Layout_Part implements Efl.Pack_Linear, |
2 | Efl.Ui.Direction) | 2 | Efl.Ui.Direction |
3 | { | 3 | { |
4 | [[Represents a Box created as part of a layout. | 4 | [[Represents a Box created as part of a layout. |
5 | 5 | ||
diff --git a/src/lib/edje/efl_canvas_layout_part_external.eo b/src/lib/edje/efl_canvas_layout_part_external.eo index 4a80b1c..25e694c 100644 --- a/src/lib/edje/efl_canvas_layout_part_external.eo +++ b/src/lib/edje/efl_canvas_layout_part_external.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Canvas.Layout_Part_External (Efl.Canvas.Layout_Part, Efl.Content) | 1 | class Efl.Canvas.Layout_Part_External extends Efl.Canvas.Layout_Part implements Efl.Content |
2 | { | 2 | { |
3 | [[Class representing an external part in Edje layouts. | 3 | [[Class representing an external part in Edje layouts. |
4 | 4 | ||
diff --git a/src/lib/edje/efl_canvas_layout_part_invalid.eo b/src/lib/edje/efl_canvas_layout_part_invalid.eo index e4b10b9..ceb3177 100644 --- a/src/lib/edje/efl_canvas_layout_part_invalid.eo +++ b/src/lib/edje/efl_canvas_layout_part_invalid.eo | |||
@@ -1,7 +1,7 @@ | |||
1 | class Efl.Canvas.Layout_Part_Invalid (Efl.Canvas.Layout_Part, Efl.Content, | 1 | class Efl.Canvas.Layout_Part_Invalid extends Efl.Canvas.Layout_Part implements Efl.Content, |
2 | Efl.Pack_Linear, Efl.Ui.Direction, | 2 | Efl.Pack_Linear, Efl.Ui.Direction, |
3 | Efl.Pack_Table, Efl.Text, | 3 | Efl.Pack_Table, Efl.Text, |
4 | Efl.Text_Markup) | 4 | Efl.Text_Markup |
5 | { | 5 | { |
6 | [[Common class for part proxy objects for @Efl.Canvas.Layout. | 6 | [[Common class for part proxy objects for @Efl.Canvas.Layout. |
7 | 7 | ||
diff --git a/src/lib/edje/efl_canvas_layout_part_swallow.eo b/src/lib/edje/efl_canvas_layout_part_swallow.eo index 32634e8..6b1c472 100644 --- a/src/lib/edje/efl_canvas_layout_part_swallow.eo +++ b/src/lib/edje/efl_canvas_layout_part_swallow.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Canvas.Layout_Part_Swallow (Efl.Canvas.Layout_Part, Efl.Content) | 1 | class Efl.Canvas.Layout_Part_Swallow extends Efl.Canvas.Layout_Part implements Efl.Content |
2 | { | 2 | { |
3 | [[Represents a SWALLOW part of an Edje object. | 3 | [[Represents a SWALLOW part of an Edje object. |
4 | 4 | ||
diff --git a/src/lib/edje/efl_canvas_layout_part_table.eo b/src/lib/edje/efl_canvas_layout_part_table.eo index 8774385..e018438 100644 --- a/src/lib/edje/efl_canvas_layout_part_table.eo +++ b/src/lib/edje/efl_canvas_layout_part_table.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Canvas.Layout_Part_Table (Efl.Canvas.Layout_Part, Efl.Pack_Table) | 1 | class Efl.Canvas.Layout_Part_Table extends Efl.Canvas.Layout_Part implements Efl.Pack_Table |
2 | { | 2 | { |
3 | [[Represents a Table created as part of a layout. | 3 | [[Represents a Table created as part of a layout. |
4 | 4 | ||
diff --git a/src/lib/edje/efl_canvas_layout_part_text.eo b/src/lib/edje/efl_canvas_layout_part_text.eo index 389c6bc..0546118 100644 --- a/src/lib/edje/efl_canvas_layout_part_text.eo +++ b/src/lib/edje/efl_canvas_layout_part_text.eo | |||
@@ -10,8 +10,8 @@ enum Efl.Canvas.Layout_Part_Text_Expand | |||
10 | max_y = 1 << 3, | 10 | max_y = 1 << 3, |
11 | } | 11 | } |
12 | 12 | ||
13 | class Efl.Canvas.Layout_Part_Text (Efl.Canvas.Layout_Part, Efl.Text, | 13 | class Efl.Canvas.Layout_Part_Text extends Efl.Canvas.Layout_Part implements Efl.Text, |
14 | Efl.Text_Markup, Efl.Text_Format, Efl.Text_Font, Efl.Text_Style) | 14 | Efl.Text_Markup, Efl.Text_Format, Efl.Text_Font, Efl.Text_Style |
15 | { | 15 | { |
16 | [[Represents a TEXT part of a layout | 16 | [[Represents a TEXT part of a layout |
17 | 17 | ||
@@ -25,7 +25,7 @@ Efl.Text_Markup, Efl.Text_Format, Efl.Text_Font, Efl.Text_Style) | |||
25 | This will determine whether to consider height or width | 25 | This will determine whether to consider height or width |
26 | constraints, if text-specific behaviors occur (such as ellipsis, | 26 | constraints, if text-specific behaviors occur (such as ellipsis, |
27 | line-wrapping etc. | 27 | line-wrapping etc. |
28 | ]] | 28 | ]] |
29 | values { | 29 | values { |
30 | type: Efl.Canvas.Layout_Part_Text_Expand; | 30 | type: Efl.Canvas.Layout_Part_Text_Expand; |
31 | } | 31 | } |
diff --git a/src/lib/efl/interfaces/efl_input_device.eo b/src/lib/efl/interfaces/efl_input_device.eo index e6c9898..91a0760 100644 --- a/src/lib/efl/interfaces/efl_input_device.eo +++ b/src/lib/efl/interfaces/efl_input_device.eo | |||
@@ -19,7 +19,7 @@ enum Efl.Input.Device_Type | |||
19 | @property canvas { values { canvas: Efl.Canvas; } } | 19 | @property canvas { values { canvas: Efl.Canvas; } } |
20 | */ | 20 | */ |
21 | 21 | ||
22 | class Efl.Input.Device (Efl.Object) | 22 | class Efl.Input.Device extends Efl.Object |
23 | { | 23 | { |
24 | [[Represents a pointing device such as a touch finger, pen or mouse. | 24 | [[Represents a pointing device such as a touch finger, pen or mouse. |
25 | 25 | ||
diff --git a/src/lib/efl/interfaces/efl_io_buffer.eo b/src/lib/efl/interfaces/efl_io_buffer.eo index b7d90d6..230c2aa 100644 --- a/src/lib/efl/interfaces/efl_io_buffer.eo +++ b/src/lib/efl/interfaces/efl_io_buffer.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Io.Buffer (Efl.Object, Efl.Io.Reader, Efl.Io.Writer, Efl.Io.Closer, Efl.Io.Sizer, Efl.Io.Positioner) { | 1 | class Efl.Io.Buffer extends Efl.Object implements Efl.Io.Reader, Efl.Io.Writer, Efl.Io.Closer, Efl.Io.Sizer, Efl.Io.Positioner { |
2 | [[Generic In-memory buffer of data to be used as I/O. | 2 | [[Generic In-memory buffer of data to be used as I/O. |
3 | 3 | ||
4 | This class offers both input and output, which can be used at | 4 | This class offers both input and output, which can be used at |
diff --git a/src/lib/efl/interfaces/efl_io_queue.eo b/src/lib/efl/interfaces/efl_io_queue.eo index ae29827..c8c6f1e 100644 --- a/src/lib/efl/interfaces/efl_io_queue.eo +++ b/src/lib/efl/interfaces/efl_io_queue.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Io.Queue (Efl.Object, Efl.Io.Reader, Efl.Io.Writer, Efl.Io.Closer) { | 1 | class Efl.Io.Queue extends Efl.Object implements Efl.Io.Reader, Efl.Io.Writer, Efl.Io.Closer { |
2 | [[Generic In-memory queue of data to be used as I/O. | 2 | [[Generic In-memory queue of data to be used as I/O. |
3 | 3 | ||
4 | This class is to be used to receive temporary data using | 4 | This class is to be used to receive temporary data using |
diff --git a/src/lib/efl/interfaces/efl_observable.eo b/src/lib/efl/interfaces/efl_observable.eo index f39d3dc..4055217 100644 --- a/src/lib/efl/interfaces/efl_observable.eo +++ b/src/lib/efl/interfaces/efl_observable.eo | |||
@@ -1,6 +1,6 @@ | |||
1 | import efl_types; | 1 | import efl_types; |
2 | 2 | ||
3 | class Efl.Observable (Efl.Object) { | 3 | class Efl.Observable extends Efl.Object { |
4 | [[Efl observable class]] | 4 | [[Efl observable class]] |
5 | methods { | 5 | methods { |
6 | observer_add { | 6 | observer_add { |
@@ -38,7 +38,7 @@ class Efl.Observable (Efl.Object) { | |||
38 | [[Return a new iterator associated with a group of observers. | 38 | [[Return a new iterator associated with a group of observers. |
39 | 39 | ||
40 | @since 1.19]] | 40 | @since 1.19]] |
41 | return: iterator<Efl.Observer> @owned; [[Iterator for observers group]] | 41 | return: iterator<Efl.Observer> @owned; [[Iterator for observers group]] |
42 | params { | 42 | params { |
43 | @in key: string; [[A key to classify observer groups]] | 43 | @in key: string; [[A key to classify observer groups]] |
44 | } | 44 | } |
diff --git a/src/lib/efl/interfaces/efl_text_markup_util.eo b/src/lib/efl/interfaces/efl_text_markup_util.eo index eb64791..845694d 100644 --- a/src/lib/efl/interfaces/efl_text_markup_util.eo +++ b/src/lib/efl/interfaces/efl_text_markup_util.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Text_Markup_Util () { | 1 | class Efl.Text_Markup_Util { |
2 | [[Utility class for markup, such as conversions | 2 | [[Utility class for markup, such as conversions |
3 | 3 | ||
4 | @since 1.21. | 4 | @since 1.21. |
diff --git a/src/lib/eio/efl_io_manager.eo b/src/lib/eio/efl_io_manager.eo index 5c8bffb..9ac9e63 100644 --- a/src/lib/eio/efl_io_manager.eo +++ b/src/lib/eio/efl_io_manager.eo | |||
@@ -21,7 +21,7 @@ function EflIoDirectInfo { | |||
21 | } | 21 | } |
22 | }; | 22 | }; |
23 | 23 | ||
24 | class Efl.Io.Manager (Efl.Loop_Consumer) | 24 | class Efl.Io.Manager extends Efl.Loop_Consumer |
25 | { | 25 | { |
26 | [[Class representing an asynchronous file operation.]] | 26 | [[Class representing an asynchronous file operation.]] |
27 | 27 | ||
diff --git a/src/lib/eio/eio_model.eo b/src/lib/eio/eio_model.eo index 8ba45ee..c8776ff 100644 --- a/src/lib/eio/eio_model.eo +++ b/src/lib/eio/eio_model.eo | |||
@@ -9,7 +9,7 @@ function EflIoFilter { | |||
9 | return: int; | 9 | return: int; |
10 | }; | 10 | }; |
11 | 11 | ||
12 | class Eio.Model (Efl.Model_Loop) | 12 | class Eio.Model extends Efl.Model_Loop |
13 | { | 13 | { |
14 | [[Eio model class]] | 14 | [[Eio model class]] |
15 | 15 | ||
diff --git a/src/lib/eio/eio_sentry.eo b/src/lib/eio/eio_sentry.eo index 7dbebbc..bd0d19a 100644 --- a/src/lib/eio/eio_sentry.eo +++ b/src/lib/eio/eio_sentry.eo | |||
@@ -5,7 +5,7 @@ struct Eio.Sentry.Event | |||
5 | source: string; [[The original monitored path.]] | 5 | source: string; [[The original monitored path.]] |
6 | } | 6 | } |
7 | 7 | ||
8 | class Eio.Sentry (Efl.Object) | 8 | class Eio.Sentry extends Efl.Object |
9 | { | 9 | { |
10 | [[Monitors files and directories for changes.]] | 10 | [[Monitors files and directories for changes.]] |
11 | 11 | ||
diff --git a/src/lib/eldbus/eldbus_model.eo b/src/lib/eldbus/eldbus_model.eo index 546e478..743808b 100644 --- a/src/lib/eldbus/eldbus_model.eo +++ b/src/lib/eldbus/eldbus_model.eo | |||
@@ -1,6 +1,6 @@ | |||
1 | import eldbus_types; | 1 | import eldbus_types; |
2 | 2 | ||
3 | class Eldbus.Model (Efl.Model_Loop) { | 3 | class Eldbus.Model extends Efl.Model_Loop { |
4 | methods { | 4 | methods { |
5 | connect { | 5 | connect { |
6 | [[Define connection parameters. | 6 | [[Define connection parameters. |
@@ -59,4 +59,4 @@ class Eldbus.Model (Efl.Model_Loop) { | |||
59 | .connect; | 59 | .connect; |
60 | .connection; | 60 | .connection; |
61 | } | 61 | } |
62 | } \ No newline at end of file | 62 | } |
diff --git a/src/lib/eldbus/eldbus_model_arguments.eo b/src/lib/eldbus/eldbus_model_arguments.eo index 262d782..2eb37d0 100644 --- a/src/lib/eldbus/eldbus_model_arguments.eo +++ b/src/lib/eldbus/eldbus_model_arguments.eo | |||
@@ -1,6 +1,6 @@ | |||
1 | import eldbus_types; | 1 | import eldbus_types; |
2 | 2 | ||
3 | class Eldbus.Model.Arguments (Eldbus.Model) { | 3 | class Eldbus.Model.Arguments extends Eldbus.Model { |
4 | [[Eldbus model arguments class]] | 4 | [[Eldbus model arguments class]] |
5 | 5 | ||
6 | methods { | 6 | methods { |
diff --git a/src/lib/eldbus/eldbus_model_connection.eo b/src/lib/eldbus/eldbus_model_connection.eo index d064027..499dfa4 100644 --- a/src/lib/eldbus/eldbus_model_connection.eo +++ b/src/lib/eldbus/eldbus_model_connection.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Eldbus.Model.Connection (Eldbus.Model) { | 1 | class Eldbus.Model.Connection extends Eldbus.Model { |
2 | [[Eldbus model connection class]] | 2 | [[Eldbus model connection class]] |
3 | 3 | ||
4 | implements { | 4 | implements { |
diff --git a/src/lib/eldbus/eldbus_model_method.eo b/src/lib/eldbus/eldbus_model_method.eo index ae74f80..66ef3e6 100644 --- a/src/lib/eldbus/eldbus_model_method.eo +++ b/src/lib/eldbus/eldbus_model_method.eo | |||
@@ -1,6 +1,6 @@ | |||
1 | import eldbus_types; | 1 | import eldbus_types; |
2 | 2 | ||
3 | class Eldbus.Model.Method (Eldbus.Model.Arguments) { | 3 | class Eldbus.Model.Method extends Eldbus.Model.Arguments { |
4 | [[Eldbus model method class]] | 4 | [[Eldbus model method class]] |
5 | methods { | 5 | methods { |
6 | @property proxy { | 6 | @property proxy { |
diff --git a/src/lib/eldbus/eldbus_model_object.eo b/src/lib/eldbus/eldbus_model_object.eo index 2931621..d5827c5 100644 --- a/src/lib/eldbus/eldbus_model_object.eo +++ b/src/lib/eldbus/eldbus_model_object.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Eldbus.Model.Object (Eldbus.Model) { | 1 | class Eldbus.Model.Object extends Eldbus.Model { |
2 | [[Eldbus model object class]] | 2 | [[Eldbus model object class]] |
3 | 3 | ||
4 | data: Eldbus_Model_Object_Data; | 4 | data: Eldbus_Model_Object_Data; |
diff --git a/src/lib/eldbus/eldbus_model_proxy.eo b/src/lib/eldbus/eldbus_model_proxy.eo index 0bb8b3e..3c8fe5b 100644 --- a/src/lib/eldbus/eldbus_model_proxy.eo +++ b/src/lib/eldbus/eldbus_model_proxy.eo | |||
@@ -1,6 +1,6 @@ | |||
1 | import eldbus_types; | 1 | import eldbus_types; |
2 | 2 | ||
3 | class Eldbus.Model.Proxy (Eldbus.Model) { | 3 | class Eldbus.Model.Proxy extends Eldbus.Model { |
4 | [[Eldbus model proxy class]] | 4 | [[Eldbus model proxy class]] |
5 | 5 | ||
6 | methods { | 6 | methods { |
diff --git a/src/lib/eldbus/eldbus_model_signal.eo b/src/lib/eldbus/eldbus_model_signal.eo index 4aa547c..6ea877a 100644 --- a/src/lib/eldbus/eldbus_model_signal.eo +++ b/src/lib/eldbus/eldbus_model_signal.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Eldbus.Model.Signal (Eldbus.Model.Arguments) { | 1 | class Eldbus.Model.Signal extends Eldbus.Model.Arguments { |
2 | [[Eldbus model signal class]] | 2 | [[Eldbus model signal class]] |
3 | 3 | ||
4 | methods { | 4 | methods { |
diff --git a/src/lib/elementary/efl_config_global.eo b/src/lib/elementary/efl_config_global.eo index a189b93..aba9ade 100644 --- a/src/lib/elementary/efl_config_global.eo +++ b/src/lib/elementary/efl_config_global.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Config_Global (Efl.Object, Efl.Config) | 1 | class Efl.Config_Global extends Efl.Object implements Efl.Config |
2 | { | 2 | { |
3 | [[This class is a singleton representing the global configuration for the | 3 | [[This class is a singleton representing the global configuration for the |
4 | running application. | 4 | running application. |
diff --git a/src/lib/elementary/efl_datetime_manager.eo b/src/lib/elementary/efl_datetime_manager.eo index 0728dc7..194c6bd 100644 --- a/src/lib/elementary/efl_datetime_manager.eo +++ b/src/lib/elementary/efl_datetime_manager.eo | |||
@@ -1,12 +1,12 @@ | |||
1 | import efl_types; | 1 | import efl_types; |
2 | 2 | ||
3 | class Efl.Datetime.Manager (Efl.Object) | 3 | class Efl.Datetime.Manager extends Efl.Object |
4 | { | 4 | { |
5 | [[Efl datetime manager class for Datepicker and Timepicker]] | 5 | [[Efl datetime manager class for Datepicker and Timepicker]] |
6 | methods { | 6 | methods { |
7 | @property value { | 7 | @property value { |
8 | [[The value of a date, time for Datepicker or Timepicker. | 8 | [[The value of a date, time for Datepicker or Timepicker. |
9 | 9 | ||
10 | The value for Datepicker contains year, month, and day. (tm_year, tm_mon, and tm_mday in Efl_Time) | 10 | The value for Datepicker contains year, month, and day. (tm_year, tm_mon, and tm_mday in Efl_Time) |
11 | The value for Timepicker contains hour, and min. (tm_hour, and tm_min in Efl_Time) | 11 | The value for Timepicker contains hour, and min. (tm_hour, and tm_min in Efl_Time) |
12 | ]] | 12 | ]] |
@@ -20,7 +20,7 @@ class Efl.Datetime.Manager (Efl.Object) | |||
20 | } | 20 | } |
21 | @property format { | 21 | @property format { |
22 | [[The format of date or time. | 22 | [[The format of date or time. |
23 | 23 | ||
24 | Default format is taken as per the system locale settings. | 24 | Default format is taken as per the system locale settings. |
25 | ]] | 25 | ]] |
26 | set { | 26 | set { |
diff --git a/src/lib/elementary/efl_page_indicator.eo b/src/lib/elementary/efl_page_indicator.eo index 110c4be..a360243 100644 --- a/src/lib/elementary/efl_page_indicator.eo +++ b/src/lib/elementary/efl_page_indicator.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Page.Indicator (Efl.Object) | 1 | class Efl.Page.Indicator extends Efl.Object |
2 | { | 2 | { |
3 | [[Page indicator | 3 | [[Page indicator |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_page_indicator_icon.eo b/src/lib/elementary/efl_page_indicator_icon.eo index 6a46d80..c56ae14 100644 --- a/src/lib/elementary/efl_page_indicator_icon.eo +++ b/src/lib/elementary/efl_page_indicator_icon.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Page.Indicator_Icon (Efl.Page.Indicator) | 1 | class Efl.Page.Indicator_Icon extends Efl.Page.Indicator |
2 | { | 2 | { |
3 | [[Icon type page indicator | 3 | [[Icon type page indicator |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_page_transition.eo b/src/lib/elementary/efl_page_transition.eo index 77e359c..bf67b7e 100644 --- a/src/lib/elementary/efl_page_transition.eo +++ b/src/lib/elementary/efl_page_transition.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Page.Transition (Efl.Object) | 1 | class Efl.Page.Transition extends Efl.Object |
2 | { | 2 | { |
3 | [[Page transition for @Efl.Ui.Pager | 3 | [[Page transition for @Efl.Ui.Pager |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_page_transition_scroll.eo b/src/lib/elementary/efl_page_transition_scroll.eo index 6c720c5..2575a50 100644 --- a/src/lib/elementary/efl_page_transition_scroll.eo +++ b/src/lib/elementary/efl_page_transition_scroll.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Page.Transition_Scroll (Efl.Page.Transition) | 1 | class Efl.Page.Transition_Scroll extends Efl.Page.Transition |
2 | { | 2 | { |
3 | [[Page transition for @Efl.Ui.Pager | 3 | [[Page transition for @Efl.Ui.Pager |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_alert_popup.eo b/src/lib/elementary/efl_ui_alert_popup.eo index d54e289..fdcb6eb 100644 --- a/src/lib/elementary/efl_ui_alert_popup.eo +++ b/src/lib/elementary/efl_ui_alert_popup.eo | |||
@@ -10,7 +10,7 @@ struct Efl.Ui.Alert_Popup_Button_Clicked_Event { | |||
10 | button_type: Efl.Ui.Alert_Popup_Button; [[Clicked button type]] | 10 | button_type: Efl.Ui.Alert_Popup_Button; [[Clicked button type]] |
11 | } | 11 | } |
12 | 12 | ||
13 | class Efl.Ui.Alert_Popup(Efl.Ui.Popup) | 13 | class Efl.Ui.Alert_Popup extends Efl.Ui.Popup |
14 | { | 14 | { |
15 | [[EFL UI Alert Popup class]] | 15 | [[EFL UI Alert Popup class]] |
16 | methods { | 16 | methods { |
diff --git a/src/lib/elementary/efl_ui_alert_popup_part.eo b/src/lib/elementary/efl_ui_alert_popup_part.eo index da17167..41e00d0 100644 --- a/src/lib/elementary/efl_ui_alert_popup_part.eo +++ b/src/lib/elementary/efl_ui_alert_popup_part.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Alert_Popup_Part (Efl.Ui.Layout_Part_Text) | 1 | class Efl.Ui.Alert_Popup_Part extends Efl.Ui.Layout_Part_Text |
2 | { | 2 | { |
3 | [[Efl UI Alert Popup internal part class]] | 3 | [[Efl UI Alert Popup internal part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_anchor_popup.eo b/src/lib/elementary/efl_ui_anchor_popup.eo index 3238a70..1f8ab61 100644 --- a/src/lib/elementary/efl_ui_anchor_popup.eo +++ b/src/lib/elementary/efl_ui_anchor_popup.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Anchor_Popup(Efl.Ui.Popup) | 1 | class Efl.Ui.Anchor_Popup extends Efl.Ui.Popup |
2 | { | 2 | { |
3 | [[EFL UI Anchor Popup class]] | 3 | [[EFL UI Anchor Popup class]] |
4 | methods { | 4 | methods { |
diff --git a/src/lib/elementary/efl_ui_bg.eo b/src/lib/elementary/efl_ui_bg.eo index 71b8a7b..26b1643 100644 --- a/src/lib/elementary/efl_ui_bg.eo +++ b/src/lib/elementary/efl_ui_bg.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Bg (Efl.Ui.Layout, Efl.Gfx.Color, Efl.Gfx.Image, Efl.Gfx.Image_Load_Controller) | 1 | class Efl.Ui.Bg extends Efl.Ui.Layout implements Efl.Gfx.Color, Efl.Gfx.Image, Efl.Gfx.Image_Load_Controller |
2 | { | 2 | { |
3 | [[The bg (background) widget is used for setting (solid) background decorations | 3 | [[The bg (background) widget is used for setting (solid) background decorations |
4 | for a window (unless it has transparency enabled) or for any container object. It | 4 | for a window (unless it has transparency enabled) or for any container object. It |
diff --git a/src/lib/elementary/efl_ui_bg_legacy.eo b/src/lib/elementary/efl_ui_bg_legacy.eo index 7460aaa..7ab9aab 100644 --- a/src/lib/elementary/efl_ui_bg_legacy.eo +++ b/src/lib/elementary/efl_ui_bg_legacy.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Bg_Legacy (Efl.Ui.Bg, Efl.Ui.Legacy) | 1 | class Efl.Ui.Bg_Legacy extends Efl.Ui.Bg implements Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[The bg (background) widget is used for setting (solid) background decorations | 3 | [[The bg (background) widget is used for setting (solid) background decorations |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_box.eo b/src/lib/elementary/efl_ui_box.eo index 90e31ef..76a546b 100644 --- a/src/lib/elementary/efl_ui_box.eo +++ b/src/lib/elementary/efl_ui_box.eo | |||
@@ -1,5 +1,5 @@ | |||
1 | class Efl.Ui.Box (Efl.Ui.Widget, Efl.Pack_Linear, Efl.Pack_Layout, | 1 | class Efl.Ui.Box extends Efl.Ui.Widget implements Efl.Pack_Linear, Efl.Pack_Layout, |
2 | Efl.Ui.Direction) | 2 | Efl.Ui.Direction |
3 | { | 3 | { |
4 | [[The box widget. | 4 | [[The box widget. |
5 | 5 | ||
diff --git a/src/lib/elementary/efl_ui_box_flow.eo b/src/lib/elementary/efl_ui_box_flow.eo index f4543d7..82e5bdb 100644 --- a/src/lib/elementary/efl_ui_box_flow.eo +++ b/src/lib/elementary/efl_ui_box_flow.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Box_Flow (Efl.Ui.Box) | 1 | class Efl.Ui.Box_Flow extends Efl.Ui.Box |
2 | { | 2 | { |
3 | [[A custom layout engine for @Efl.Ui.Box.]] | 3 | [[A custom layout engine for @Efl.Ui.Box.]] |
4 | methods { | 4 | methods { |
diff --git a/src/lib/elementary/efl_ui_box_stack.eo b/src/lib/elementary/efl_ui_box_stack.eo index e4bbd5e..7d2ebfb 100644 --- a/src/lib/elementary/efl_ui_box_stack.eo +++ b/src/lib/elementary/efl_ui_box_stack.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Box_Stack (Efl.Ui.Box) | 1 | class Efl.Ui.Box_Stack extends Efl.Ui.Box |
2 | { | 2 | { |
3 | [[A custom layout engine for @Efl.Ui.Box that stacks items. | 3 | [[A custom layout engine for @Efl.Ui.Box that stacks items. |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_button.eo b/src/lib/elementary/efl_ui_button.eo index f8cff54..adb22ba 100644 --- a/src/lib/elementary/efl_ui_button.eo +++ b/src/lib/elementary/efl_ui_button.eo | |||
@@ -1,6 +1,6 @@ | |||
1 | class Efl.Ui.Button (Efl.Ui.Layout, Efl.Ui.Clickable, Efl.Ui.Autorepeat, | 1 | class Efl.Ui.Button extends Efl.Ui.Layout implements Efl.Ui.Clickable, Efl.Ui.Autorepeat, |
2 | Efl.Text, Efl.Content, | 2 | Efl.Text, Efl.Content, |
3 | Efl.Access.Widget.Action) | 3 | Efl.Access.Widget.Action |
4 | { | 4 | { |
5 | [[Push-button widget | 5 | [[Push-button widget |
6 | 6 | ||
diff --git a/src/lib/elementary/efl_ui_button_legacy.eo b/src/lib/elementary/efl_ui_button_legacy.eo index bf01ef8..acb2c8d 100644 --- a/src/lib/elementary/efl_ui_button_legacy.eo +++ b/src/lib/elementary/efl_ui_button_legacy.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Button_Legacy (Efl.Ui.Button, Efl.Ui.Legacy) | 1 | class Efl.Ui.Button_Legacy extends Efl.Ui.Button implements Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[Push-button widget | 3 | [[Push-button widget |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_button_legacy_part.eo b/src/lib/elementary/efl_ui_button_legacy_part.eo index ba66edf..baa0551 100644 --- a/src/lib/elementary/efl_ui_button_legacy_part.eo +++ b/src/lib/elementary/efl_ui_button_legacy_part.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Button_Legacy_Part (Efl.Ui.Layout_Part_Content) | 1 | class Efl.Ui.Button_Legacy_Part extends Efl.Ui.Layout_Part_Content |
2 | { | 2 | { |
3 | [[Elementary button internal part class]] | 3 | [[Elementary button internal part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_caching_factory.eo b/src/lib/elementary/efl_ui_caching_factory.eo index c894e2c..c7e2f2b 100644 --- a/src/lib/elementary/efl_ui_caching_factory.eo +++ b/src/lib/elementary/efl_ui_caching_factory.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Caching_Factory (Efl.Loop_Consumer, Efl.Ui.Factory) | 1 | class Efl.Ui.Caching_Factory extends Efl.Loop_Consumer implements Efl.Ui.Factory |
2 | { | 2 | { |
3 | [[Efl Ui Factory that provides object caching. | 3 | [[Efl Ui Factory that provides object caching. |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_calendar.eo b/src/lib/elementary/efl_ui_calendar.eo index 649b653..78bc2b4 100644 --- a/src/lib/elementary/efl_ui_calendar.eo +++ b/src/lib/elementary/efl_ui_calendar.eo | |||
@@ -16,7 +16,7 @@ enum Efl.Ui.Calendar_Weekday | |||
16 | last [[Sentinel value to indicate last enum field during iteration]] | 16 | last [[Sentinel value to indicate last enum field during iteration]] |
17 | } | 17 | } |
18 | 18 | ||
19 | class Efl.Ui.Calendar (Efl.Ui.Layout, Efl.Ui.Focus.Composition, Efl.Access.Widget.Action, Efl.Ui.Format) | 19 | class Efl.Ui.Calendar extends Efl.Ui.Layout implements Efl.Ui.Focus.Composition, Efl.Access.Widget.Action, Efl.Ui.Format |
20 | { | 20 | { |
21 | [[Calendar widget | 21 | [[Calendar widget |
22 | 22 | ||
diff --git a/src/lib/elementary/efl_ui_calendar_item.eo b/src/lib/elementary/efl_ui_calendar_item.eo index cccc17c..ad235e0 100644 --- a/src/lib/elementary/efl_ui_calendar_item.eo +++ b/src/lib/elementary/efl_ui_calendar_item.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Calendar_Item (Efl.Object, Efl.Ui.Focus.Object) | 1 | class Efl.Ui.Calendar_Item extends Efl.Object implements Efl.Ui.Focus.Object |
2 | { | 2 | { |
3 | [[EFL UI Calendar Item class]] | 3 | [[EFL UI Calendar Item class]] |
4 | methods { | 4 | methods { |
diff --git a/src/lib/elementary/efl_ui_check.eo b/src/lib/elementary/efl_ui_check.eo index ef0f76d..b6ea04f 100644 --- a/src/lib/elementary/efl_ui_check.eo +++ b/src/lib/elementary/efl_ui_check.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Check (Efl.Ui.Nstate, Efl.Access.Widget.Action) | 1 | class Efl.Ui.Check extends Efl.Ui.Nstate implements Efl.Access.Widget.Action |
2 | { | 2 | { |
3 | [[Check widget | 3 | [[Check widget |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_check_legacy.eo b/src/lib/elementary/efl_ui_check_legacy.eo index 5d311a5..9486bf6 100644 --- a/src/lib/elementary/efl_ui_check_legacy.eo +++ b/src/lib/elementary/efl_ui_check_legacy.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Check_Legacy (Efl.Ui.Check, Efl.Ui.Legacy) | 1 | class Efl.Ui.Check_Legacy extends Efl.Ui.Check implements Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[Check widget | 3 | [[Check widget |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_check_legacy_part.eo b/src/lib/elementary/efl_ui_check_legacy_part.eo index 7907db9..b856f08 100644 --- a/src/lib/elementary/efl_ui_check_legacy_part.eo +++ b/src/lib/elementary/efl_ui_check_legacy_part.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Check_Legacy_Part (Efl.Ui.Layout_Part_Content) | 1 | class Efl.Ui.Check_Legacy_Part extends Efl.Ui.Layout_Part_Content |
2 | { | 2 | { |
3 | [[Elementary check internal part class]] | 3 | [[Elementary check internal part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_clock.eo b/src/lib/elementary/efl_ui_clock.eo index 69e5f61..678b210 100644 --- a/src/lib/elementary/efl_ui_clock.eo +++ b/src/lib/elementary/efl_ui_clock.eo | |||
@@ -16,7 +16,7 @@ enum Efl.Ui.Clock_Type | |||
16 | ampm = 7, [[Indicates AM/PM field .]] | 16 | ampm = 7, [[Indicates AM/PM field .]] |
17 | } | 17 | } |
18 | 18 | ||
19 | class Efl.Ui.Clock (Efl.Ui.Layout) | 19 | class Efl.Ui.Clock extends Efl.Ui.Layout |
20 | { | 20 | { |
21 | [[Efl UI clock class]] | 21 | [[Efl UI clock class]] |
22 | methods { | 22 | methods { |
diff --git a/src/lib/elementary/efl_ui_clock_legacy.eo b/src/lib/elementary/efl_ui_clock_legacy.eo index b152257..463af96 100644 --- a/src/lib/elementary/efl_ui_clock_legacy.eo +++ b/src/lib/elementary/efl_ui_clock_legacy.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Clock_Legacy (Efl.Ui.Clock, Efl.Ui.Legacy) | 1 | class Efl.Ui.Clock_Legacy extends Efl.Ui.Clock implements Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[Efl UI clock class]] | 3 | [[Efl UI clock class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_datepicker.eo b/src/lib/elementary/efl_ui_datepicker.eo index 74a0876..81d9b16 100644 --- a/src/lib/elementary/efl_ui_datepicker.eo +++ b/src/lib/elementary/efl_ui_datepicker.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Datepicker (Efl.Ui.Layout) | 1 | class Efl.Ui.Datepicker extends Efl.Ui.Layout |
2 | { | 2 | { |
3 | [[Datepicker widget | 3 | [[Datepicker widget |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_flip.eo b/src/lib/elementary/efl_ui_flip.eo index cf98ea6..f35701f 100644 --- a/src/lib/elementary/efl_ui_flip.eo +++ b/src/lib/elementary/efl_ui_flip.eo | |||
@@ -28,7 +28,7 @@ enum Efl.Ui.Flip_Interaction | |||
28 | page [[Page interaction]] | 28 | page [[Page interaction]] |
29 | } | 29 | } |
30 | 30 | ||
31 | class Efl.Ui.Flip (Efl.Ui.Widget, Efl.Pack_Linear) | 31 | class Efl.Ui.Flip extends Efl.Ui.Widget implements Efl.Pack_Linear |
32 | { | 32 | { |
33 | [[Efl UI flip class]] | 33 | [[Efl UI flip class]] |
34 | legacy_prefix: elm_flip; | 34 | legacy_prefix: elm_flip; |
diff --git a/src/lib/elementary/efl_ui_flip_legacy.eo b/src/lib/elementary/efl_ui_flip_legacy.eo index 697c2d1..c19762f 100644 --- a/src/lib/elementary/efl_ui_flip_legacy.eo +++ b/src/lib/elementary/efl_ui_flip_legacy.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Flip_Legacy (Efl.Ui.Flip, Efl.Ui.Legacy) | 1 | class Efl.Ui.Flip_Legacy extends Efl.Ui.Flip implements Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[Efl UI flip class]] | 3 | [[Efl UI flip class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_flip_part.eo b/src/lib/elementary/efl_ui_flip_part.eo index 0d3d721..84c3b0f 100644 --- a/src/lib/elementary/efl_ui_flip_part.eo +++ b/src/lib/elementary/efl_ui_flip_part.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Flip_Part (Efl.Ui.Widget_Part, Efl.Content) | 1 | class Efl.Ui.Flip_Part extends Efl.Ui.Widget_Part implements Efl.Content |
2 | { | 2 | { |
3 | [[Efl UI flip internal class]] | 3 | [[Efl UI flip internal class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_focus_composition_adapter.eo b/src/lib/elementary/efl_ui_focus_composition_adapter.eo index b9d26fd..bb4e81c 100644 --- a/src/lib/elementary/efl_ui_focus_composition_adapter.eo +++ b/src/lib/elementary/efl_ui_focus_composition_adapter.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Focus.Composition_Adapter (Efl.Object, Efl.Ui.Focus.Object) | 1 | class Efl.Ui.Focus.Composition_Adapter extends Efl.Object implements Efl.Ui.Focus.Object |
2 | { | 2 | { |
3 | [[EFL UI Focus Composition Adapter class]] | 3 | [[EFL UI Focus Composition Adapter class]] |
4 | methods { | 4 | methods { |
diff --git a/src/lib/elementary/efl_ui_focus_manager_calc.eo b/src/lib/elementary/efl_ui_focus_manager_calc.eo index 8bf3096..19212c7 100644 --- a/src/lib/elementary/efl_ui_focus_manager_calc.eo +++ b/src/lib/elementary/efl_ui_focus_manager_calc.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Focus.Manager_Calc (Efl.Object, Efl.Ui.Focus.Manager) { | 1 | class Efl.Ui.Focus.Manager_Calc extends Efl.Object implements Efl.Ui.Focus.Manager { |
2 | [[Calculates the directions of Efl.Ui.Focus.Direction | 2 | [[Calculates the directions of Efl.Ui.Focus.Direction |
3 | 3 | ||
4 | Each registered item will get an other registered object in each | 4 | Each registered item will get an other registered object in each |
diff --git a/src/lib/elementary/efl_ui_focus_manager_root_focus.eo b/src/lib/elementary/efl_ui_focus_manager_root_focus.eo index 3f89751..14f0f3a 100644 --- a/src/lib/elementary/efl_ui_focus_manager_root_focus.eo +++ b/src/lib/elementary/efl_ui_focus_manager_root_focus.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Focus.Manager_Root_Focus(Efl.Ui.Focus.Manager_Calc) { | 1 | class Efl.Ui.Focus.Manager_Root_Focus extends Efl.Ui.Focus.Manager_Calc { |
2 | [[ This class ensures that the root is at least focusable, if nothing else is focusable]] | 2 | [[ This class ensures that the root is at least focusable, if nothing else is focusable]] |
3 | methods { | 3 | methods { |
4 | @property canvas_object { | 4 | @property canvas_object { |
diff --git a/src/lib/elementary/efl_ui_focus_parent_provider_gen.eo b/src/lib/elementary/efl_ui_focus_parent_provider_gen.eo index 4959fac..3bb6697 100644 --- a/src/lib/elementary/efl_ui_focus_parent_provider_gen.eo +++ b/src/lib/elementary/efl_ui_focus_parent_provider_gen.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Focus.Parent_Provider_Gen(Efl.Object, Efl.Ui.Focus.Parent_Provider) { | 1 | class Efl.Ui.Focus.Parent_Provider_Gen extends Efl.Object implements Efl.Ui.Focus.Parent_Provider { |
2 | [[EFL UI Focus Parent Provider Gen class]] | 2 | [[EFL UI Focus Parent Provider Gen class]] |
3 | methods { | 3 | methods { |
4 | @property content_item_map { | 4 | @property content_item_map { |
diff --git a/src/lib/elementary/efl_ui_focus_parent_provider_standard.eo b/src/lib/elementary/efl_ui_focus_parent_provider_standard.eo index beaec44..d9d38b5 100644 --- a/src/lib/elementary/efl_ui_focus_parent_provider_standard.eo +++ b/src/lib/elementary/efl_ui_focus_parent_provider_standard.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Focus.Parent_Provider_Standard(Efl.Object, Efl.Ui.Focus.Parent_Provider) { | 1 | class Efl.Ui.Focus.Parent_Provider_Standard extends Efl.Object implements Efl.Ui.Focus.Parent_Provider { |
2 | [[EFL UI Focus Parent Provider Standard Class]] | 2 | [[EFL UI Focus Parent Provider Standard Class]] |
3 | implements { | 3 | implements { |
4 | Efl.Ui.Focus.Parent_Provider.find_logical_parent; | 4 | Efl.Ui.Focus.Parent_Provider.find_logical_parent; |
diff --git a/src/lib/elementary/efl_ui_focus_util.eo b/src/lib/elementary/efl_ui_focus_util.eo index fdf2708..4724dcc 100644 --- a/src/lib/elementary/efl_ui_focus_util.eo +++ b/src/lib/elementary/efl_ui_focus_util.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Focus.Util(Efl.Object) { | 1 | class Efl.Ui.Focus.Util extends Efl.Object { |
2 | [[EFL UI Focus Util class]] | 2 | [[EFL UI Focus Util class]] |
3 | methods { | 3 | methods { |
4 | focus @class { | 4 | focus @class { |
diff --git a/src/lib/elementary/efl_ui_frame.eo b/src/lib/elementary/efl_ui_frame.eo index 62dbf6d..af6b592 100644 --- a/src/lib/elementary/efl_ui_frame.eo +++ b/src/lib/elementary/efl_ui_frame.eo | |||
@@ -1,5 +1,5 @@ | |||
1 | class Efl.Ui.Frame (Efl.Ui.Layout, Efl.Ui.Clickable, Efl.Text, Efl.Text_Markup, | 1 | class Efl.Ui.Frame extends Efl.Ui.Layout implements Efl.Ui.Clickable, Efl.Text, Efl.Text_Markup, |
2 | Efl.Content) | 2 | Efl.Content |
3 | { | 3 | { |
4 | [[Frame widget | 4 | [[Frame widget |
5 | 5 | ||
diff --git a/src/lib/elementary/efl_ui_frame_legacy.eo b/src/lib/elementary/efl_ui_frame_legacy.eo index 02393c5..fb21570 100644 --- a/src/lib/elementary/efl_ui_frame_legacy.eo +++ b/src/lib/elementary/efl_ui_frame_legacy.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Frame_Legacy (Efl.Ui.Frame, Efl.Ui.Legacy) | 1 | class Efl.Ui.Frame_Legacy extends Efl.Ui.Frame implements Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[Frame widget | 3 | [[Frame widget |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_grid.eo b/src/lib/elementary/efl_ui_grid.eo index 7f92c0d..3c846cc 100644 --- a/src/lib/elementary/efl_ui_grid.eo +++ b/src/lib/elementary/efl_ui_grid.eo | |||
@@ -1,13 +1,13 @@ | |||
1 | import efl_ui_grid_item; | 1 | import efl_ui_grid_item; |
2 | 2 | ||
3 | class Efl.Ui.Grid (Efl.Ui.Layout, | 3 | class Efl.Ui.Grid extends Efl.Ui.Layout implements |
4 | Efl.Ui.Scrollable_Interactive, | 4 | Efl.Ui.Scrollable_Interactive, |
5 | Efl.Ui.Scrollbar, | 5 | Efl.Ui.Scrollbar, |
6 | Efl.Pack_Linear, Efl.Pack_Layout, | 6 | Efl.Pack_Linear, Efl.Pack_Layout, |
7 | Efl.Ui.Direction, | 7 | Efl.Ui.Direction, |
8 | Efl.Ui.Clickable, | 8 | Efl.Ui.Clickable, |
9 | Efl.Ui.Selectable, | 9 | Efl.Ui.Selectable, |
10 | Efl.Ui.Multi_Selectable) | 10 | Efl.Ui.Multi_Selectable |
11 | { | 11 | { |
12 | [[Simple grid widget with Pack interface.]] | 12 | [[Simple grid widget with Pack interface.]] |
13 | methods { | 13 | methods { |
diff --git a/src/lib/elementary/efl_ui_grid_default_item.eo b/src/lib/elementary/efl_ui_grid_default_item.eo index 729234e..c0f5862 100644 --- a/src/lib/elementary/efl_ui_grid_default_item.eo +++ b/src/lib/elementary/efl_ui_grid_default_item.eo | |||
@@ -1,9 +1,9 @@ | |||
1 | 1 | ||
2 | class Efl.Ui.Grid_Default_Item (Efl.Ui.Grid_Item, | 2 | class Efl.Ui.Grid_Default_Item extends Efl.Ui.Grid_Item implements |
3 | Efl.Text, | 3 | Efl.Text, |
4 | Efl.Text_Markup, | 4 | Efl.Text_Markup, |
5 | Efl.Ui.L10n, | 5 | Efl.Ui.L10n, |
6 | Efl.Content) | 6 | Efl.Content |
7 | { | 7 | { |
8 | [[Grid Default Item class. | 8 | [[Grid Default Item class. |
9 | This class need to be sub object of list widget. | 9 | This class need to be sub object of list widget. |
diff --git a/src/lib/elementary/efl_ui_grid_default_item_part_end.eo b/src/lib/elementary/efl_ui_grid_default_item_part_end.eo index 486ccbd..66ebd2a 100644 --- a/src/lib/elementary/efl_ui_grid_default_item_part_end.eo +++ b/src/lib/elementary/efl_ui_grid_default_item_part_end.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Grid_Default_Item_Part_End (Efl.Ui.Layout_Part, Efl.Content) | 1 | class Efl.Ui.Grid_Default_Item_Part_End extends Efl.Ui.Layout_Part implements Efl.Content |
2 | { | 2 | { |
3 | [[Grid Default Item internal content of end part class]] | 3 | [[Grid Default Item internal content of end part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_grid_default_item_part_icon.eo b/src/lib/elementary/efl_ui_grid_default_item_part_icon.eo index 75436f6..4dede02 100644 --- a/src/lib/elementary/efl_ui_grid_default_item_part_icon.eo +++ b/src/lib/elementary/efl_ui_grid_default_item_part_icon.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Grid_Default_Item_Part_Icon (Efl.Ui.Layout_Part, Efl.Content) | 1 | class Efl.Ui.Grid_Default_Item_Part_Icon extends Efl.Ui.Layout_Part implements Efl.Content |
2 | { | 2 | { |
3 | [[Grid Default Item internal content of icon part class]] | 3 | [[Grid Default Item internal content of icon part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_image.eo b/src/lib/elementary/efl_ui_image.eo index 94ed732..d512ad8 100644 --- a/src/lib/elementary/efl_ui_image.eo +++ b/src/lib/elementary/efl_ui_image.eo | |||
@@ -18,12 +18,12 @@ struct Efl.Ui.Image_Error | |||
18 | open_error: bool; [[$true if the error happened when opening the file, $false otherwise]] | 18 | open_error: bool; [[$true if the error happened when opening the file, $false otherwise]] |
19 | } | 19 | } |
20 | 20 | ||
21 | class Efl.Ui.Image (Efl.Ui.Widget, Efl.Ui.Clickable, Efl.Ui.Draggable, | 21 | class Efl.Ui.Image extends Efl.Ui.Widget implements Efl.Ui.Clickable, Efl.Ui.Draggable, |
22 | Efl.File, Efl.Gfx.Image, Efl.Gfx.Image_Load_Controller, Efl.Player, Efl.Gfx.View, | 22 | Efl.File, Efl.Gfx.Image, Efl.Gfx.Image_Load_Controller, Efl.Player, Efl.Gfx.View, |
23 | Efl.Access.Component, Efl.Access.Widget.Action, Efl.Gfx.Color, | 23 | Efl.Access.Component, Efl.Access.Widget.Action, Efl.Gfx.Color, |
24 | Efl.Orientation, | 24 | Efl.Orientation, |
25 | Efl.Ui.View, Efl.Ui.Model.Connect, Efl.Layout.Calc, | 25 | Efl.Ui.View, Efl.Ui.Model.Connect, Efl.Layout.Calc, |
26 | Efl.Layout.Group, Efl.Layout.Signal) | 26 | Efl.Layout.Group, Efl.Layout.Signal |
27 | { | 27 | { |
28 | [[ Efl UI image class]] | 28 | [[ Efl UI image class]] |
29 | event_prefix: efl_ui_image; | 29 | event_prefix: efl_ui_image; |
diff --git a/src/lib/elementary/efl_ui_image_factory.eo b/src/lib/elementary/efl_ui_image_factory.eo index 66abdf4..2b5c97e 100644 --- a/src/lib/elementary/efl_ui_image_factory.eo +++ b/src/lib/elementary/efl_ui_image_factory.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Image_Factory (Efl.Ui.Caching_Factory) | 1 | class Efl.Ui.Image_Factory extends Efl.Ui.Caching_Factory |
2 | { | 2 | { |
3 | [[Efl UI image factory class]] | 3 | [[Efl UI image factory class]] |
4 | implements { | 4 | implements { |
diff --git a/src/lib/elementary/efl_ui_image_legacy.eo b/src/lib/elementary/efl_ui_image_legacy.eo index 0ee7309..15a3005 100644 --- a/src/lib/elementary/efl_ui_image_legacy.eo +++ b/src/lib/elementary/efl_ui_image_legacy.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Image_Legacy (Efl.Ui.Image, Efl.Ui.Legacy) | 1 | class Efl.Ui.Image_Legacy extends Efl.Ui.Image implements Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[ Efl UI image class]] | 3 | [[ Efl UI image class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_image_zoomable.eo b/src/lib/elementary/efl_ui_image_zoomable.eo index 1baeff1..8aa7956 100644 --- a/src/lib/elementary/efl_ui_image_zoomable.eo +++ b/src/lib/elementary/efl_ui_image_zoomable.eo | |||
@@ -2,9 +2,9 @@ | |||
2 | struct @extern Elm.Photocam.Error; | 2 | struct @extern Elm.Photocam.Error; |
3 | struct @extern Elm.Photocam.Progress; | 3 | struct @extern Elm.Photocam.Progress; |
4 | 4 | ||
5 | class Efl.Ui.Image_Zoomable (Efl.Ui.Image, Efl.Ui.Zoom, | 5 | class Efl.Ui.Image_Zoomable extends Efl.Ui.Image implements Efl.Ui.Zoom, |
6 | Efl.Ui.Scrollable_Interactive, | 6 | Efl.Ui.Scrollable_Interactive, |
7 | Efl.Ui.Scrollbar) | 7 | Efl.Ui.Scrollbar |
8 | { | 8 | { |
9 | [[Elementary Image Zoomable class]] | 9 | [[Elementary Image Zoomable class]] |
10 | legacy_prefix: elm_photocam; | 10 | legacy_prefix: elm_photocam; |
diff --git a/src/lib/elementary/efl_ui_image_zoomable_legacy.eo b/src/lib/elementary/efl_ui_image_zoomable_legacy.eo index 3816422..233d9ad 100644 --- a/src/lib/elementary/efl_ui_image_zoomable_legacy.eo +++ b/src/lib/elementary/efl_ui_image_zoomable_legacy.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Image_Zoomable_Legacy (Efl.Ui.Image_Zoomable, Efl.Ui.Legacy) | 1 | class Efl.Ui.Image_Zoomable_Legacy extends Efl.Ui.Image_Zoomable implements Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[Elementary Image Zoomable class]] | 3 | [[Elementary Image Zoomable class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_image_zoomable_pan.eo b/src/lib/elementary/efl_ui_image_zoomable_pan.eo index 0f48713..4cb307e 100644 --- a/src/lib/elementary/efl_ui_image_zoomable_pan.eo +++ b/src/lib/elementary/efl_ui_image_zoomable_pan.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Image_Zoomable_Pan (Efl.Ui.Pan) | 1 | class Efl.Ui.Image_Zoomable_Pan extends Efl.Ui.Pan |
2 | { | 2 | { |
3 | [[Elementary photocom pan class]] | 3 | [[Elementary photocom pan class]] |
4 | legacy_prefix: elm_photocam_pan; | 4 | legacy_prefix: elm_photocam_pan; |
diff --git a/src/lib/elementary/efl_ui_internal_text_interactive.eo b/src/lib/elementary/efl_ui_internal_text_interactive.eo index d303619..f350514 100644 --- a/src/lib/elementary/efl_ui_internal_text_interactive.eo +++ b/src/lib/elementary/efl_ui_internal_text_interactive.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Internal.Text.Interactive (Efl.Canvas.Text, Efl.Text_Interactive) | 1 | class Efl.Ui.Internal.Text.Interactive extends Efl.Canvas.Text implements Efl.Text_Interactive |
2 | { | 2 | { |
3 | [[An internal object in charge of the interactive aspect of the text widget. | 3 | [[An internal object in charge of the interactive aspect of the text widget. |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_internal_text_scroller.eo b/src/lib/elementary/efl_ui_internal_text_scroller.eo index 47624e4..bc9b33e 100644 --- a/src/lib/elementary/efl_ui_internal_text_scroller.eo +++ b/src/lib/elementary/efl_ui_internal_text_scroller.eo | |||
@@ -5,7 +5,7 @@ enum Efl.Ui.Text_Scroller_Mode | |||
5 | multiline = 1, | 5 | multiline = 1, |
6 | } | 6 | } |
7 | 7 | ||
8 | class Efl.Ui.Internal_Text_Scroller (Efl.Ui.Scroller) | 8 | class Efl.Ui.Internal_Text_Scroller extends Efl.Ui.Scroller |
9 | { | 9 | { |
10 | [[Internal-usage text scroller class. | 10 | [[Internal-usage text scroller class. |
11 | 11 | ||
diff --git a/src/lib/elementary/efl_ui_layout.eo b/src/lib/elementary/efl_ui_layout.eo index e404af7..4bae691 100644 --- a/src/lib/elementary/efl_ui_layout.eo +++ b/src/lib/elementary/efl_ui_layout.eo | |||
@@ -1,9 +1,9 @@ | |||
1 | import efl_ui; | 1 | import efl_ui; |
2 | 2 | ||
3 | class Efl.Ui.Layout (Efl.Ui.Widget, Efl.Container, Efl.File, | 3 | class Efl.Ui.Layout extends Efl.Ui.Widget implements Efl.Container, Efl.File, |
4 | Efl.Ui.View, Efl.Ui.Model.Connect, Efl.Ui.Factory, | 4 | Efl.Ui.View, Efl.Ui.Model.Connect, Efl.Ui.Factory, |
5 | Efl.Layout.Calc, Efl.Layout.Signal, | 5 | Efl.Layout.Calc, Efl.Layout.Signal, |
6 | Efl.Layout.Group) | 6 | Efl.Layout.Group |
7 | { | 7 | { |
8 | [[Elementary layout class]] | 8 | [[Elementary layout class]] |
9 | methods { | 9 | methods { |
diff --git a/src/lib/elementary/efl_ui_layout_factory.eo b/src/lib/elementary/efl_ui_layout_factory.eo index 8b9c06b..ea71e89 100644 --- a/src/lib/elementary/efl_ui_layout_factory.eo +++ b/src/lib/elementary/efl_ui_layout_factory.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Layout_Factory (Efl.Ui.Caching_Factory) | 1 | class Efl.Ui.Layout_Factory extends Efl.Ui.Caching_Factory |
2 | { | 2 | { |
3 | [[Efl Ui Layout Factory class]] | 3 | [[Efl Ui Layout Factory class]] |
4 | methods { | 4 | methods { |
diff --git a/src/lib/elementary/efl_ui_layout_legacy.eo b/src/lib/elementary/efl_ui_layout_legacy.eo index e444e4d..ca16e60 100644 --- a/src/lib/elementary/efl_ui_layout_legacy.eo +++ b/src/lib/elementary/efl_ui_layout_legacy.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Layout_Legacy (Efl.Ui.Layout, Efl.Ui.Legacy) | 1 | class Efl.Ui.Layout_Legacy extends Efl.Ui.Layout implements Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[Elementary layout class]] | 3 | [[Elementary layout class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_layout_part.eo b/src/lib/elementary/efl_ui_layout_part.eo index 0a3f84b..9dad61e 100644 --- a/src/lib/elementary/efl_ui_layout_part.eo +++ b/src/lib/elementary/efl_ui_layout_part.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Layout_Part (Efl.Ui.Widget_Part, Efl.Ui.Cursor) | 1 | class Efl.Ui.Layout_Part extends Efl.Ui.Widget_Part implements Efl.Ui.Cursor |
2 | { | 2 | { |
3 | [[Elementary layout internal part class]] | 3 | [[Elementary layout internal part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_layout_part_bg.eo b/src/lib/elementary/efl_ui_layout_part_bg.eo index 372099e..dff060f 100644 --- a/src/lib/elementary/efl_ui_layout_part_bg.eo +++ b/src/lib/elementary/efl_ui_layout_part_bg.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Layout_Part_Bg (Efl.Ui.Widget_Part_Bg) | 1 | class Efl.Ui.Layout_Part_Bg extends Efl.Ui.Widget_Part_Bg |
2 | { | 2 | { |
3 | [[Elementary layout internal part background class]] | 3 | [[Elementary layout internal part background class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_layout_part_box.eo b/src/lib/elementary/efl_ui_layout_part_box.eo index 575749a..59ecc64 100644 --- a/src/lib/elementary/efl_ui_layout_part_box.eo +++ b/src/lib/elementary/efl_ui_layout_part_box.eo | |||
@@ -1,5 +1,5 @@ | |||
1 | class Efl.Ui.Layout_Part_Box (Efl.Object, Efl.Pack_Linear, | 1 | class Efl.Ui.Layout_Part_Box extends Efl.Object implements Efl.Pack_Linear, |
2 | Efl.Ui.Direction) | 2 | Efl.Ui.Direction |
3 | { | 3 | { |
4 | [[Represents a Box created as part of a layout. | 4 | [[Represents a Box created as part of a layout. |
5 | 5 | ||
diff --git a/src/lib/elementary/efl_ui_layout_part_content.eo b/src/lib/elementary/efl_ui_layout_part_content.eo index 20284f2..c09d075 100644 --- a/src/lib/elementary/efl_ui_layout_part_content.eo +++ b/src/lib/elementary/efl_ui_layout_part_content.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Layout_Part_Content (Efl.Ui.Layout_Part, Efl.Content) | 1 | class Efl.Ui.Layout_Part_Content extends Efl.Ui.Layout_Part implements Efl.Content |
2 | { | 2 | { |
3 | [[Elementary layout internal part class]] | 3 | [[Elementary layout internal part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_layout_part_legacy.eo b/src/lib/elementary/efl_ui_layout_part_legacy.eo index 1ebd8ae..af6279e 100644 --- a/src/lib/elementary/efl_ui_layout_part_legacy.eo +++ b/src/lib/elementary/efl_ui_layout_part_legacy.eo | |||
@@ -1,5 +1,5 @@ | |||
1 | class Efl.Ui.Layout_Part_Legacy (Efl.Ui.Layout_Part, Efl.Content, Efl.Text, | 1 | class Efl.Ui.Layout_Part_Legacy extends Efl.Ui.Layout_Part implements Efl.Content, Efl.Text, |
2 | Efl.Text_Markup, Efl.Ui.L10n) | 2 | Efl.Text_Markup, Efl.Ui.L10n |
3 | { | 3 | { |
4 | [[Elementary layout internal part class]] | 4 | [[Elementary layout internal part class]] |
5 | data: null; | 5 | data: null; |
diff --git a/src/lib/elementary/efl_ui_layout_part_table.eo b/src/lib/elementary/efl_ui_layout_part_table.eo index 660afa4..db6ce08 100644 --- a/src/lib/elementary/efl_ui_layout_part_table.eo +++ b/src/lib/elementary/efl_ui_layout_part_table.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Layout_Part_Table (Efl.Object, Efl.Pack_Table) | 1 | class Efl.Ui.Layout_Part_Table extends Efl.Object implements Efl.Pack_Table |
2 | { | 2 | { |
3 | [[Represents a Table created as part of a layout. | 3 | [[Represents a Table created as part of a layout. |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_layout_part_text.eo b/src/lib/elementary/efl_ui_layout_part_text.eo index 166df84..0a092a2 100644 --- a/src/lib/elementary/efl_ui_layout_part_text.eo +++ b/src/lib/elementary/efl_ui_layout_part_text.eo | |||
@@ -1,5 +1,5 @@ | |||
1 | class Efl.Ui.Layout_Part_Text (Efl.Ui.Layout_Part, Efl.Text, Efl.Text_Markup, | 1 | class Efl.Ui.Layout_Part_Text extends Efl.Ui.Layout_Part implements Efl.Text, Efl.Text_Markup, |
2 | Efl.Ui.L10n) | 2 | Efl.Ui.L10n |
3 | { | 3 | { |
4 | [[Elementary layout internal part class]] | 4 | [[Elementary layout internal part class]] |
5 | data: null; | 5 | data: null; |
diff --git a/src/lib/elementary/efl_ui_list.eo b/src/lib/elementary/efl_ui_list.eo index 00e60d6..5ccb5bd 100644 --- a/src/lib/elementary/efl_ui_list.eo +++ b/src/lib/elementary/efl_ui_list.eo | |||
@@ -1,12 +1,12 @@ | |||
1 | import efl_ui_list_item; | 1 | import efl_ui_list_item; |
2 | 2 | ||
3 | class Efl.Ui.List (Efl.Ui.Layout, | 3 | class Efl.Ui.List extends Efl.Ui.Layout implements |
4 | Efl.Ui.Scrollable_Interactive, | 4 | Efl.Ui.Scrollable_Interactive, |
5 | Efl.Ui.Scrollbar, | 5 | Efl.Ui.Scrollbar, |
6 | Efl.Pack_Linear, Efl.Pack_Layout, | 6 | Efl.Pack_Linear, Efl.Pack_Layout, |
7 | Efl.Ui.Clickable, | 7 | Efl.Ui.Clickable, |
8 | Efl.Ui.Selectable, | 8 | Efl.Ui.Selectable, |
9 | Efl.Ui.Multi_Selectable) | 9 | Efl.Ui.Multi_Selectable |
10 | { | 10 | { |
11 | [[Simple list widget with Pack interface.]] | 11 | [[Simple list widget with Pack interface.]] |
12 | methods { | 12 | methods { |
diff --git a/src/lib/elementary/efl_ui_list_default_item.eo b/src/lib/elementary/efl_ui_list_default_item.eo index 8e5948a..d4aca69 100644 --- a/src/lib/elementary/efl_ui_list_default_item.eo +++ b/src/lib/elementary/efl_ui_list_default_item.eo | |||
@@ -1,8 +1,8 @@ | |||
1 | 1 | ||
2 | class Efl.Ui.List_Default_Item (Efl.Ui.List_Item, | 2 | class Efl.Ui.List_Default_Item extends Efl.Ui.List_Item implements |
3 | Efl.Text, | 3 | Efl.Text, |
4 | Efl.Text_Markup, | 4 | Efl.Text_Markup, |
5 | Efl.Content) | 5 | Efl.Content |
6 | { | 6 | { |
7 | [[List Default Item class. | 7 | [[List Default Item class. |
8 | This class need to be sub object of list widget. | 8 | This class need to be sub object of list widget. |
diff --git a/src/lib/elementary/efl_ui_list_default_item_part_end.eo b/src/lib/elementary/efl_ui_list_default_item_part_end.eo index d149213..c7b51fb 100644 --- a/src/lib/elementary/efl_ui_list_default_item_part_end.eo +++ b/src/lib/elementary/efl_ui_list_default_item_part_end.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.List_Default_Item_Part_End (Efl.Ui.Layout_Part, Efl.Content) | 1 | class Efl.Ui.List_Default_Item_Part_End extends Efl.Ui.Layout_Part implements Efl.Content |
2 | { | 2 | { |
3 | [[List Default Item internal content of end part class]] | 3 | [[List Default Item internal content of end part class]] |
4 | data: null; | 4 | data: null; |
@@ -6,4 +6,4 @@ class Efl.Ui.List_Default_Item_Part_End (Efl.Ui.Layout_Part, Efl.Content) | |||
6 | Efl.Content.content { get; set; } | 6 | Efl.Content.content { get; set; } |
7 | Efl.Content.content_unset; | 7 | Efl.Content.content_unset; |
8 | } | 8 | } |
9 | } \ No newline at end of file | 9 | } |
diff --git a/src/lib/elementary/efl_ui_list_default_item_part_icon.eo b/src/lib/elementary/efl_ui_list_default_item_part_icon.eo index 319be19..ff0ec0e 100644 --- a/src/lib/elementary/efl_ui_list_default_item_part_icon.eo +++ b/src/lib/elementary/efl_ui_list_default_item_part_icon.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.List_Default_Item_Part_Icon (Efl.Ui.Layout_Part, Efl.Content) | 1 | class Efl.Ui.List_Default_Item_Part_Icon extends Efl.Ui.Layout_Part implements Efl.Content |
2 | { | 2 | { |
3 | [[List Default Item internal content of icon part class]] | 3 | [[List Default Item internal content of icon part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_list_empty_item.eo b/src/lib/elementary/efl_ui_list_empty_item.eo index ad91107..9b3456d 100644 --- a/src/lib/elementary/efl_ui_list_empty_item.eo +++ b/src/lib/elementary/efl_ui_list_empty_item.eo | |||
@@ -1,5 +1,5 @@ | |||
1 | 1 | ||
2 | class Efl.Ui.List_Empty_Item (Efl.Ui.List_Item, Efl.Content) | 2 | class Efl.Ui.List_Empty_Item extends Efl.Ui.List_Item implements Efl.Content |
3 | { | 3 | { |
4 | [[List Empty Item class. This item have only one swallow space, | 4 | [[List Empty Item class. This item have only one swallow space, |
5 | thus user can decorate item by filling the swallow with | 5 | thus user can decorate item by filling the swallow with |
diff --git a/src/lib/elementary/efl_ui_list_view.eo b/src/lib/elementary/efl_ui_list_view.eo index 971a018..83e403f 100644 --- a/src/lib/elementary/efl_ui_list_view.eo +++ b/src/lib/elementary/efl_ui_list_view.eo | |||
@@ -6,9 +6,9 @@ struct Efl.Ui.List_View_Item_Event | |||
6 | child: Efl.Model; | 6 | child: Efl.Model; |
7 | index: int; | 7 | index: int; |
8 | } | 8 | } |
9 | class Efl.Ui.List_View (Efl.Ui.Layout, Efl.Ui.Scrollable_Interactive, Efl.Ui.Scrollbar, | 9 | class Efl.Ui.List_View extends Efl.Ui.Layout implements Efl.Ui.Scrollable_Interactive, Efl.Ui.Scrollbar, |
10 | Efl.Access.Widget.Action, Efl.Access.Selection, Efl.Ui.Focus.Composition, Efl.Ui.Focus.Manager_Sub, | 10 | Efl.Access.Widget.Action, Efl.Access.Selection, Efl.Ui.Focus.Composition, Efl.Ui.Focus.Manager_Sub, |
11 | Efl.Ui.Clickable, Efl.Ui.Selectable, Efl.Ui.List_View_Model, Efl.Ui.Widget_Focus_Manager) | 11 | Efl.Ui.Clickable, Efl.Ui.Selectable, Efl.Ui.List_View_Model, Efl.Ui.Widget_Focus_Manager |
12 | { | 12 | { |
13 | methods { | 13 | methods { |
14 | @property relayout { | 14 | @property relayout { |
diff --git a/src/lib/elementary/efl_ui_list_view_pan.eo b/src/lib/elementary/efl_ui_list_view_pan.eo index 1253a88..e05cd09 100644 --- a/src/lib/elementary/efl_ui_list_view_pan.eo +++ b/src/lib/elementary/efl_ui_list_view_pan.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.List_View_Pan (Efl.Ui.Pan) | 1 | class Efl.Ui.List_View_Pan extends Efl.Ui.Pan |
2 | { | 2 | { |
3 | [[Elementary Efl_Ui_List_View pan class]] | 3 | [[Elementary Efl_Ui_List_View pan class]] |
4 | implements { | 4 | implements { |
diff --git a/src/lib/elementary/efl_ui_list_view_precise_layouter.eo b/src/lib/elementary/efl_ui_list_view_precise_layouter.eo index 9100f69..52f4964 100644 --- a/src/lib/elementary/efl_ui_list_view_precise_layouter.eo +++ b/src/lib/elementary/efl_ui_list_view_precise_layouter.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.List_View_Precise_Layouter (Efl.Object, Efl.Ui.List_View_Relayout) | 1 | class Efl.Ui.List_View_Precise_Layouter extends Efl.Object implements Efl.Ui.List_View_Relayout |
2 | { | 2 | { |
3 | implements { | 3 | implements { |
4 | Efl.Object.constructor; | 4 | Efl.Object.constructor; |
diff --git a/src/lib/elementary/efl_ui_list_view_seg_array.eo b/src/lib/elementary/efl_ui_list_view_seg_array.eo index 197828e..228b417 100644 --- a/src/lib/elementary/efl_ui_list_view_seg_array.eo +++ b/src/lib/elementary/efl_ui_list_view_seg_array.eo | |||
@@ -1,6 +1,6 @@ | |||
1 | import efl_ui_list_view_types; | 1 | import efl_ui_list_view_types; |
2 | 2 | ||
3 | class Efl.Ui.List_View_Seg_Array (Efl.Object) | 3 | class Efl.Ui.List_View_Seg_Array extends Efl.Object |
4 | { | 4 | { |
5 | methods { | 5 | methods { |
6 | @property accessor { | 6 | @property accessor { |
diff --git a/src/lib/elementary/efl_ui_model_state.eo b/src/lib/elementary/efl_ui_model_state.eo index 3192df1..eb49aba 100644 --- a/src/lib/elementary/efl_ui_model_state.eo +++ b/src/lib/elementary/efl_ui_model_state.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Model_State (Efl.Model_Composite_Boolean) | 1 | class Efl.Ui.Model_State extends Efl.Model_Composite_Boolean |
2 | { | 2 | { |
3 | [[Efl model handling visibility, enable and selected state]] | 3 | [[Efl model handling visibility, enable and selected state]] |
4 | implements { | 4 | implements { |
diff --git a/src/lib/elementary/efl_ui_navigation_bar.eo b/src/lib/elementary/efl_ui_navigation_bar.eo index 1a40249..15f4d92 100644 --- a/src/lib/elementary/efl_ui_navigation_bar.eo +++ b/src/lib/elementary/efl_ui_navigation_bar.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Navigation_Bar (Efl.Ui.Layout, Efl.Content, Efl.Text) | 1 | class Efl.Ui.Navigation_Bar extends Efl.Ui.Layout implements Efl.Content, Efl.Text |
2 | { | 2 | { |
3 | [[Navigation_Bar widget. | 3 | [[Navigation_Bar widget. |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_navigation_bar_part.eo b/src/lib/elementary/efl_ui_navigation_bar_part.eo index 30f677f..c94b5a5 100644 --- a/src/lib/elementary/efl_ui_navigation_bar_part.eo +++ b/src/lib/elementary/efl_ui_navigation_bar_part.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Navigation_Bar_Part (Efl.Ui.Layout_Part_Content) | 1 | class Efl.Ui.Navigation_Bar_Part extends Efl.Ui.Layout_Part_Content |
2 | { | 2 | { |
3 | [[Efl UI Navigation_Bar internal part class]] | 3 | [[Efl UI Navigation_Bar internal part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_navigation_bar_part_back_button.eo b/src/lib/elementary/efl_ui_navigation_bar_part_back_button.eo index 21ebddb..43e3dd1 100644 --- a/src/lib/elementary/efl_ui_navigation_bar_part_back_button.eo +++ b/src/lib/elementary/efl_ui_navigation_bar_part_back_button.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Navigation_Bar_Part_Back_Button (Efl.Ui.Layout_Part, Efl.Ui.Clickable, Efl.Gfx.Entity, Efl.Text, Efl.Content) | 1 | class Efl.Ui.Navigation_Bar_Part_Back_Button extends Efl.Ui.Layout_Part implements Efl.Ui.Clickable, Efl.Gfx.Entity, Efl.Text, Efl.Content |
2 | { | 2 | { |
3 | [[Efl Ui Navigation_Bar internal part back button class]] | 3 | [[Efl Ui Navigation_Bar internal part back button class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_navigation_layout.eo b/src/lib/elementary/efl_ui_navigation_layout.eo index 846fbf6..51fe71f 100644 --- a/src/lib/elementary/efl_ui_navigation_layout.eo +++ b/src/lib/elementary/efl_ui_navigation_layout.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Navigation_Layout (Efl.Ui.Layout, Efl.Content) | 1 | class Efl.Ui.Navigation_Layout extends Efl.Ui.Layout implements Efl.Content |
2 | { | 2 | { |
3 | [[Navigation_Layout widget. | 3 | [[Navigation_Layout widget. |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_nstate.eo b/src/lib/elementary/efl_ui_nstate.eo index 8c3f1de..31b29ac 100644 --- a/src/lib/elementary/efl_ui_nstate.eo +++ b/src/lib/elementary/efl_ui_nstate.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Nstate(Efl.Ui.Button) | 1 | class Efl.Ui.Nstate extends Efl.Ui.Button |
2 | { | 2 | { |
3 | [[Efl UI nstate class]] | 3 | [[Efl UI nstate class]] |
4 | methods { | 4 | methods { |
diff --git a/src/lib/elementary/efl_ui_pager.eo b/src/lib/elementary/efl_ui_pager.eo index 2f67cc7..4962f78 100644 --- a/src/lib/elementary/efl_ui_pager.eo +++ b/src/lib/elementary/efl_ui_pager.eo | |||
@@ -5,7 +5,7 @@ enum Efl.Ui.Pager_Loop | |||
5 | enabled | 5 | enabled |
6 | } | 6 | } |
7 | 7 | ||
8 | class Efl.Ui.Pager (Efl.Ui.Layout, Efl.Pack_Linear) | 8 | class Efl.Ui.Pager extends Efl.Ui.Layout implements Efl.Pack_Linear |
9 | { | 9 | { |
10 | [[Pager widget | 10 | [[Pager widget |
11 | 11 | ||
diff --git a/src/lib/elementary/efl_ui_pan.eo b/src/lib/elementary/efl_ui_pan.eo index b27b8ca..bd47b60 100644 --- a/src/lib/elementary/efl_ui_pan.eo +++ b/src/lib/elementary/efl_ui_pan.eo | |||
@@ -1,5 +1,4 @@ | |||
1 | class Efl.Ui.Pan (Efl.Canvas.Group, | 1 | class Efl.Ui.Pan extends Efl.Canvas.Group implements Efl.Content |
2 | Efl.Content) | ||
3 | { | 2 | { |
4 | [[Elementary pan class]] | 3 | [[Elementary pan class]] |
5 | methods { | 4 | methods { |
diff --git a/src/lib/elementary/efl_ui_panel.eo b/src/lib/elementary/efl_ui_panel.eo index da28517..6d0bc5c 100644 --- a/src/lib/elementary/efl_ui_panel.eo +++ b/src/lib/elementary/efl_ui_panel.eo | |||
@@ -15,8 +15,8 @@ struct Efl.Ui.Panel_Scroll_Info | |||
15 | rel_y: double; [[content scrolled position (0.0 ~ 1.0) in the panel]] | 15 | rel_y: double; [[content scrolled position (0.0 ~ 1.0) in the panel]] |
16 | } | 16 | } |
17 | 17 | ||
18 | class Efl.Ui.Panel (Efl.Ui.Layout, Efl.Ui.Focus.Layer, Elm.Interface_Scrollable, Efl.Content, | 18 | class Efl.Ui.Panel extends Efl.Ui.Layout implements Efl.Ui.Focus.Layer, Elm.Interface_Scrollable, Efl.Content, |
19 | Efl.Access.Widget.Action) | 19 | Efl.Access.Widget.Action |
20 | { | 20 | { |
21 | [[Elementary panel class]] | 21 | [[Elementary panel class]] |
22 | methods { | 22 | methods { |
diff --git a/src/lib/elementary/efl_ui_panes.eo b/src/lib/elementary/efl_ui_panes.eo index 62594f3..eb4d0c3 100644 --- a/src/lib/elementary/efl_ui_panes.eo +++ b/src/lib/elementary/efl_ui_panes.eo | |||
@@ -1,5 +1,5 @@ | |||
1 | class Efl.Ui.Panes (Efl.Ui.Layout, Efl.Ui.Direction, | 1 | class Efl.Ui.Panes extends Efl.Ui.Layout implements Efl.Ui.Direction, |
2 | Efl.Ui.Clickable) | 2 | Efl.Ui.Clickable |
3 | { | 3 | { |
4 | [[Elementary panes class]] | 4 | [[Elementary panes class]] |
5 | legacy_prefix: elm_panes; | 5 | legacy_prefix: elm_panes; |
diff --git a/src/lib/elementary/efl_ui_panes_legacy.eo b/src/lib/elementary/efl_ui_panes_legacy.eo index 704f709..28f9ca5 100644 --- a/src/lib/elementary/efl_ui_panes_legacy.eo +++ b/src/lib/elementary/efl_ui_panes_legacy.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Panes_Legacy(Efl.Ui.Panes, Efl.Ui.Legacy) | 1 | class Efl.Ui.Panes_Legacy extends Efl.Ui.Panes implements Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[Elementary panes class]] | 3 | [[Elementary panes class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_panes_part.eo b/src/lib/elementary/efl_ui_panes_part.eo index f7b8001..4a96713 100644 --- a/src/lib/elementary/efl_ui_panes_part.eo +++ b/src/lib/elementary/efl_ui_panes_part.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Panes_Part (Efl.Ui.Layout_Part_Content) | 1 | class Efl.Ui.Panes_Part extends Efl.Ui.Layout_Part_Content |
2 | { | 2 | { |
3 | [[Elementary Panes internal part class]] | 3 | [[Elementary Panes internal part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_popup.eo b/src/lib/elementary/efl_ui_popup.eo index 16d8105..26d8597 100644 --- a/src/lib/elementary/efl_ui_popup.eo +++ b/src/lib/elementary/efl_ui_popup.eo | |||
@@ -8,7 +8,7 @@ enum Efl.Ui.Popup_Align { | |||
8 | bottom [[Popup aligned to bottom]] | 8 | bottom [[Popup aligned to bottom]] |
9 | } | 9 | } |
10 | 10 | ||
11 | class Efl.Ui.Popup(Efl.Ui.Layout, Efl.Content) | 11 | class Efl.Ui.Popup extends Efl.Ui.Layout implements Efl.Content |
12 | { | 12 | { |
13 | [[EFL UI popup class]] | 13 | [[EFL UI popup class]] |
14 | methods { | 14 | methods { |
diff --git a/src/lib/elementary/efl_ui_popup_part_backwall.eo b/src/lib/elementary/efl_ui_popup_part_backwall.eo index fc88747..124d27c 100644 --- a/src/lib/elementary/efl_ui_popup_part_backwall.eo +++ b/src/lib/elementary/efl_ui_popup_part_backwall.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Popup_Part_Backwall (Efl.Ui.Layout_Part, Efl.File) | 1 | class Efl.Ui.Popup_Part_Backwall extends Efl.Ui.Layout_Part implements Efl.File |
2 | { | 2 | { |
3 | [[Efl UI Popup internal part backwall class]] | 3 | [[Efl UI Popup internal part backwall class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_progressbar.eo b/src/lib/elementary/efl_ui_progressbar.eo index 80e7caf..2222763 100644 --- a/src/lib/elementary/efl_ui_progressbar.eo +++ b/src/lib/elementary/efl_ui_progressbar.eo | |||
@@ -1,6 +1,6 @@ | |||
1 | class Efl.Ui.Progressbar (Efl.Ui.Layout, Efl.Ui.Range, Efl.Ui.Format, | 1 | class Efl.Ui.Progressbar extends Efl.Ui.Layout implements Efl.Ui.Range, Efl.Ui.Format, |
2 | Efl.Ui.Direction, Efl.Access.Value, | 2 | Efl.Ui.Direction, Efl.Access.Value, |
3 | Efl.Text, Efl.Content, Efl.Text_Markup) | 3 | Efl.Text, Efl.Content, Efl.Text_Markup |
4 | { | 4 | { |
5 | [[Elementary progressbar class]] | 5 | [[Elementary progressbar class]] |
6 | methods { | 6 | methods { |
diff --git a/src/lib/elementary/efl_ui_progressbar_legacy.eo b/src/lib/elementary/efl_ui_progressbar_legacy.eo index b091225..a8361cf 100644 --- a/src/lib/elementary/efl_ui_progressbar_legacy.eo +++ b/src/lib/elementary/efl_ui_progressbar_legacy.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Progressbar_Legacy (Efl.Ui.Progressbar, Efl.Ui.Legacy) | 1 | class Efl.Ui.Progressbar_Legacy extends Efl.Ui.Progressbar implements Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[Elementary progressbar class]] | 3 | [[Elementary progressbar class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_progressbar_legacy_part.eo b/src/lib/elementary/efl_ui_progressbar_legacy_part.eo index faffc05..fd989e5 100644 --- a/src/lib/elementary/efl_ui_progressbar_legacy_part.eo +++ b/src/lib/elementary/efl_ui_progressbar_legacy_part.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Progressbar_Legacy_Part (Efl.Ui.Layout_Part_Content) | 1 | class Efl.Ui.Progressbar_Legacy_Part extends Efl.Ui.Layout_Part_Content |
2 | { | 2 | { |
3 | [[Elementary progressbar internal part class]] | 3 | [[Elementary progressbar internal part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_progressbar_part.eo b/src/lib/elementary/efl_ui_progressbar_part.eo index 1b68701..13924fc 100644 --- a/src/lib/elementary/efl_ui_progressbar_part.eo +++ b/src/lib/elementary/efl_ui_progressbar_part.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Progressbar_Part (Efl.Ui.Layout_Part, Efl.Ui.Range) | 1 | class Efl.Ui.Progressbar_Part extends Efl.Ui.Layout_Part implements Efl.Ui.Range |
2 | { | 2 | { |
3 | [[Elementary progressbar internal part class]] | 3 | [[Elementary progressbar internal part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_radio.eo b/src/lib/elementary/efl_ui_radio.eo index 44d3df9..c85d163 100644 --- a/src/lib/elementary/efl_ui_radio.eo +++ b/src/lib/elementary/efl_ui_radio.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Radio (Efl.Ui.Check, Efl.Access.Widget.Action, Efl.Content) | 1 | class Efl.Ui.Radio extends Efl.Ui.Check implements Efl.Access.Widget.Action, Efl.Content |
2 | { | 2 | { |
3 | [[Elementary radio class]] | 3 | [[Elementary radio class]] |
4 | legacy_prefix: elm_radio; | 4 | legacy_prefix: elm_radio; |
diff --git a/src/lib/elementary/efl_ui_radio_legacy.eo b/src/lib/elementary/efl_ui_radio_legacy.eo index cee114a..8089c48 100644 --- a/src/lib/elementary/efl_ui_radio_legacy.eo +++ b/src/lib/elementary/efl_ui_radio_legacy.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Radio_Legacy (Efl.Ui.Radio, Efl.Ui.Legacy) | 1 | class Efl.Ui.Radio_Legacy extends Efl.Ui.Radio implements Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[Elementary radio class]] | 3 | [[Elementary radio class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_radio_legacy_part.eo b/src/lib/elementary/efl_ui_radio_legacy_part.eo index ceca646..e7edcde 100644 --- a/src/lib/elementary/efl_ui_radio_legacy_part.eo +++ b/src/lib/elementary/efl_ui_radio_legacy_part.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Radio_Legacy_Part (Efl.Ui.Layout_Part_Content) | 1 | class Efl.Ui.Radio_Legacy_Part extends Efl.Ui.Layout_Part_Content |
2 | { | 2 | { |
3 | [[Elementary radio internal part class]] | 3 | [[Elementary radio internal part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_scroll_alert_popup.eo b/src/lib/elementary/efl_ui_scroll_alert_popup.eo index 5170627..fe4cf36 100644 --- a/src/lib/elementary/efl_ui_scroll_alert_popup.eo +++ b/src/lib/elementary/efl_ui_scroll_alert_popup.eo | |||
@@ -1,6 +1,6 @@ | |||
1 | import eina_types; | 1 | import eina_types; |
2 | 2 | ||
3 | class Efl.Ui.Scroll_Alert_Popup(Efl.Ui.Alert_Popup) | 3 | class Efl.Ui.Scroll_Alert_Popup extends Efl.Ui.Alert_Popup |
4 | { | 4 | { |
5 | [[EFL UI Scroll Alert Popup class]] | 5 | [[EFL UI Scroll Alert Popup class]] |
6 | methods { | 6 | methods { |
diff --git a/src/lib/elementary/efl_ui_scroll_alert_popup_part.eo b/src/lib/elementary/efl_ui_scroll_alert_popup_part.eo index 06730a3..f100d02 100644 --- a/src/lib/elementary/efl_ui_scroll_alert_popup_part.eo +++ b/src/lib/elementary/efl_ui_scroll_alert_popup_part.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Scroll_Alert_Popup_Part (Efl.Ui.Layout_Part, Efl.Content, Efl.Text) | 1 | class Efl.Ui.Scroll_Alert_Popup_Part extends Efl.Ui.Layout_Part implements Efl.Content, Efl.Text |
2 | { | 2 | { |
3 | [[Efl UI Scroll Alert Popup internal part class]] | 3 | [[Efl UI Scroll Alert Popup internal part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_scroll_manager.eo b/src/lib/elementary/efl_ui_scroll_manager.eo index 90cab82..c390e16 100644 --- a/src/lib/elementary/efl_ui_scroll_manager.eo +++ b/src/lib/elementary/efl_ui_scroll_manager.eo | |||
@@ -1,7 +1,7 @@ | |||
1 | class Efl.Ui.Scroll.Manager (Efl.Object, | 1 | class Efl.Ui.Scroll.Manager extends Efl.Object implements |
2 | Efl.Ui.I18n, | 2 | Efl.Ui.I18n, |
3 | Efl.Ui.Scrollable_Interactive, | 3 | Efl.Ui.Scrollable_Interactive, |
4 | Efl.Ui.Scrollbar) | 4 | Efl.Ui.Scrollbar |
5 | { | 5 | { |
6 | [[Efl ui scroll manager class]] | 6 | [[Efl ui scroll manager class]] |
7 | event_prefix: efl_ui; | 7 | event_prefix: efl_ui; |
@@ -9,7 +9,7 @@ class Efl.Ui.Scroll.Manager (Efl.Object, | |||
9 | methods { | 9 | methods { |
10 | @property pan @protected { | 10 | @property pan @protected { |
11 | [[This is the internal pan object managed by scroll manager. | 11 | [[This is the internal pan object managed by scroll manager. |
12 | 12 | ||
13 | This property is protected as it is meant for scrollable object | 13 | This property is protected as it is meant for scrollable object |
14 | implementations only, to set and access the internal pan object. | 14 | implementations only, to set and access the internal pan object. |
15 | If pan is set to NULL, scrolling does not work. | 15 | If pan is set to NULL, scrolling does not work. |
diff --git a/src/lib/elementary/efl_ui_scroller.eo b/src/lib/elementary/efl_ui_scroller.eo index c037fe7..d7ad5d1 100644 --- a/src/lib/elementary/efl_ui_scroller.eo +++ b/src/lib/elementary/efl_ui_scroller.eo | |||
@@ -1,7 +1,7 @@ | |||
1 | class Efl.Ui.Scroller (Efl.Ui.Layout, | 1 | class Efl.Ui.Scroller extends Efl.Ui.Layout implements |
2 | Efl.Ui.Scrollable_Interactive, | 2 | Efl.Ui.Scrollable_Interactive, |
3 | Efl.Ui.Scrollbar, | 3 | Efl.Ui.Scrollbar, |
4 | Efl.Content) | 4 | Efl.Content |
5 | { | 5 | { |
6 | [[Efl ui scroller class]] | 6 | [[Efl ui scroller class]] |
7 | implements { | 7 | implements { |
diff --git a/src/lib/elementary/efl_ui_selection_manager.eo b/src/lib/elementary/efl_ui_selection_manager.eo index 893630a..50b5d5b 100644 --- a/src/lib/elementary/efl_ui_selection_manager.eo +++ b/src/lib/elementary/efl_ui_selection_manager.eo | |||
@@ -1,6 +1,6 @@ | |||
1 | import efl_ui_dnd_types; | 1 | import efl_ui_dnd_types; |
2 | 2 | ||
3 | class Efl.Ui.Selection_Manager (Efl.Object) { | 3 | class Efl.Ui.Selection_Manager extends Efl.Object { |
4 | methods { | 4 | methods { |
5 | selection_set @beta { | 5 | selection_set @beta { |
6 | [[Set selection]] | 6 | [[Set selection]] |
diff --git a/src/lib/elementary/efl_ui_slider.eo b/src/lib/elementary/efl_ui_slider.eo index 0fa7ad5..43bb166 100644 --- a/src/lib/elementary/efl_ui_slider.eo +++ b/src/lib/elementary/efl_ui_slider.eo | |||
@@ -1,7 +1,7 @@ | |||
1 | class Efl.Ui.Slider (Efl.Ui.Layout, Efl.Ui.Range, Efl.Ui.Direction, | 1 | class Efl.Ui.Slider extends Efl.Ui.Layout implements Efl.Ui.Range, Efl.Ui.Direction, |
2 | Efl.Access.Value, | 2 | Efl.Access.Value, |
3 | Efl.Access.Widget.Action, | 3 | Efl.Access.Widget.Action, |
4 | Efl.Content) | 4 | Efl.Content |
5 | { | 5 | { |
6 | [[Elementary slider class]] | 6 | [[Elementary slider class]] |
7 | legacy_prefix: null; | 7 | legacy_prefix: null; |
diff --git a/src/lib/elementary/efl_ui_slider_interval.eo b/src/lib/elementary/efl_ui_slider_interval.eo index 15172dc..0a83389 100644 --- a/src/lib/elementary/efl_ui_slider_interval.eo +++ b/src/lib/elementary/efl_ui_slider_interval.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Slider_Interval (Efl.Ui.Slider) | 1 | class Efl.Ui.Slider_Interval extends Efl.Ui.Slider |
2 | { | 2 | { |
3 | [[An interval slider. | 3 | [[An interval slider. |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_spin.eo b/src/lib/elementary/efl_ui_spin.eo index 7bb4fa5..8ec81df 100644 --- a/src/lib/elementary/efl_ui_spin.eo +++ b/src/lib/elementary/efl_ui_spin.eo | |||
@@ -5,8 +5,8 @@ struct Efl.Ui.Spin_Special_Value | |||
5 | label: string; [[String to replace]] | 5 | label: string; [[String to replace]] |
6 | } | 6 | } |
7 | 7 | ||
8 | class Efl.Ui.Spin (Efl.Ui.Layout, Efl.Ui.Range, Efl.Ui.Format, | 8 | class Efl.Ui.Spin extends Efl.Ui.Layout implements Efl.Ui.Range, Efl.Ui.Format, |
9 | Efl.Access.Value, Efl.Access.Widget.Action) | 9 | Efl.Access.Value, Efl.Access.Widget.Action |
10 | { | 10 | { |
11 | [[A Spin. | 11 | [[A Spin. |
12 | 12 | ||
diff --git a/src/lib/elementary/efl_ui_spin_button.eo b/src/lib/elementary/efl_ui_spin_button.eo index 116fdd3..cd55741 100644 --- a/src/lib/elementary/efl_ui_spin_button.eo +++ b/src/lib/elementary/efl_ui_spin_button.eo | |||
@@ -1,5 +1,5 @@ | |||
1 | class Efl.Ui.Spin_Button (Efl.Ui.Spin, Efl.Ui.Focus.Composition, Efl.Ui.Direction, | 1 | class Efl.Ui.Spin_Button extends Efl.Ui.Spin implements Efl.Ui.Focus.Composition, Efl.Ui.Direction, |
2 | Efl.Access.Widget.Action) | 2 | Efl.Access.Widget.Action |
3 | { | 3 | { |
4 | [[A Button Spin. | 4 | [[A Button Spin. |
5 | 5 | ||
diff --git a/src/lib/elementary/efl_ui_stack.eo b/src/lib/elementary/efl_ui_stack.eo index 86f4b84..57c8d70 100644 --- a/src/lib/elementary/efl_ui_stack.eo +++ b/src/lib/elementary/efl_ui_stack.eo | |||
@@ -18,10 +18,10 @@ struct Efl.Ui.Stack_Event_Deactivated { | |||
18 | content: Efl.Canvas.Object; [[Deactivated content.]] | 18 | content: Efl.Canvas.Object; [[Deactivated content.]] |
19 | } | 19 | } |
20 | 20 | ||
21 | class Efl.Ui.Stack (Efl.Ui.Layout) | 21 | class Efl.Ui.Stack extends Efl.Ui.Layout |
22 | { | 22 | { |
23 | [[Stack widget. | 23 | [[Stack widget. |
24 | 24 | ||
25 | Stack widget arranges objects in stack structure by pushing and poping them. | 25 | Stack widget arranges objects in stack structure by pushing and poping them. |
26 | ]] | 26 | ]] |
27 | methods { | 27 | methods { |
diff --git a/src/lib/elementary/efl_ui_tab_bar.eo b/src/lib/elementary/efl_ui_tab_bar.eo index 95c42c4..2fbdd4d 100644 --- a/src/lib/elementary/efl_ui_tab_bar.eo +++ b/src/lib/elementary/efl_ui_tab_bar.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Tab_Bar (Efl.Ui.Layout, Efl.Ui.Clickable) | 1 | class Efl.Ui.Tab_Bar extends Efl.Ui.Layout implements Efl.Ui.Clickable |
2 | { | 2 | { |
3 | [[Tab Bar class]] | 3 | [[Tab Bar class]] |
4 | methods { | 4 | methods { |
@@ -40,4 +40,4 @@ class Efl.Ui.Tab_Bar (Efl.Ui.Layout, Efl.Ui.Clickable) | |||
40 | Efl.Object.destructor; | 40 | Efl.Object.destructor; |
41 | Efl.Ui.Widget.widget_event; | 41 | Efl.Ui.Widget.widget_event; |
42 | } | 42 | } |
43 | } \ No newline at end of file | 43 | } |
diff --git a/src/lib/elementary/efl_ui_tab_page.eo b/src/lib/elementary/efl_ui_tab_page.eo index f321d47..e5468dd 100644 --- a/src/lib/elementary/efl_ui_tab_page.eo +++ b/src/lib/elementary/efl_ui_tab_page.eo | |||
@@ -8,7 +8,7 @@ struct Efl.Ui.Tab_Page_Tab_Changed_Event { | |||
8 | changed_info: Efl.Ui.Tab_Page_Tab_Changed; | 8 | changed_info: Efl.Ui.Tab_Page_Tab_Changed; |
9 | } | 9 | } |
10 | 10 | ||
11 | class Efl.Ui.Tab_Page (Efl.Ui.Layout, Efl.Content) | 11 | class Efl.Ui.Tab_Page extends Efl.Ui.Layout implements Efl.Content |
12 | { | 12 | { |
13 | [[Tab Page class]] | 13 | [[Tab Page class]] |
14 | methods { | 14 | methods { |
@@ -25,4 +25,4 @@ class Efl.Ui.Tab_Page (Efl.Ui.Layout, Efl.Content) | |||
25 | events { | 25 | events { |
26 | tab,changed: Efl.Ui.Tab_Page_Tab_Changed_Event; [[Called when tab changed]] | 26 | tab,changed: Efl.Ui.Tab_Page_Tab_Changed_Event; [[Called when tab changed]] |
27 | } | 27 | } |
28 | } \ No newline at end of file | 28 | } |
diff --git a/src/lib/elementary/efl_ui_tab_page_part_tab.eo b/src/lib/elementary/efl_ui_tab_page_part_tab.eo index 74d3449..03626fc 100644 --- a/src/lib/elementary/efl_ui_tab_page_part_tab.eo +++ b/src/lib/elementary/efl_ui_tab_page_part_tab.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Tab_Page_Part_Tab (Efl.Ui.Layout_Part, Efl.Text) | 1 | class Efl.Ui.Tab_Page_Part_Tab extends Efl.Ui.Layout_Part implements Efl.Text |
2 | { | 2 | { |
3 | [[Tab_Page internal part class]] | 3 | [[Tab_Page internal part class]] |
4 | data: null; | 4 | data: null; |
@@ -12,4 +12,4 @@ class Efl.Ui.Tab_Page_Part_Tab (Efl.Ui.Layout_Part, Efl.Text) | |||
12 | implements { | 12 | implements { |
13 | Efl.Text.text { get; set; } | 13 | Efl.Text.text { get; set; } |
14 | } | 14 | } |
15 | } \ No newline at end of file | 15 | } |
diff --git a/src/lib/elementary/efl_ui_tab_pager.eo b/src/lib/elementary/efl_ui_tab_pager.eo index ca46934..fa79b58 100644 --- a/src/lib/elementary/efl_ui_tab_pager.eo +++ b/src/lib/elementary/efl_ui_tab_pager.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Tab_Pager (Efl.Ui.Pager) | 1 | class Efl.Ui.Tab_Pager extends Efl.Ui.Pager |
2 | { | 2 | { |
3 | [[Tab Pager class]] | 3 | [[Tab Pager class]] |
4 | methods { | 4 | methods { |
@@ -25,4 +25,4 @@ class Efl.Ui.Tab_Pager (Efl.Ui.Pager) | |||
25 | Efl.Pack_Linear.pack_unpack_at; // TODO | 25 | Efl.Pack_Linear.pack_unpack_at; // TODO |
26 | Efl.Ui.Pager.current_page { set; } | 26 | Efl.Ui.Pager.current_page { set; } |
27 | } | 27 | } |
28 | } \ No newline at end of file | 28 | } |
diff --git a/src/lib/elementary/efl_ui_table.eo b/src/lib/elementary/efl_ui_table.eo index 03d1f98..35774f3 100644 --- a/src/lib/elementary/efl_ui_table.eo +++ b/src/lib/elementary/efl_ui_table.eo | |||
@@ -1,5 +1,5 @@ | |||
1 | class Efl.Ui.Table (Efl.Ui.Widget, Efl.Pack_Table, Efl.Pack_Layout, | 1 | class Efl.Ui.Table extends Efl.Ui.Widget implements Efl.Pack_Table, Efl.Pack_Layout, |
2 | Efl.Ui.Direction) | 2 | Efl.Ui.Direction |
3 | { | 3 | { |
4 | [[Efl UI table class]] | 4 | [[Efl UI table class]] |
5 | implements { | 5 | implements { |
diff --git a/src/lib/elementary/efl_ui_table_static.eo b/src/lib/elementary/efl_ui_table_static.eo index 966a5dd..12d39f3 100644 --- a/src/lib/elementary/efl_ui_table_static.eo +++ b/src/lib/elementary/efl_ui_table_static.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Table_Static (Efl.Ui.Table) | 1 | class Efl.Ui.Table_Static extends Efl.Ui.Table |
2 | { | 2 | { |
3 | [[Efl UI table static class]] | 3 | [[Efl UI table static class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_tags.eo b/src/lib/elementary/efl_ui_tags.eo index 256271a..05a9e12 100644 --- a/src/lib/elementary/efl_ui_tags.eo +++ b/src/lib/elementary/efl_ui_tags.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Tags (Efl.Ui.Layout, Efl.Text, Efl.Ui.Format) | 1 | class Efl.Ui.Tags extends Efl.Ui.Layout implements Efl.Text, Efl.Ui.Format |
2 | { | 2 | { |
3 | [[Elementary Tags class]] | 3 | [[Elementary Tags class]] |
4 | methods { | 4 | methods { |
diff --git a/src/lib/elementary/efl_ui_text.eo b/src/lib/elementary/efl_ui_text.eo index 70bb878..4441f56 100644 --- a/src/lib/elementary/efl_ui_text.eo +++ b/src/lib/elementary/efl_ui_text.eo | |||
@@ -1,9 +1,9 @@ | |||
1 | /* FIXME - Text object must stop using elm_general! */ | 1 | /* FIXME - Text object must stop using elm_general! */ |
2 | import elm_general; | 2 | import elm_general; |
3 | 3 | ||
4 | class Efl.Ui.Text (Efl.Ui.Layout, Efl.Ui.Clickable, | 4 | class Efl.Ui.Text extends Efl.Ui.Layout implements Efl.Ui.Clickable, |
5 | Efl.Access.Text, Efl.Access.Editable.Text, Efl.File, | 5 | Efl.Access.Text, Efl.Access.Editable.Text, Efl.File, |
6 | Efl.Ui.Selectable, Efl.Text_Interactive) | 6 | Efl.Ui.Selectable, Efl.Text_Interactive |
7 | { | 7 | { |
8 | [[Efl UI text class]] | 8 | [[Efl UI text class]] |
9 | methods { | 9 | methods { |
diff --git a/src/lib/elementary/efl_ui_text_alert_popup.eo b/src/lib/elementary/efl_ui_text_alert_popup.eo index 32f66a8..fc52f8c 100644 --- a/src/lib/elementary/efl_ui_text_alert_popup.eo +++ b/src/lib/elementary/efl_ui_text_alert_popup.eo | |||
@@ -1,6 +1,6 @@ | |||
1 | import eina_types; | 1 | import eina_types; |
2 | 2 | ||
3 | class Efl.Ui.Text_Alert_Popup(Efl.Ui.Alert_Popup, Efl.Text) | 3 | class Efl.Ui.Text_Alert_Popup extends Efl.Ui.Alert_Popup implements Efl.Text |
4 | { | 4 | { |
5 | [[EFL UI Text Alert Popup class]] | 5 | [[EFL UI Text Alert Popup class]] |
6 | methods { | 6 | methods { |
diff --git a/src/lib/elementary/efl_ui_text_alert_popup_part.eo b/src/lib/elementary/efl_ui_text_alert_popup_part.eo index cf3f20f..c572dad 100644 --- a/src/lib/elementary/efl_ui_text_alert_popup_part.eo +++ b/src/lib/elementary/efl_ui_text_alert_popup_part.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Text_Alert_Popup_Part (Efl.Ui.Layout_Part, Efl.Content, Efl.Text) | 1 | class Efl.Ui.Text_Alert_Popup_Part extends Efl.Ui.Layout_Part implements Efl.Content, Efl.Text |
2 | { | 2 | { |
3 | [[Efl UI Text Alert Popup internal part class]] | 3 | [[Efl UI Text Alert Popup internal part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_text_async.eo b/src/lib/elementary/efl_ui_text_async.eo index 52061e5..9afc2ac 100644 --- a/src/lib/elementary/efl_ui_text_async.eo +++ b/src/lib/elementary/efl_ui_text_async.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Text_Async (Efl.Ui.Text) | 1 | class Efl.Ui.Text_Async extends Efl.Ui.Text |
2 | { | 2 | { |
3 | [[Efl UI text async class | 3 | [[Efl UI text async class |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_text_editable.eo b/src/lib/elementary/efl_ui_text_editable.eo index b0535b1..d025f01 100644 --- a/src/lib/elementary/efl_ui_text_editable.eo +++ b/src/lib/elementary/efl_ui_text_editable.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Text_Editable (Efl.Ui.Text) | 1 | class Efl.Ui.Text_Editable extends Efl.Ui.Text |
2 | { | 2 | { |
3 | [[Efl UI text editable class]] | 3 | [[Efl UI text editable class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_text_factory_emoticons.eo b/src/lib/elementary/efl_ui_text_factory_emoticons.eo index 6cfcdbe..05d4618 100644 --- a/src/lib/elementary/efl_ui_text_factory_emoticons.eo +++ b/src/lib/elementary/efl_ui_text_factory_emoticons.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Text_Factory.Emoticons (Efl.Object, Efl.Canvas.Text_Factory) | 1 | class Efl.Ui.Text_Factory.Emoticons extends Efl.Object implements Efl.Canvas.Text_Factory |
2 | { | 2 | { |
3 | [[Factory that creates emoticons from the current theme given a key. | 3 | [[Factory that creates emoticons from the current theme given a key. |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_text_factory_fallback.eo b/src/lib/elementary/efl_ui_text_factory_fallback.eo index 03b339d..8158c50 100644 --- a/src/lib/elementary/efl_ui_text_factory_fallback.eo +++ b/src/lib/elementary/efl_ui_text_factory_fallback.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Text_Factory.Fallback (Efl.Object, Efl.Canvas.Text_Factory) | 1 | class Efl.Ui.Text_Factory.Fallback extends Efl.Object implements Efl.Canvas.Text_Factory |
2 | { | 2 | { |
3 | [[Internal factory for fallback cases. | 3 | [[Internal factory for fallback cases. |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_text_factory_images.eo b/src/lib/elementary/efl_ui_text_factory_images.eo index 012c3e1..dbbe2a2 100644 --- a/src/lib/elementary/efl_ui_text_factory_images.eo +++ b/src/lib/elementary/efl_ui_text_factory_images.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Text_Factory.Images (Efl.Object, Efl.Canvas.Text_Factory) | 1 | class Efl.Ui.Text_Factory.Images extends Efl.Object implements Efl.Canvas.Text_Factory |
2 | { | 2 | { |
3 | [[Factory that creates images given key string | 3 | [[Factory that creates images given key string |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_text_part.eo b/src/lib/elementary/efl_ui_text_part.eo index a0a4b13..b1bf6d5 100644 --- a/src/lib/elementary/efl_ui_text_part.eo +++ b/src/lib/elementary/efl_ui_text_part.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Text_Part (Efl.Ui.Layout_Part_Text) | 1 | class Efl.Ui.Text_Part extends Efl.Ui.Layout_Part_Text |
2 | { | 2 | { |
3 | [[Efl UI Text internal part class]] | 3 | [[Efl UI Text internal part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_textpath.eo b/src/lib/elementary/efl_ui_textpath.eo index bc25a0b..3c9dff4 100644 --- a/src/lib/elementary/efl_ui_textpath.eo +++ b/src/lib/elementary/efl_ui_textpath.eo | |||
@@ -4,7 +4,7 @@ enum Efl.Ui.Textpath_Direction { | |||
4 | ccw [[Counter-clockwise]] | 4 | ccw [[Counter-clockwise]] |
5 | } | 5 | } |
6 | 6 | ||
7 | class Efl.Ui.Textpath (Efl.Ui.Layout, Efl.Text, Efl.Gfx.Path) | 7 | class Efl.Ui.Textpath extends Efl.Ui.Layout implements Efl.Text, Efl.Gfx.Path |
8 | { | 8 | { |
9 | [[Efl Ui Textpath class]] | 9 | [[Efl Ui Textpath class]] |
10 | legacy_prefix: elm_textpath; | 10 | legacy_prefix: elm_textpath; |
diff --git a/src/lib/elementary/efl_ui_textpath_legacy.eo b/src/lib/elementary/efl_ui_textpath_legacy.eo index fd19602..7ac3572 100644 --- a/src/lib/elementary/efl_ui_textpath_legacy.eo +++ b/src/lib/elementary/efl_ui_textpath_legacy.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Textpath_Legacy (Efl.Ui.Textpath, Efl.Ui.Legacy) | 1 | class Efl.Ui.Textpath_Legacy extends Efl.Ui.Textpath implements Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[Textpath widget]] | 3 | [[Textpath widget]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_textpath_part.eo b/src/lib/elementary/efl_ui_textpath_part.eo index a603880..8a51a53 100644 --- a/src/lib/elementary/efl_ui_textpath_part.eo +++ b/src/lib/elementary/efl_ui_textpath_part.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Textpath_Part (Efl.Ui.Layout_Part_Text) | 1 | class Efl.Ui.Textpath_Part extends Efl.Ui.Layout_Part_Text |
2 | { | 2 | { |
3 | [[Efl UI Textpath internal part class]] | 3 | [[Efl UI Textpath internal part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_theme.eo b/src/lib/elementary/efl_ui_theme.eo index 73b158a..8f18db4 100644 --- a/src/lib/elementary/efl_ui_theme.eo +++ b/src/lib/elementary/efl_ui_theme.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Theme (Efl.Object) | 1 | class Efl.Ui.Theme extends Efl.Object |
2 | { | 2 | { |
3 | [[Efl Ui Theme class]] | 3 | [[Efl Ui Theme class]] |
4 | eo_prefix: efl_ui_theme; | 4 | eo_prefix: efl_ui_theme; |
diff --git a/src/lib/elementary/efl_ui_timepicker.eo b/src/lib/elementary/efl_ui_timepicker.eo index dc2682d..d91a761 100644 --- a/src/lib/elementary/efl_ui_timepicker.eo +++ b/src/lib/elementary/efl_ui_timepicker.eo | |||
@@ -1,8 +1,8 @@ | |||
1 | class Efl.Ui.Timepicker (Efl.Ui.Layout) | 1 | class Efl.Ui.Timepicker extends Efl.Ui.Layout |
2 | { | 2 | { |
3 | [[Timepicker widget | 3 | [[Timepicker widget |
4 | 4 | ||
5 | This is a widget which allows the user to pick a time using internal spinner. | 5 | This is a widget which allows the user to pick a time using internal spinner. |
6 | User can use the internal spinner to select hour, minute, AM/PM or user can input | 6 | User can use the internal spinner to select hour, minute, AM/PM or user can input |
7 | value using internal entry. | 7 | value using internal entry. |
8 | ]] | 8 | ]] |
diff --git a/src/lib/elementary/efl_ui_video.eo b/src/lib/elementary/efl_ui_video.eo index 8659752..a7c8378 100644 --- a/src/lib/elementary/efl_ui_video.eo +++ b/src/lib/elementary/efl_ui_video.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Video (Efl.Ui.Layout, Efl.Player, Efl.Access.Widget.Action) | 1 | class Efl.Ui.Video extends Efl.Ui.Layout implements Efl.Player, Efl.Access.Widget.Action |
2 | { | 2 | { |
3 | [[Efl UI video class]] | 3 | [[Efl UI video class]] |
4 | legacy_prefix: elm_video; | 4 | legacy_prefix: elm_video; |
diff --git a/src/lib/elementary/efl_ui_video_legacy.eo b/src/lib/elementary/efl_ui_video_legacy.eo index 9edfc48..4d5efc8 100644 --- a/src/lib/elementary/efl_ui_video_legacy.eo +++ b/src/lib/elementary/efl_ui_video_legacy.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Video_Legacy (Efl.Ui.Video, Efl.Ui.Legacy) | 1 | class Efl.Ui.Video_Legacy extends Efl.Ui.Video implements Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[Efl UI video class]] | 3 | [[Efl UI video class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_widget_part.eo b/src/lib/elementary/efl_ui_widget_part.eo index ac3a2d9..b984e49 100644 --- a/src/lib/elementary/efl_ui_widget_part.eo +++ b/src/lib/elementary/efl_ui_widget_part.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Widget_Part (Efl.Object) | 1 | class Efl.Ui.Widget_Part extends Efl.Object |
2 | { | 2 | { |
3 | [[This is the base class for all "Part" handles in Efl.Ui widgets. | 3 | [[This is the base class for all "Part" handles in Efl.Ui widgets. |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_widget_part_bg.eo b/src/lib/elementary/efl_ui_widget_part_bg.eo index 8faa63b..59fd301 100644 --- a/src/lib/elementary/efl_ui_widget_part_bg.eo +++ b/src/lib/elementary/efl_ui_widget_part_bg.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Widget_Part_Bg (Efl.Ui.Widget_Part, Efl.File, Efl.Gfx.Color, Efl.Gfx.Image) | 1 | class Efl.Ui.Widget_Part_Bg extends Efl.Ui.Widget_Part implements Efl.File, Efl.Gfx.Color, Efl.Gfx.Image |
2 | { | 2 | { |
3 | [[Elementary widget internal part background class]] | 3 | [[Elementary widget internal part background class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_widget_part_shadow.eo b/src/lib/elementary/efl_ui_widget_part_shadow.eo index 4d611c3..0dc4c7d 100644 --- a/src/lib/elementary/efl_ui_widget_part_shadow.eo +++ b/src/lib/elementary/efl_ui_widget_part_shadow.eo | |||
@@ -1,5 +1,5 @@ | |||
1 | class Efl.Ui.Widget_Part_Shadow (Efl.Ui.Widget_Part, Efl.Gfx.Color, | 1 | class Efl.Ui.Widget_Part_Shadow extends Efl.Ui.Widget_Part implements Efl.Gfx.Color, |
2 | Efl.Gfx.Blur, Efl.Gfx.Filter) | 2 | Efl.Gfx.Blur, Efl.Gfx.Filter |
3 | { | 3 | { |
4 | [[A drop-shadow or glow effect around any widget. | 4 | [[A drop-shadow or glow effect around any widget. |
5 | 5 | ||
diff --git a/src/lib/elementary/efl_ui_win.eo b/src/lib/elementary/efl_ui_win.eo index 000b4e9..2dbd882 100644 --- a/src/lib/elementary/efl_ui_win.eo +++ b/src/lib/elementary/efl_ui_win.eo | |||
@@ -131,7 +131,7 @@ enum Efl.Ui.Win_Move_Resize_Mode | |||
131 | the window by combining these modes. However only limited combinations | 131 | the window by combining these modes. However only limited combinations |
132 | are allowed. | 132 | are allowed. |
133 | 133 | ||
134 | Currently, only the following 9 combinations are permitted. | 134 | Currently, only the following 9 combinations are permitted. |
135 | More combinations may be added in future: | 135 | More combinations may be added in future: |
136 | 1. move, | 136 | 1. move, |
137 | 2. top, | 137 | 2. top, |
@@ -154,11 +154,11 @@ enum Efl.Ui.Win_Move_Resize_Mode | |||
154 | right = (1 << 4) [[Start resizing window to the right]] | 154 | right = (1 << 4) [[Start resizing window to the right]] |
155 | } | 155 | } |
156 | 156 | ||
157 | class Efl.Ui.Win (Efl.Ui.Widget, Efl.Canvas.Scene, Efl.Access.Window, | 157 | class Efl.Ui.Win extends Efl.Ui.Widget implements Efl.Canvas.Scene, Efl.Access.Window, |
158 | Efl.Access.Component, Efl.Access.Widget.Action, | 158 | Efl.Access.Component, Efl.Access.Widget.Action, |
159 | Efl.Content, Efl.Input.State, Efl.Input.Interface, Efl.Screen, | 159 | Efl.Content, Efl.Input.State, Efl.Input.Interface, Efl.Screen, |
160 | Efl.Text, Efl.Config, | 160 | Efl.Text, Efl.Config, |
161 | Efl.Ui.Widget_Focus_Manager, Efl.Ui.Focus.Manager_Window_Root) | 161 | Efl.Ui.Widget_Focus_Manager, Efl.Ui.Focus.Manager_Window_Root |
162 | { | 162 | { |
163 | [[Efl UI window class]] | 163 | [[Efl UI window class]] |
164 | legacy_prefix: elm_win; | 164 | legacy_prefix: elm_win; |
diff --git a/src/lib/elementary/efl_ui_win_inlined.eo b/src/lib/elementary/efl_ui_win_inlined.eo index 7c4b498..2ef4806 100644 --- a/src/lib/elementary/efl_ui_win_inlined.eo +++ b/src/lib/elementary/efl_ui_win_inlined.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Win_Inlined (Efl.Ui.Win) | 1 | class Efl.Ui.Win_Inlined extends Efl.Ui.Win |
2 | { | 2 | { |
3 | [[An inlined window. | 3 | [[An inlined window. |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_win_inlined_legacy.eo b/src/lib/elementary/efl_ui_win_inlined_legacy.eo index 5c954a2..91ca738 100644 --- a/src/lib/elementary/efl_ui_win_inlined_legacy.eo +++ b/src/lib/elementary/efl_ui_win_inlined_legacy.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Win_Inlined_Legacy (Efl.Ui.Win_Inlined, Efl.Ui.Legacy) | 1 | class Efl.Ui.Win_Inlined_Legacy extends Efl.Ui.Win_Inlined implements Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[Elementary window inlined class]] | 3 | [[Elementary window inlined class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_win_legacy.eo b/src/lib/elementary/efl_ui_win_legacy.eo index 952464b..7a0e562 100644 --- a/src/lib/elementary/efl_ui_win_legacy.eo +++ b/src/lib/elementary/efl_ui_win_legacy.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Win_Legacy (Efl.Ui.Win, Efl.Ui.Legacy) | 1 | class Efl.Ui.Win_Legacy extends Efl.Ui.Win implements Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[Efl UI window class]] | 3 | [[Efl UI window class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/efl_ui_win_part.eo b/src/lib/elementary/efl_ui_win_part.eo index acb6f43..1b93fc2 100644 --- a/src/lib/elementary/efl_ui_win_part.eo +++ b/src/lib/elementary/efl_ui_win_part.eo | |||
@@ -1,5 +1,5 @@ | |||
1 | class Efl.Ui.Win_Part (Efl.Ui.Widget_Part, Efl.Content, Efl.Gfx.Entity, Efl.Gfx.Color, | 1 | class Efl.Ui.Win_Part extends Efl.Ui.Widget_Part implements Efl.Content, Efl.Gfx.Entity, Efl.Gfx.Color, |
2 | Efl.File) | 2 | Efl.File |
3 | { | 3 | { |
4 | [[Efl UI window interal part class]] | 4 | [[Efl UI window interal part class]] |
5 | data: null; | 5 | data: null; |
diff --git a/src/lib/elementary/efl_ui_win_socket.eo b/src/lib/elementary/efl_ui_win_socket.eo index 2033bf8..9f2aa02 100644 --- a/src/lib/elementary/efl_ui_win_socket.eo +++ b/src/lib/elementary/efl_ui_win_socket.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Win_Socket (Efl.Ui.Win) | 1 | class Efl.Ui.Win_Socket extends Efl.Ui.Win |
2 | { | 2 | { |
3 | [[An off-screen window to be displayed in a remote process. | 3 | [[An off-screen window to be displayed in a remote process. |
4 | 4 | ||
diff --git a/src/lib/elementary/efl_ui_win_socket_legacy.eo b/src/lib/elementary/efl_ui_win_socket_legacy.eo index 696032a..0dff710 100644 --- a/src/lib/elementary/efl_ui_win_socket_legacy.eo +++ b/src/lib/elementary/efl_ui_win_socket_legacy.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Efl.Ui.Win_Socket_Legacy (Efl.Ui.Win_Socket, Efl.Ui.Legacy) | 1 | class Efl.Ui.Win_Socket_Legacy extends Efl.Ui.Win_Socket implements Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[Elementary window socket class]] | 3 | [[Elementary window socket class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/elm_access.eo b/src/lib/elementary/elm_access.eo index fae20a6..3f81dcf 100644 --- a/src/lib/elementary/elm_access.eo +++ b/src/lib/elementary/elm_access.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Elm.Access (Efl.Ui.Widget, Efl.Access.Widget.Action) | 1 | class Elm.Access extends Efl.Ui.Widget implements Efl.Access.Widget.Action |
2 | { | 2 | { |
3 | [[Elm abstract accessibility class]] | 3 | [[Elm abstract accessibility class]] |
4 | legacy_prefix: elm_access; | 4 | legacy_prefix: elm_access; |
diff --git a/src/lib/elementary/elm_actionslider.eo b/src/lib/elementary/elm_actionslider.eo index 8a9f4d3..260e699 100644 --- a/src/lib/elementary/elm_actionslider.eo +++ b/src/lib/elementary/elm_actionslider.eo | |||
@@ -10,7 +10,7 @@ enum Elm.Actionslider.Pos | |||
10 | all = (1 << 3) - 1 [[All positions for left/center/right.]] | 10 | all = (1 << 3) - 1 [[All positions for left/center/right.]] |
11 | } | 11 | } |
12 | 12 | ||
13 | class Elm.Actionslider (Efl.Ui.Layout, Efl.Ui.Selectable, Efl.Ui.Legacy) | 13 | class Elm.Actionslider extends Efl.Ui.Layout implements Efl.Ui.Selectable, Efl.Ui.Legacy |
14 | { | 14 | { |
15 | [[An actionslider is a switcher for 2 or 3 labels | 15 | [[An actionslider is a switcher for 2 or 3 labels |
16 | 16 | ||
diff --git a/src/lib/elementary/elm_actionslider_part.eo b/src/lib/elementary/elm_actionslider_part.eo index dee607a..5b93976 100644 --- a/src/lib/elementary/elm_actionslider_part.eo +++ b/src/lib/elementary/elm_actionslider_part.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Elm_Actionslider.Part (Efl.Ui.Layout_Part_Legacy) | 1 | class Elm_Actionslider.Part extends Efl.Ui.Layout_Part_Legacy |
2 | { | 2 | { |
3 | [[Elementary Actionslider internal part class]] | 3 | [[Elementary Actionslider internal part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/elm_atspi_app_object.eo b/src/lib/elementary/elm_atspi_app_object.eo index 1e79fcd..e386f39 100644 --- a/src/lib/elementary/elm_atspi_app_object.eo +++ b/src/lib/elementary/elm_atspi_app_object.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Elm.Atspi.App.Object (Efl.Object, Efl.Access.Object) | 1 | class Elm.Atspi.App.Object extends Efl.Object implements Efl.Access.Object |
2 | { | 2 | { |
3 | [[AT-SPI application object class]] | 3 | [[AT-SPI application object class]] |
4 | legacy_prefix: elm_atspi_app_object; | 4 | legacy_prefix: elm_atspi_app_object; |
diff --git a/src/lib/elementary/elm_atspi_bridge.eo b/src/lib/elementary/elm_atspi_bridge.eo index 9db28c2..4034ef6 100644 --- a/src/lib/elementary/elm_atspi_bridge.eo +++ b/src/lib/elementary/elm_atspi_bridge.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Elm.Atspi.Bridge (Efl.Object) | 1 | class Elm.Atspi.Bridge extends Efl.Object |
2 | { | 2 | { |
3 | [[AT-SPI bridge class]] | 3 | [[AT-SPI bridge class]] |
4 | legacy_prefix: elm_atspi_bridge; | 4 | legacy_prefix: elm_atspi_bridge; |
diff --git a/src/lib/elementary/elm_box.eo b/src/lib/elementary/elm_box.eo index 36bdd9d..5bda1dc 100644 --- a/src/lib/elementary/elm_box.eo +++ b/src/lib/elementary/elm_box.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Elm.Box (Efl.Ui.Widget, Efl.Ui.Focus.Composition, Efl.Ui.Legacy) | 1 | class Elm.Box extends Efl.Ui.Widget implements Efl.Ui.Focus.Composition, Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[Elementary box class]] | 3 | [[Elementary box class]] |
4 | legacy_prefix: elm_box; | 4 | legacy_prefix: elm_box; |
diff --git a/src/lib/elementary/elm_bubble.eo b/src/lib/elementary/elm_bubble.eo index 79e8baa..4d249d2 100644 --- a/src/lib/elementary/elm_bubble.eo +++ b/src/lib/elementary/elm_bubble.eo | |||
@@ -12,7 +12,7 @@ enum Elm.Bubble.Pos | |||
12 | bottom_right [[The arrow of the bubble points to the bottom right corner.]] | 12 | bottom_right [[The arrow of the bubble points to the bottom right corner.]] |
13 | } | 13 | } |
14 | 14 | ||
15 | class Elm.Bubble (Efl.Ui.Layout, Efl.Ui.Clickable, Efl.Ui.Legacy) | 15 | class Elm.Bubble extends Efl.Ui.Layout implements Efl.Ui.Clickable, Efl.Ui.Legacy |
16 | { | 16 | { |
17 | [[Speech bubble widget used in messaging applications]] | 17 | [[Speech bubble widget used in messaging applications]] |
18 | 18 | ||
diff --git a/src/lib/elementary/elm_bubble_part.eo b/src/lib/elementary/elm_bubble_part.eo index 8af7ff2..701892e 100644 --- a/src/lib/elementary/elm_bubble_part.eo +++ b/src/lib/elementary/elm_bubble_part.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Elm_Bubble.Part (Efl.Ui.Layout_Part_Legacy) | 1 | class Elm_Bubble.Part extends Efl.Ui.Layout_Part_Legacy |
2 | { | 2 | { |
3 | [[Elementary Bubble internal part class]] | 3 | [[Elementary Bubble internal part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/elm_calendar.eo b/src/lib/elementary/elm_calendar.eo index 73d67b0..4eb1d3f 100644 --- a/src/lib/elementary/elm_calendar.eo +++ b/src/lib/elementary/elm_calendar.eo | |||
@@ -72,8 +72,8 @@ struct Elm.Calendar.Mark; [[Item handle for a calendar mark. | |||
72 | with @Elm.Calendar.mark_del. | 72 | with @Elm.Calendar.mark_del. |
73 | ]] | 73 | ]] |
74 | 74 | ||
75 | class Elm.Calendar (Efl.Ui.Layout, Efl.Ui.Focus.Composition, Efl.Access.Widget.Action, | 75 | class Elm.Calendar extends Efl.Ui.Layout implements Efl.Ui.Focus.Composition, Efl.Access.Widget.Action, |
76 | Efl.Ui.Legacy) | 76 | Efl.Ui.Legacy |
77 | { | 77 | { |
78 | [[Calendar widget | 78 | [[Calendar widget |
79 | 79 | ||
diff --git a/src/lib/elementary/elm_calendar_item.eo b/src/lib/elementary/elm_calendar_item.eo index 3ae581d..3bb6f4d 100644 --- a/src/lib/elementary/elm_calendar_item.eo +++ b/src/lib/elementary/elm_calendar_item.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Elm.Calendar.Item (Efl.Object, Efl.Ui.Focus.Object) | 1 | class Elm.Calendar.Item extends Efl.Object implements Efl.Ui.Focus.Object |
2 | { | 2 | { |
3 | [[Elm Calendar Item class]] | 3 | [[Elm Calendar Item class]] |
4 | methods { | 4 | methods { |
diff --git a/src/lib/elementary/elm_clock.eo b/src/lib/elementary/elm_clock.eo index b292fa5..65813b7 100644 --- a/src/lib/elementary/elm_clock.eo +++ b/src/lib/elementary/elm_clock.eo | |||
@@ -18,7 +18,7 @@ enum Elm.Clock.Edit_Mode | |||
18 | all = (1 << 6) - 1 [[All digits should be editable.]] | 18 | all = (1 << 6) - 1 [[All digits should be editable.]] |
19 | } | 19 | } |
20 | 20 | ||
21 | class Elm.Clock (Efl.Ui.Layout, Efl.Ui.Focus.Composition, Efl.Ui.Legacy) | 21 | class Elm.Clock extends Efl.Ui.Layout implements Efl.Ui.Focus.Composition, Efl.Ui.Legacy |
22 | { | 22 | { |
23 | [[Digital clock widget | 23 | [[Digital clock widget |
24 | 24 | ||
diff --git a/src/lib/elementary/elm_code_widget.eo b/src/lib/elementary/elm_code_widget.eo index 8f9ff0d..d464a5b 100644 --- a/src/lib/elementary/elm_code_widget.eo +++ b/src/lib/elementary/elm_code_widget.eo | |||
@@ -4,7 +4,7 @@ import elm_interface_scrollable; | |||
4 | struct @extern Elm.Code; [[Elementary code main data structure]] /* The main interface currently defined in code */ | 4 | struct @extern Elm.Code; [[Elementary code main data structure]] /* The main interface currently defined in code */ |
5 | struct @extern Elm.Code_Line; [[Elementary code line data structure]] /* Parts of the interface currently defined in code */ | 5 | struct @extern Elm.Code_Line; [[Elementary code line data structure]] /* Parts of the interface currently defined in code */ |
6 | 6 | ||
7 | class Elm.Code_Widget (Efl.Ui.Layout, Efl.Access.Text) | 7 | class Elm.Code_Widget extends Efl.Ui.Layout implements Efl.Access.Text |
8 | { | 8 | { |
9 | [[Elementary code widget]] | 9 | [[Elementary code widget]] |
10 | eo_prefix: elm_obj_code_widget; | 10 | eo_prefix: elm_obj_code_widget; |
diff --git a/src/lib/elementary/elm_code_widget_legacy.eo b/src/lib/elementary/elm_code_widget_legacy.eo index 1c228b3..6de8928 100644 --- a/src/lib/elementary/elm_code_widget_legacy.eo +++ b/src/lib/elementary/elm_code_widget_legacy.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Elm.Code_Widget_Legacy (Elm.Code_Widget, Efl.Ui.Legacy) | 1 | class Elm.Code_Widget_Legacy extends Elm.Code_Widget implements Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[Elementary code widget]] | 3 | [[Elementary code widget]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/elm_color_item.eo b/src/lib/elementary/elm_color_item.eo index c784d1f..a801d8c 100644 --- a/src/lib/elementary/elm_color_item.eo +++ b/src/lib/elementary/elm_color_item.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Elm.Color.Item(Elm.Widget.Item, Efl.Ui.Focus.Object, Efl.Access.Widget.Action) | 1 | class Elm.Color.Item extends Elm.Widget.Item implements Efl.Ui.Focus.Object, Efl.Access.Widget.Action |
2 | { | 2 | { |
3 | [[Elementary color item class]] | 3 | [[Elementary color item class]] |
4 | legacy_prefix: elm_color_item; | 4 | legacy_prefix: elm_color_item; |
diff --git a/src/lib/elementary/elm_colorselector.eo b/src/lib/elementary/elm_colorselector.eo index e8d719f..0d57a6f 100644 --- a/src/lib/elementary/elm_colorselector.eo +++ b/src/lib/elementary/elm_colorselector.eo | |||
@@ -12,8 +12,8 @@ enum Elm.Colorselector.Mode | |||
12 | all [[All possible color selector is displayed.]] | 12 | all [[All possible color selector is displayed.]] |
13 | } | 13 | } |
14 | 14 | ||
15 | class Elm.Colorselector (Efl.Ui.Layout, Efl.Ui.Focus.Composition, | 15 | class Elm.Colorselector extends Efl.Ui.Layout implements Efl.Ui.Focus.Composition, |
16 | Efl.Access.Widget.Action, Efl.Ui.Clickable, Efl.Ui.Legacy) | 16 | Efl.Access.Widget.Action, Efl.Ui.Clickable, Efl.Ui.Legacy |
17 | { | 17 | { |
18 | [[Elementary colorselector class]] | 18 | [[Elementary colorselector class]] |
19 | legacy_prefix: elm_colorselector; | 19 | legacy_prefix: elm_colorselector; |
diff --git a/src/lib/elementary/elm_conformant.eo b/src/lib/elementary/elm_conformant.eo index 37cba06..1baafd3 100644 --- a/src/lib/elementary/elm_conformant.eo +++ b/src/lib/elementary/elm_conformant.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Elm.Conformant (Efl.Ui.Layout, Efl.Ui.Legacy) | 1 | class Elm.Conformant extends Efl.Ui.Layout implements Efl.Ui.Legacy |
2 | { | 2 | { |
3 | [[Elementary conformant class]] | 3 | [[Elementary conformant class]] |
4 | legacy_prefix: elm_conformant; | 4 | legacy_prefix: elm_conformant; |
diff --git a/src/lib/elementary/elm_ctxpopup.eo b/src/lib/elementary/elm_ctxpopup.eo index 35956c6..7d94b87 100644 --- a/src/lib/elementary/elm_ctxpopup.eo +++ b/src/lib/elementary/elm_ctxpopup.eo | |||
@@ -8,7 +8,7 @@ enum Elm.Ctxpopup.Direction | |||
8 | unknown [[Ctxpopup does not determine it's direction yet.]] | 8 | unknown [[Ctxpopup does not determine it's direction yet.]] |
9 | } | 9 | } |
10 | 10 | ||
11 | class Elm.Ctxpopup (Efl.Ui.Layout, Efl.Ui.Focus.Layer, Efl.Access.Widget.Action, Efl.Ui.Legacy) | 11 | class Elm.Ctxpopup extends Efl.Ui.Layout implements Efl.Ui.Focus.Layer, Efl.Access.Widget.Action, Efl.Ui.Legacy |
12 | { | 12 | { |
13 | [[Elementary context popup class]] | 13 | [[Elementary context popup class]] |
14 | legacy_prefix: elm_ctxpopup; | 14 | legacy_prefix: elm_ctxpopup; |
diff --git a/src/lib/elementary/elm_ctxpopup_item.eo b/src/lib/elementary/elm_ctxpopup_item.eo index 2abdbfc..c0be337 100644 --- a/src/lib/elementary/elm_ctxpopup_item.eo +++ b/src/lib/elementary/elm_ctxpopup_item.eo | |||
@@ -1,5 +1,5 @@ | |||
1 | class Elm.Ctxpopup.Item(Elm.Widget.Item, Efl.Access.Widget.Action, | 1 | class Elm.Ctxpopup.Item extends Elm.Widget.Item implements Efl.Access.Widget.Action, |
2 | Efl.Ui.Legacy) | 2 | Efl.Ui.Legacy |
3 | { | 3 | { |
4 | [[Elementary context popup item class]] | 4 | [[Elementary context popup item class]] |
5 | legacy_prefix: elm_ctxpopup_item; | 5 | legacy_prefix: elm_ctxpopup_item; |
diff --git a/src/lib/elementary/elm_ctxpopup_part.eo b/src/lib/elementary/elm_ctxpopup_part.eo index 301cee9..35c39a4 100644 --- a/src/lib/elementary/elm_ctxpopup_part.eo +++ b/src/lib/elementary/elm_ctxpopup_part.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Elm.Ctxpopup.Part (Efl.Ui.Layout_Part_Legacy) | 1 | class Elm.Ctxpopup.Part extends Efl.Ui.Layout_Part_Legacy |
2 | { | 2 | { |
3 | [[Elementary contex popup internal part class]] | 3 | [[Elementary contex popup internal part class]] |
4 | data: null; | 4 | data: null; |
diff --git a/src/lib/elementary/elm_dayselector.eo b/src/lib/elementary/elm_dayselector.eo index f21d746..183e582 100644 --- a/src/lib/elementary/elm_dayselector.eo +++ b/src/lib/elementary/elm_dayselector.eo | |||
@@ -17,7 +17,7 @@ enum Elm.Dayselector.Day | |||
17 | max [[Sentinel value to indicate last enum field during iteration]] | 17 | max [[Sentinel value to indicate last enum field during iteration]] |
18 | } | 18 | } |
19 | 19 | ||
20 | class Elm.Dayselector (Efl.Ui.Layout, Efl.Ui.Legacy) | 20 | class Elm.Dayselector extends Efl.Ui.Layout implements Efl.Ui.Legacy |
21 | { | 21 | { |
22 | [[Elementary dayselector class]] | 22 | [[Elementary dayselector class]] |
23 | legacy_prefix: elm_dayselector; | 23 | legacy_prefix: elm_dayselector; |
diff --git a/src/lib/elementary/elm_dayselector_item.eo b/src/lib/elementary/elm_dayselector_item.eo index 8e68c6d..a39a48d 100644 --- a/src/lib/elementary/elm_dayselector_item.eo +++ b/src/lib/elementary/elm_dayselector_item.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Elm.Dayselector.Item(Elm.Widget.Item) | 1 | class Elm.Dayselector.Item extends Elm.Widget.Item |
2 | { | 2 | { |
3 | [[Elementary dayselector item class]] | 3 | [[Elementary dayselector item class]] |
4 | eo_prefix: elm_dayselector_item; | 4 | eo_prefix: elm_dayselector_item; |
diff --git a/src/lib/elementary/elm_dayselector_part.eo b/src/lib/elementary/elm_dayselector_part.eo index f48c5c7..0a13d33 100644 --- a/src/lib/elementary/elm_dayselector_part.eo +++ b/src/lib/elementary/elm_dayselector_part.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Elm.Dayselector.Part (Efl.Ui.Layout_Part_Legacy) | 1 | class Elm.Dayselector.Part extends Efl.Ui.Layout_Part_Legacy |
2 | { | 2 | { |
3 | [[Elementary dayselector internal part class]] | 3 | [[Elementary dayselector internal part class]] |