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

« back to all changes in this revision

Viewing changes to gtk/src/toolitemgroup.hg

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-09-28 09:25:06 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20120928092506-9h63ais5o750a8sk
Tags: 3.5.13-0ubuntu1
* New upstream release
* debian/control:
  - Bump build-depends on libglibmm-2.4-dev, libgtk-3-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
namespace Gtk
27
27
{
28
28
 
29
 
/** A ToolItemGroup is used together with ToolPalette to add ToolItems to a 
 
29
/** A ToolItemGroup is used together with ToolPalette to add ToolItems to a
30
30
 * palette-like container with different categories and drag and drop support.
31
31
 *
32
32
 * @newin{2,20}
58
58
  _WRAP_METHOD(ReliefStyle get_header_relief() const, gtk_tool_item_group_get_header_relief)
59
59
 
60
60
  _WRAP_METHOD(void insert(ToolItem& item, int position), gtk_tool_item_group_insert)
61
 
  
 
61
 
62
62
  /** Inserts @a item at the end of the list of children of the group.
63
 
   * 
 
63
   *
64
64
   * @param item The ToolItem to insert into the group.
65
65
   */
66
66
  void insert(ToolItem& item);
67
 
  
 
67
 
68
68
  _WRAP_METHOD(void set_item_position(ToolItem& item, int position), gtk_tool_item_group_set_item_position)
69
69
  _WRAP_METHOD(int get_item_position(const ToolItem& item) const, gtk_tool_item_group_get_item_position)
70
70