clutter: Remove all the since annotations
Since they are all refer to the days clutter used to be a separate library Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2441>
This commit is contained in:
@ -13,8 +13,6 @@
|
||||
* also possible, for toolkit developers, to retrieve the settings from
|
||||
* the #ClutterSettings properties when implementing new UI elements,
|
||||
* for instance the default font name.
|
||||
*
|
||||
* Since: 1.4
|
||||
*/
|
||||
|
||||
#include "clutter-build-config.h"
|
||||
@ -781,8 +779,6 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
*
|
||||
* A back pointer to the [class@Backend]
|
||||
*
|
||||
* Since: 1.4
|
||||
*
|
||||
* Deprecated: 1.10
|
||||
*/
|
||||
obj_props[PROP_BACKEND] =
|
||||
@ -799,8 +795,6 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
*
|
||||
* The time, in milliseconds, that should elapse between button-press
|
||||
* events in order to increase the click count by 1.
|
||||
*
|
||||
* Since: 1.4
|
||||
*/
|
||||
obj_props[PROP_DOUBLE_CLICK_TIME] =
|
||||
g_param_spec_int ("double-click-time",
|
||||
@ -815,8 +809,6 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
*
|
||||
* The maximum distance, in pixels, between button-press events that
|
||||
* determines whether or not to increase the click count by 1.
|
||||
*
|
||||
* Since: 1.4
|
||||
*/
|
||||
obj_props[PROP_DOUBLE_CLICK_DISTANCE] =
|
||||
g_param_spec_int ("double-click-distance",
|
||||
@ -831,8 +823,6 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
*
|
||||
* The default distance that the cursor of a pointer device
|
||||
* should travel before a drag operation should start.
|
||||
*
|
||||
* Since: 1.8
|
||||
*/
|
||||
obj_props[PROP_DND_DRAG_THRESHOLD] =
|
||||
g_param_spec_int ("dnd-drag-threshold",
|
||||
@ -847,8 +837,6 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
*
|
||||
* The default font name that should be used by text actors, as
|
||||
* a string that can be passed to [func@Pango.FontDescription.from_string].
|
||||
*
|
||||
* Since: 1.4
|
||||
*/
|
||||
obj_props[PROP_FONT_NAME] =
|
||||
g_param_spec_string ("font-name",
|
||||
@ -863,8 +851,6 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
* Whether or not to use antialiasing when rendering text; a value
|
||||
* of 1 enables it unconditionally; a value of 0 disables it
|
||||
* unconditionally; and -1 will use the system's default.
|
||||
*
|
||||
* Since: 1.4
|
||||
*/
|
||||
obj_props[PROP_FONT_ANTIALIAS] =
|
||||
g_param_spec_int ("font-antialias",
|
||||
@ -880,8 +866,6 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
* The DPI used when rendering text, as a value of 1024 * dots/inch.
|
||||
*
|
||||
* If set to -1, the system's default will be used instead
|
||||
*
|
||||
* Since: 1.4
|
||||
*/
|
||||
obj_props[PROP_FONT_DPI] =
|
||||
g_param_spec_int ("font-dpi",
|
||||
@ -905,8 +889,6 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
* Whether or not to use hinting when rendering text; a value of 1
|
||||
* unconditionally enables it; a value of 0 unconditionally disables
|
||||
* it; and a value of -1 will use the system's default.
|
||||
*
|
||||
* Since: 1.4
|
||||
*/
|
||||
obj_props[PROP_FONT_HINTING] =
|
||||
g_param_spec_int ("font-hinting",
|
||||
@ -926,8 +908,6 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
* - hintslight
|
||||
* - hintmedium
|
||||
* - hintfull
|
||||
*
|
||||
* Since: 1.4
|
||||
*/
|
||||
obj_props[PROP_FONT_HINT_STYLE] =
|
||||
g_param_spec_string ("font-hint-style",
|
||||
@ -947,8 +927,6 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
* - bgr
|
||||
* - vrgb
|
||||
* - vbgr
|
||||
*
|
||||
* Since: 1.4
|
||||
*/
|
||||
obj_props[PROP_FONT_RGBA] =
|
||||
g_param_spec_string ("font-subpixel-order",
|
||||
@ -964,8 +942,6 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
* gesture. The duration is expressed in milliseconds.
|
||||
*
|
||||
* See also [property@ClickAction:long-press-duration].
|
||||
*
|
||||
* Since: 1.8
|
||||
*/
|
||||
obj_props[PROP_LONG_PRESS_DURATION] =
|
||||
g_param_spec_int ("long-press-duration",
|
||||
@ -990,8 +966,6 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
* [class@Text] actors. The value is in milliseconds. A value of 0
|
||||
* disables showing the password hint. 600 is a good value for
|
||||
* enabling the hint.
|
||||
*
|
||||
* Since: 1.10
|
||||
*/
|
||||
obj_props[PROP_PASSWORD_HINT_TIME] =
|
||||
g_param_spec_uint ("password-hint-time",
|
||||
@ -1040,8 +1014,6 @@ clutter_settings_init (ClutterSettings *self)
|
||||
* Return value: (transfer none): the instance of #ClutterSettings. The
|
||||
* returned object is owned by Clutter and it should not be unreferenced
|
||||
* directly
|
||||
*
|
||||
* Since: 1.4
|
||||
*/
|
||||
ClutterSettings *
|
||||
clutter_settings_get_default (void)
|
||||
|
Reference in New Issue
Block a user