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

« back to all changes in this revision

Viewing changes to gtk/gtkmm/cellrenderercombo.h

  • 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:
7
7
#include <glibmm/ustring.h>
8
8
#include <sigc++/sigc++.h>
9
9
 
10
 
/* $Id: cellrenderercombo.hg,v 1.5 2006/05/10 20:59:27 murrayc Exp $ */
11
 
 
12
 
/* cellrenderercombo.h
13
 
 * 
 
10
/*
14
11
 * Copyright (C) 2004 The gtkmm Development Team
15
12
 *
16
13
 * This library is free software; you can redistribute it and/or
44
41
{
45
42
 
46
43
/**  Renders a combobox in a cell.
47
 
 * CellRendererCombo renders text in a cell like CellRendererText, from which it is derived. But while 
48
 
 * CellRendererText offers a simple entry to edit the text, CellRendererCombo offers a ComboBox or 
49
 
 * ComboBoxEntry widget to edit the text. The values to display in the combo box are taken from the 
 
44
 * CellRendererCombo renders text in a cell like CellRendererText, from which it is derived. But while
 
45
 * CellRendererText offers a simple entry to edit the text, CellRendererCombo offers a ComboBox or
 
46
 * ComboBoxEntry widget to edit the text. The values to display in the combo box are taken from the
50
47
 * tree model specified in the model property.
51
48
 *
52
 
 * The combo cell renderer takes care of adding a text cell renderer to the combo box and sets it to 
53
 
 * display the column specified by its text_column property. Further cell renderers can be added in a 
54
 
 * handler for the editing_started signal. 
 
49
 * The combo cell renderer takes care of adding a text cell renderer to the combo box and sets it to
 
50
 * display the column specified by its text_column property. Further cell renderers can be added in a
 
51
 * handler for the editing_started signal.
55
52
 *
56
53
 * @ingroup TreeView
57
54
 */
144
141
 
145
142
  Glib::SignalProxy2< void,const Glib::ustring&,const TreeModel::iterator& > signal_changed();
146
143
 
147
 
 
 
144
 
148
145
  #ifdef GLIBMM_PROPERTIES_ENABLED
149
146
/** The model containing the possible values for the combo box.
150
147
   *
211
208
 
212
209
};
213
210
 
214
 
} /* namespace Gtk */
 
211
} //namespace Gtk
215
212
 
216
213
 
217
214
namespace Glib