mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Document the xalign property and its getter and setter as 2.4 additions.
Mon Aug 2 00:12:16 2004 Matthias Clasen <maclas@gmx.de> * gtk/gtkentry.c (gtk_entry_class_init): (gtk_entry_get_alignment): (gtk_entry_set_alignment): Document the xalign property and its getter and setter as 2.4 additions. (#148978, Axel Simon) Mon Aug 2 00:11:31 2004 Matthias Clasen <maclas@gmx.de> * gtk/gtkuimanager.c (gtk_ui_manager_class_init): * gtk/gtkactiongroup.c (gtk_action_group_class_init): Use canonical signal names in doc comments, since gtk-doc won't pick up signal docs with underscores.
This commit is contained in:
parent
d2b0a7348a
commit
d070652052
15
ChangeLog
15
ChangeLog
@ -1,3 +1,18 @@
|
||||
Mon Aug 2 00:12:16 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkentry.c (gtk_entry_class_init):
|
||||
(gtk_entry_get_alignment):
|
||||
(gtk_entry_set_alignment): Document the xalign property
|
||||
and its getter and setter as 2.4 additions. (#148978,
|
||||
Axel Simon)
|
||||
|
||||
Mon Aug 2 00:11:31 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkuimanager.c (gtk_ui_manager_class_init):
|
||||
* gtk/gtkactiongroup.c (gtk_action_group_class_init): Use
|
||||
canonical signal names in doc comments, since gtk-doc won't
|
||||
pick up signal docs with underscores.
|
||||
|
||||
2004-08-01 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* configure.in: Post-release version bump
|
||||
|
@ -1,3 +1,18 @@
|
||||
Mon Aug 2 00:12:16 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkentry.c (gtk_entry_class_init):
|
||||
(gtk_entry_get_alignment):
|
||||
(gtk_entry_set_alignment): Document the xalign property
|
||||
and its getter and setter as 2.4 additions. (#148978,
|
||||
Axel Simon)
|
||||
|
||||
Mon Aug 2 00:11:31 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkuimanager.c (gtk_ui_manager_class_init):
|
||||
* gtk/gtkactiongroup.c (gtk_action_group_class_init): Use
|
||||
canonical signal names in doc comments, since gtk-doc won't
|
||||
pick up signal docs with underscores.
|
||||
|
||||
2004-08-01 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* configure.in: Post-release version bump
|
||||
|
@ -1,3 +1,18 @@
|
||||
Mon Aug 2 00:12:16 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkentry.c (gtk_entry_class_init):
|
||||
(gtk_entry_get_alignment):
|
||||
(gtk_entry_set_alignment): Document the xalign property
|
||||
and its getter and setter as 2.4 additions. (#148978,
|
||||
Axel Simon)
|
||||
|
||||
Mon Aug 2 00:11:31 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkuimanager.c (gtk_ui_manager_class_init):
|
||||
* gtk/gtkactiongroup.c (gtk_action_group_class_init): Use
|
||||
canonical signal names in doc comments, since gtk-doc won't
|
||||
pick up signal docs with underscores.
|
||||
|
||||
2004-08-01 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* configure.in: Post-release version bump
|
||||
|
@ -1,3 +1,18 @@
|
||||
Mon Aug 2 00:12:16 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkentry.c (gtk_entry_class_init):
|
||||
(gtk_entry_get_alignment):
|
||||
(gtk_entry_set_alignment): Document the xalign property
|
||||
and its getter and setter as 2.4 additions. (#148978,
|
||||
Axel Simon)
|
||||
|
||||
Mon Aug 2 00:11:31 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkuimanager.c (gtk_ui_manager_class_init):
|
||||
* gtk/gtkactiongroup.c (gtk_action_group_class_init): Use
|
||||
canonical signal names in doc comments, since gtk-doc won't
|
||||
pick up signal docs with underscores.
|
||||
|
||||
2004-08-01 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* configure.in: Post-release version bump
|
||||
|
@ -202,7 +202,7 @@ gtk_action_group_class_init (GtkActionGroupClass *klass)
|
||||
GTK_TYPE_ACTION, GTK_TYPE_WIDGET);
|
||||
|
||||
/**
|
||||
* GtkActionGroup::pre_activate:
|
||||
* GtkActionGroup::pre-activate:
|
||||
* @action_group: the group
|
||||
* @action: the action
|
||||
*
|
||||
@ -223,7 +223,7 @@ gtk_action_group_class_init (GtkActionGroupClass *klass)
|
||||
GTK_TYPE_ACTION);
|
||||
|
||||
/**
|
||||
* GtkActionGroup::post_activate:
|
||||
* GtkActionGroup::post-activate:
|
||||
* @action_group: the group
|
||||
* @action: the action
|
||||
*
|
||||
|
@ -571,6 +571,14 @@ gtk_entry_class_init (GtkEntryClass *class)
|
||||
"",
|
||||
G_PARAM_READABLE | G_PARAM_WRITABLE));
|
||||
|
||||
/**
|
||||
* GtkEntry:xalign:
|
||||
*
|
||||
* The horizontal alignment, from 0 (left) to 1 (right).
|
||||
* Reversed for RTL layouts.
|
||||
*
|
||||
* Since: 2.4
|
||||
*/
|
||||
g_object_class_install_property (gobject_class,
|
||||
PROP_XALIGN,
|
||||
g_param_spec_float ("xalign",
|
||||
@ -4158,6 +4166,8 @@ gtk_entry_get_layout_offsets (GtkEntry *entry,
|
||||
* Sets the alignment for the contents of the entry. This controls
|
||||
* the horizontal positioning of the contents when the displayed
|
||||
* text is shorter than the width of the entry.
|
||||
*
|
||||
* Since: 2.4
|
||||
**/
|
||||
void
|
||||
gtk_entry_set_alignment (GtkEntry *entry, gfloat xalign)
|
||||
@ -4190,6 +4200,8 @@ gtk_entry_set_alignment (GtkEntry *entry, gfloat xalign)
|
||||
* Gets the value set by gtk_entry_set_alignment().
|
||||
*
|
||||
* Return value: the alignment
|
||||
*
|
||||
* Since: 2.4
|
||||
**/
|
||||
gfloat
|
||||
gtk_entry_get_alignment (GtkEntry *entry)
|
||||
|
@ -271,7 +271,7 @@ gtk_ui_manager_class_init (GtkUIManagerClass *klass)
|
||||
G_TYPE_NONE, 0);
|
||||
|
||||
/**
|
||||
* GtkUIManager::connect_proxy:
|
||||
* GtkUIManager::connect-proxy:
|
||||
* @uimanager: the ui manager
|
||||
* @action: the action
|
||||
* @proxy: the proxy
|
||||
@ -297,7 +297,7 @@ gtk_ui_manager_class_init (GtkUIManagerClass *klass)
|
||||
GTK_TYPE_WIDGET);
|
||||
|
||||
/**
|
||||
* GtkUIManager::disconnect_proxy:
|
||||
* GtkUIManager::disconnect-proxy:
|
||||
* @uimanager: the ui manager
|
||||
* @action: the action
|
||||
* @proxy: the proxy
|
||||
@ -319,7 +319,7 @@ gtk_ui_manager_class_init (GtkUIManagerClass *klass)
|
||||
GTK_TYPE_WIDGET);
|
||||
|
||||
/**
|
||||
* GtkUIManager::pre_activate:
|
||||
* GtkUIManager::pre-activate:
|
||||
* @uimanager: the ui manager
|
||||
* @action: the action
|
||||
*
|
||||
@ -342,7 +342,7 @@ gtk_ui_manager_class_init (GtkUIManagerClass *klass)
|
||||
GTK_TYPE_ACTION);
|
||||
|
||||
/**
|
||||
* GtkUIManager::post_activate:
|
||||
* GtkUIManager::post-activate:
|
||||
* @uimanager: the ui manager
|
||||
* @action: the action
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user