eot files: fixup all since tags

these tags have been wrong. eolian does not allow anything < 1.22
This commit is contained in:
Marcel Hollerbach 2020-02-05 16:23:51 +01:00
parent 33681f8087
commit 4a81eb6468
4 changed files with 23 additions and 25 deletions

View File

@ -46,7 +46,7 @@ enum Efl.Gfx.Render_Op {
enum Efl.Gfx.Path_Command_Type { enum Efl.Gfx.Path_Command_Type {
[[These values determine how the points are interpreted in a stream of points. [[These values determine how the points are interpreted in a stream of points.
@since 1.14 @since 1.22
]] ]]
end = 0, [[The end of stream , no more points to process.]] end = 0, [[The end of stream , no more points to process.]]
move_to, [[The next point is the start point of a sub path.]] move_to, [[The next point is the start point of a sub path.]]
@ -60,7 +60,7 @@ enum Efl.Gfx.Cap {
[[These values determine how the end of opened sub-paths are rendered in a [[These values determine how the end of opened sub-paths are rendered in a
stroke. stroke.
@Efl.Gfx.Shape.stroke_cap.set @Efl.Gfx.Shape.stroke_cap.set
@since 1.14 @since 1.22
]] ]]
butt = 0, [[The end of lines is rendered as a full stop on the last point itself.]] butt = 0, [[The end of lines is rendered as a full stop on the last point itself.]]
round, [[The end of lines is rendered as a half-circle around the last point.]] round, [[The end of lines is rendered as a half-circle around the last point.]]
@ -72,7 +72,7 @@ enum Efl.Gfx.Join
{ {
[[These values determine how two joining lines are rendered in a stroker. [[These values determine how two joining lines are rendered in a stroker.
@Efl.Gfx.Shape.stroke_join.set @Efl.Gfx.Shape.stroke_join.set
@since 1.14 @since 1.22
]] ]]
miter = 0, [[Used to render rounded line joins. Circular arcs are used to join two lines smoothly.]] miter = 0, [[Used to render rounded line joins. Circular arcs are used to join two lines smoothly.]]
round, [[Used to render beveled line joins. The outer corner of the joined lines is filled by enclosing the triangular region of the corner with a straight line between the outer corners of each stroke.]] round, [[Used to render beveled line joins. The outer corner of the joined lines is filled by enclosing the triangular region of the corner with a straight line between the outer corners of each stroke.]]
@ -84,7 +84,8 @@ enum Efl.Gfx.Gradient_Spread
{ {
[[Specifies how the area outside the gradient area should be filled. [[Specifies how the area outside the gradient area should be filled.
@Efl.Gfx.Gradient.spread.set @Efl.Gfx.Gradient.spread.set
@since 1.14
@since 1.22
]] ]]
pad, [[The area is filled with the closest stop color. This is the default.]] pad, [[The area is filled with the closest stop color. This is the default.]]
reflect, [[The gradient is reflected outside the gradient area.]] reflect, [[The gradient is reflected outside the gradient area.]]
@ -95,7 +96,6 @@ enum Efl.Gfx.Gradient_Spread
enum @beta Efl.Gfx.Fill_Rule enum @beta Efl.Gfx.Fill_Rule
{ {
[[Type defining how an image content get filled. [[Type defining how an image content get filled.
@since 1.14
]] ]]
winding = 0, [[Draw a horizontal line from the point to a location outside the shape. Determine whether the direction of the line at each intersection point is up or down. The winding number is determined by summing the direction of each intersection. If the number is non zero, the point is inside the shape. This mode is the default]] winding = 0, [[Draw a horizontal line from the point to a location outside the shape. Determine whether the direction of the line at each intersection point is up or down. The winding number is determined by summing the direction of each intersection. If the number is non zero, the point is inside the shape. This mode is the default]]
odd_even = 1, [[Draw a horizontal line from the point to a location outside the shape, and count the number of intersections. If the number of intersections is an odd number, the point is inside the shape.]] odd_even = 1, [[Draw a horizontal line from the point to a location outside the shape, and count the number of intersections. If the number of intersections is an odd number, the point is inside the shape.]]
@ -104,7 +104,8 @@ enum @beta Efl.Gfx.Fill_Rule
struct Efl.Gfx.Dash { struct Efl.Gfx.Dash {
[[Type describing dash. [[Type describing dash.
@Efl.Gfx.Shape.stroke_dash.set @Efl.Gfx.Shape.stroke_dash.set
@since 1.14
@since 1.22
]] ]]
length: double; [[Dash drawing length.]] length: double; [[Dash drawing length.]]
gap: double; [[Distance between two dashes.]] gap: double; [[Distance between two dashes.]]
@ -114,7 +115,8 @@ struct Efl.Gfx.Gradient_Stop
{ {
[[Type defining gradient stops. [[Type defining gradient stops.
Describes the location and color of a transition point in a gradient. Describes the location and color of a transition point in a gradient.
@since 1.14
@since 1.22
]] ]]
offset: double; [[The location of the gradient stop within the gradient vector]] offset: double; [[The location of the gradient stop within the gradient vector]]
r: int; [[The component R color of the gradient stop]] r: int; [[The component R color of the gradient stop]]
@ -176,7 +178,7 @@ enum Efl.Gfx.Center_Fill_Mode
enum Efl.Gfx.Change_Flag enum Efl.Gfx.Change_Flag
{ {
[[What property got changed for this object @since 1.18]] [[What property got changed for this object @since 1.22]]
none = 0x0, [[Nothing changed.]] none = 0x0, [[Nothing changed.]]
matrix = 0x1, [[Matrix got changed.]] matrix = 0x1, [[Matrix got changed.]]
path = 0x2, [[Path got changed.]] path = 0x2, [[Path got changed.]]

View File

@ -5,7 +5,7 @@ struct @extern Efl.Time
It is intended to be a standard way to reference It is intended to be a standard way to reference
it in .eo files. it in .eo files.
@since 1.18 @since 1.22
]] ]]
tm_sec: int; [[Seconds. [0-60] (1 leap second)]] tm_sec: int; [[Seconds. [0-60] (1 leap second)]]
@ -27,7 +27,7 @@ struct Efl.Version
be passed by applications at startup time to inform EFL of the version be passed by applications at startup time to inform EFL of the version
a certain application was built for. a certain application was built for.
@since 1.18 @since 1.22
]] ]]
major: int; [[Major component of the version (>= 1).]] major: int; [[Major component of the version (>= 1).]]

View File

@ -33,7 +33,7 @@ enum Efl.Ui.Focus.Direction
enum Efl.Ui.Focus.Move_Policy enum Efl.Ui.Focus.Move_Policy
{ {
[[Focus Movement Policy. [[Focus Movement Policy.
@since 1.10]] @since 1.22]]
click, [[Move focus by mouse click or touch. Elementary focus is set on mouse click, [[Move focus by mouse click or touch. Elementary focus is set on mouse
click and this is checked at mouse up time. (default)]] click and this is checked at mouse up time. (default)]]
move_in, [[Move focus by mouse in. Elementary focus is set on mouse move when the move_in, [[Move focus by mouse in. Elementary focus is set on mouse move when the
@ -45,6 +45,8 @@ enum Efl.Ui.Focus.Move_Policy
enum @beta Efl.Ui.Focus.Autoscroll_Mode enum @beta Efl.Ui.Focus.Autoscroll_Mode
{ {
[[Focus Autoscroll Mode [[Focus Autoscroll Mode
@since 1.22
]] ]]
show, [[Directly show the focused region or item automatically.]] show, [[Directly show the focused region or item automatically.]]
none, [[Do not show the focused region or item automatically.]] none, [[Do not show the focused region or item automatically.]]
@ -53,10 +55,7 @@ enum @beta Efl.Ui.Focus.Autoscroll_Mode
enum @beta Efl.Ui.Softcursor_Mode enum @beta Efl.Ui.Softcursor_Mode
{ {
[[Software cursor mode. [[Software cursor mode.]]
@since 1.7
]]
auto, [[Auto-detect if a software cursor should be used (default).]] auto, [[Auto-detect if a software cursor should be used (default).]]
on, [[Always use a softcursor.]] on, [[Always use a softcursor.]]
off [[Never use a softcursor.]] off [[Never use a softcursor.]]

View File

@ -2,7 +2,7 @@ enum Efl.Pointer.Action
{ {
[[Pointer event type. Represents which kind of event this is. [[Pointer event type. Represents which kind of event this is.
@since 1.19 @since 1.24
]] ]]
none, [[Not a valid event, or nothing new happened (eg. when querying none, [[Not a valid event, or nothing new happened (eg. when querying
current state of touch points).]] current state of touch points).]]
@ -22,7 +22,7 @@ enum Efl.Pointer.Flags
{ {
[[Pointer flags indicating whether a double or triple click is under way. [[Pointer flags indicating whether a double or triple click is under way.
@since 1.19 @since 1.22
]] ]]
none = 0, [[No extra mouse button data]] none = 0, [[No extra mouse button data]]
double_click = (1 << 0), [[This mouse button press was the 2nd press of a double click]] double_click = (1 << 0), [[This mouse button press was the 2nd press of a double click]]
@ -33,7 +33,7 @@ enum Efl.Input.Flags
{ {
[[Special flags set during an input event propagation. [[Special flags set during an input event propagation.
@since 1.19 @since 1.22
]] ]]
none = 0, [[No fancy flags set]] none = 0, [[No fancy flags set]]
processed = (1 << 0), [[This event is being delivered and has been processed, processed = (1 << 0), [[This event is being delivered and has been processed,
@ -60,8 +60,7 @@ enum @beta Efl.Input.Object_Pointer_Mode {
In the mode $nograb, the pointer will always be bound to the object In the mode $nograb, the pointer will always be bound to the object
right below it. right below it.
@since 1.22
@since 1.19
]] ]]
auto_grab, [[Default, X11-like.]] auto_grab, [[Default, X11-like.]]
no_grab, [[Pointer always bound to the object right below it.]] no_grab, [[Pointer always bound to the object right below it.]]
@ -69,15 +68,13 @@ enum @beta Efl.Input.Object_Pointer_Mode {
where mouse/touch up and down events WON'T be where mouse/touch up and down events WON'T be
repeated to objects and these objects wont be repeated to objects and these objects wont be
auto-grabbed. auto-grabbed.
@since 1.2
]] ]]
} }
enum @beta Efl.Input.Value { enum @beta Efl.Input.Value {
[[Keys for the generic values of all events. [[Keys for the generic values of all events.
@since 1.19 @since 1.22
]] ]]
none, [[Not a valid value type.]] none, [[Not a valid value type.]]
timestamp, [[Timestamp of this event in seconds.]] timestamp, [[Timestamp of this event in seconds.]]
@ -147,7 +144,7 @@ enum Efl.Input.Modifier {
The available keys may vary depending on the physical keyboard layout, or The available keys may vary depending on the physical keyboard layout, or
language and keyboard settings, or depending on the platform. language and keyboard settings, or depending on the platform.
@since 1.20 @since 1.22
]] ]]
none = 0, [[No key modifier]] none = 0, [[No key modifier]]
alt = 1 << 0, [[Alt key modifier]] alt = 1 << 0, [[Alt key modifier]]
@ -168,7 +165,7 @@ enum Efl.Input.Lock {
The available keys may vary depending on the physical keyboard layout, or The available keys may vary depending on the physical keyboard layout, or
language and keyboard settings, or depending on the platform. language and keyboard settings, or depending on the platform.
@since 1.20 @since 1.22
]] ]]
none = 0, [[No key modifier]] none = 0, [[No key modifier]]
num = 1 << 0, [[Num Lock for numeric key pad use]] num = 1 << 0, [[Num Lock for numeric key pad use]]