Changeset 3020
- Timestamp:
- 09/20/07 16:00:55 (6 years ago)
- Location:
- trunk/src/target/OM-2007.2/libraries/libmokoui2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
libmokoui/moko-search-bar.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog
r3018 r3020 1 2007-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 1 10 2007-09-20 Thomas Wood <thomas@openedhand.com> 2 11 -
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-search-bar.c
r2868 r3020 218 218 } 219 219 220 /** 221 * moko_search_bar_new: 222 * 223 * Create a new MokoSearBar widget 224 * 225 * returns: The newly created MokoSearchBar 226 */ 227 220 228 GtkWidget * 221 229 moko_search_bar_new (void) … … 225 233 } 226 234 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 227 244 GtkWidget * 228 245 moko_search_bar_new_with_combo (GtkComboBox *combo) … … 232 249 } 233 250 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 */ 234 259 GtkComboBox * 235 260 moko_search_bar_get_combo_box (MokoSearchBar *self) … … 240 265 } 241 266 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 */ 242 276 GtkEntry * 243 277 moko_search_bar_get_entry (MokoSearchBar *self) … … 248 282 } 249 283 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 */ 250 292 gboolean 251 293 moko_search_bar_search_visible (MokoSearchBar *self) … … 256 298 } 257 299 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 */ 258 308 void 259 309 moko_search_bar_toggle (MokoSearchBar *self)
Note: See TracChangeset
for help on using the changeset viewer.
