Changeset 632
- Timestamp:
- 10/13/08 16:21:16 (2 months ago)
- Files:
-
- trunk/src/atk/Hyperlink.d (modified) (1 diff)
- trunk/src/gtkc/atktypes.d (modified) (9 diffs)
- trunk/wrap/downloadFiles.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/atk/Hyperlink.d
r606 r632 241 241 242 242 /** 243 * Warning 244 * atk_hyperlink_is_selected_link is deprecated and should not be used in newly-written code. Please use ATK_STATE_SELECTED to indicate when a hyperlink within a Hypertext container is selected. 243 245 * Determines whether this AtkHyperlink is selected 244 246 * Returns: True is the AtkHyperlink is selected, False otherwiseSince ATK 1.4@Deprecated: This method is deprecated since ATK version 1.8.Please use ATK_STATE_SELECTED to indicate when a hyperlink within aHypertext container is selected. trunk/src/gtkc/atktypes.d
r417 r632 423 423 * received the focus with the new_value containing the AtkState value 424 424 * corresponding to focused. 425 * const gchar*property_name;425 * const gchar *property_name; 426 426 */ 427 427 public struct AtkPropertyValues … … 491 491 /** 492 492 * A structure used to describe a text range. 493 * AtkTextRectangle bounds;493 * AtkTextRectangle bounds; 494 494 */ 495 495 public struct AtkTextRange … … 504 504 /** 505 505 * A structure used to store a rectangle used by AtkText. 506 * gint x;506 * gint x; 507 507 */ 508 508 public struct AtkTextRectangle … … 517 517 /** 518 518 * A string name/value pair representing a text attribute. 519 * gchar *name;519 * gchar *name; 520 520 */ 521 521 public struct AtkAttribute … … 534 534 /** 535 535 * Encapsulates information about a key event. 536 * gint type;536 * gint type; 537 537 */ 538 538 public struct AtkKeyEventStruct … … 558 558 * An AtkFunction is a function definition used for padding which has been added 559 559 * to class and interface structures to allow for expansion in the future. 560 * data :560 * data : 561 561 * a gpointer to parameter data. 562 * Returns :562 * Returns : 563 563 * Nothing useful, this is only a dummy prototype. 564 564 */ … … 569 569 * An AtkPropertyChangeHandler is a function which is executed when an AtkObject's property changes value. It is specified in a call to 570 570 * atk_object_connect_property_change_handler(). 571 * Param1 :571 * Param1 : 572 572 * an AtkObject 573 * Param2 :573 * Param2 : 574 574 * an AtkPropertyValues 575 575 */ … … 584 584 * attach signal handlers for the various ATK signals instead. 585 585 * see: atk_add_focus_tracker. 586 * obj :586 * obj : 587 587 * An AtkObject instance for whom the callback will be called when 588 588 * the specified event (e.g. 'focus:') takes place. … … 604 604 * if registered via atk_add_key_event_listener. It allows for pre-emptive 605 605 * interception of key events via the return code as described below. 606 * event :606 * event : 607 607 * an AtkKeyEventStruct containing information about the key event for which 608 608 * notification is being given. 609 * func_data :609 * func_data : 610 610 * a block of data which will be passed to the event listener, on notification. 611 * Returns :611 * Returns : 612 612 * TRUE (nonzero) if the event emission should be stopped and the event 613 613 * discarded without being passed to the normal GUI recipient; FALSE (zero) if the trunk/wrap/downloadFiles.sh
r631 r632 2 2 mkdir gtkdocs 3 3 cd gtkdocs 4 5 curl http://library.gnome.org/devel/gtksourceview-2.0/gtksourceview-2.0-html-2.4.0.tar.gz | tar xvfz -6 ln -s gtksourceview-2.0-html-2.4.0 sourceview7 exit8 9 #CAIRO10 curl http://library.gnome.org/devel/cairo/cairo-html-1.8.0.tar.gz | tar xvfz -11 ln -s cairo-html-1.8.0 cairo12 exit13 4 14 5 #GLIB … … 28 19 ln -s gio-html-2.18.0 gio 29 20 #ATK 30 curl http://library.gnome.org/devel/atk/atk-html-1.2 2.0.tar.gz | tar xvfz -31 ln -s atk-html-1.2 2.0 atk21 curl http://library.gnome.org/devel/atk/atk-html-1.24.0.tar.gz | tar xvfz - 22 ln -s atk-html-1.24.0 atk 32 23 #PANGO 33 24 curl http://library.gnome.org/devel/pango/pango-html-1.22.0.tar.gz | tar xvfz -
