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:
Matthias Clasen 2004-08-02 04:14:17 +00:00 committed by Matthias Clasen
parent d2b0a7348a
commit d070652052
7 changed files with 78 additions and 6 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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
*

View File

@ -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)

View File

@ -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
*