~ubuntu-branches/ubuntu/quantal/gtkmm3.0/quantal

« back to all changes in this revision

Viewing changes to gtk/gtkmm/box.h

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2012-03-01 23:42:36 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20120301234236-12w6m0hkomhi7h53
Tags: 3.3.16-0ubuntu1
* New upstream version
* debian/control.in: updated the glib requirement

Show diffs side-by-side

added added

removed removed

Lines of Context:
188
188
   * of a vertical Gtk::Box. This option affects the other dimension.
189
189
   * @param padding Extra space in pixels to put between this child and its
190
190
   * neighbors, over and above the global amount specified by
191
 
   * Gtk::Box:spacing property.  If @a child is a widget at one of the
 
191
   * Gtk::Box::property_spacing() property.  If @a child is a widget at one of the
192
192
   * reference ends of @a box, then @a padding pixels are also put between
193
193
   *  @a child and the reference edge of @a box.
194
194
   */
216
216
   * of a vertical Gtk::Box.  This option affects the other dimension.
217
217
   * @param padding Extra space in pixels to put between this child and its
218
218
   * neighbors, over and above the global amount specified by
219
 
   * Gtk::Box:spacing property.  If @a child is a widget at one of the
 
219
   * Gtk::Box::property_spacing() property.  If @a child is a widget at one of the
220
220
   * reference ends of @a box, then @a padding pixels are also put between
221
221
   *  @a child and the reference edge of @a box.
222
222
   */
230
230
  void pack_end(Widget& child, PackOptions options = PACK_EXPAND_WIDGET, guint padding = 0);
231
231
 
232
232
  
233
 
  /** Sets the Gtk::Box:homogeneous property of @a box, controlling
 
233
  /** Sets the Gtk::Box::property_homogeneous() property of @a box, controlling
234
234
   * whether or not all children of @a box are given equal space
235
235
   * in the box.
236
236
   * @param homogeneous A boolean value, <tt>true</tt> to create equal allotments,
245
245
  bool get_homogeneous() const;
246
246
 
247
247
  
248
 
  /** Sets the Gtk::Box:spacing property of @a box, which is the
 
248
  /** Sets the Gtk::Box::property_spacing() property of @a box, which is the
249
249
   * number of pixels to place between children of @a box.
250
250
   * @param spacing The number of pixels to put between children.
251
251
   */
275
275
  void reorder_child(Widget& child, int pos);
276
276
 
277
277
  #ifdef GLIBMM_PROPERTIES_ENABLED
278
 
/** The amount of space between children.
 
278
/** 
279
279
   *
280
280
   * You rarely need to use properties because there are get_ and set_ methods for almost all of them.
281
281
   * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
295
295
#endif //#GLIBMM_PROPERTIES_ENABLED
296
296
 
297
297
  #ifdef GLIBMM_PROPERTIES_ENABLED
298
 
/** Whether the children should all be the same size.
 
298
/** 
299
299
   *
300
300
   * You rarely need to use properties because there are get_ and set_ methods for almost all of them.
301
301
   * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when