Changeset 3020


Ignore:
Timestamp:
09/20/07 16:00:55 (6 years ago)
Author:
thomas
Message:
  • libmokoui/moko-search-bar.c: (moko_search_bar_init),

(moko_search_bar_new), (moko_search_bar_new_with_combo),
(moko_search_bar_get_combo_box), (moko_search_bar_get_entry),
(moko_search_bar_search_visible):

Add documentation for MokoSearchBar?

Location:
trunk/src/target/OM-2007.2/libraries/libmokoui2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog

    r3018 r3020  
     12007-09-20  Thomas Wood  <thomas@openedhand.com> 
     2 
     3        * libmokoui/moko-search-bar.c: (moko_search_bar_init), 
     4        (moko_search_bar_new), (moko_search_bar_new_with_combo), 
     5        (moko_search_bar_get_combo_box), (moko_search_bar_get_entry), 
     6        (moko_search_bar_search_visible): 
     7 
     8        Add documentation for MokoSearchBar 
     9 
    1102007-09-20  Thomas Wood  <thomas@openedhand.com> 
    211 
  • trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-search-bar.c

    r2868 r3020  
    218218} 
    219219 
     220/** 
     221 * moko_search_bar_new: 
     222 * 
     223 * Create a new MokoSearBar widget 
     224 * 
     225 * returns: The newly created MokoSearchBar 
     226 */ 
     227 
    220228GtkWidget * 
    221229moko_search_bar_new (void) 
     
    225233} 
    226234 
     235/** 
     236 * moko_search_bar_new_with_combo: 
     237 * @comno: a GtkComboBox to use as the combobox 
     238 * 
     239 * Creates a MokoSearchBar with the specified combo box 
     240 * 
     241 * returns: the newly created MokoSearchBar 
     242 */ 
     243 
    227244GtkWidget * 
    228245moko_search_bar_new_with_combo (GtkComboBox *combo) 
     
    232249} 
    233250 
     251/** 
     252 * moko_search_bar_get_combo_box: 
     253 * @self: a MokoSearchBar 
     254 * 
     255 * Get a pointer to the GtkComboBox being used in the MokoSearchBar 
     256 * 
     257 * returns: the GtkComboBox 
     258 */ 
    234259GtkComboBox * 
    235260moko_search_bar_get_combo_box (MokoSearchBar *self) 
     
    240265} 
    241266 
     267 
     268/** 
     269 * moko_search_bar_get_entry: 
     270 * @self: a MokoSearchBar 
     271 * 
     272 * Retrieve the GtkEntry widget being used in the MokoSearchBar 
     273 * 
     274 * returns: the GtkEntry 
     275 */ 
    242276GtkEntry * 
    243277moko_search_bar_get_entry (MokoSearchBar *self) 
     
    248282} 
    249283 
     284/** 
     285 * moko_search_bar_search_visible: 
     286 * @self: a MokoSaerchBar 
     287 * 
     288 * Determine the visibility of the search entry. 
     289 * 
     290 * returns: TRUE if the search entry is visible 
     291 */ 
    250292gboolean 
    251293moko_search_bar_search_visible (MokoSearchBar *self) 
     
    256298} 
    257299 
     300 
     301/** 
     302 * moko_search_bar_toggle: 
     303 * @self: a MokoSearchBar 
     304 * 
     305 * Toggle the search button on the MokoSearchBar. 
     306 * This toggles the visibility of the combo box and entry widgets. 
     307 */ 
    258308void 
    259309moko_search_bar_toggle (MokoSearchBar *self) 
Note: See TracChangeset for help on using the changeset viewer.