The Model

Each Gtk::TreeView has an associated Gtk::TreeModel, which contains the data displayed by the TreeView. Each Gtk::TreeModel can be used by more than one Gtk::TreeView. For instance, this allows the same underlying data to be displayed and edited in 2 different ways at the same time. Or the 2 Views might display different columns from the same Model data, in the same way that 2 SQL queries (or "views") might show different fields from the same database table.

Although you can theoretically implement your own Model, you will normally use either the ListStore or TreeStore model classes.

Reference

10.1.1. ListStore, for rows

The ListStore contains simple rows of data, and each row has no children.

Figure 10-1TreeView - ListStore

Reference

10.1.2. TreeStore, for a hierarchy

The TreeStore contains rows of data, and each row may have child rows.

Figure 10-2TreeView - TreeStore

Reference

10.1.3. Model Columns

The TreeModelColumnRecord class is used to keep track of the columns and their data types. You add TreeModelColumn instances to the ColumnRecord and then use those TreeModelColumns when getting and setting the data in model rows. You will probably find it convenient to derive a new TreeModelColumnRecord which has your TreeModelColumn instances as member data.

class ModelColumns : public Gtk::TreeModelColumnRecord
{
public:

  ModelColumns()
    { add(m_col_text); add(m_col_number); }

  Gtk::TreeModelColumn<Glib::ustring> m_col_text;
  Gtk::TreeModelColumn<int> m_col_number;
};

ModelColumns m_Columns;

You specify the ColumnRecord when creating the Model, like so:

Glib::RefPtr<Gtk::ListStore> refListStore =
    Gtk::ListStore::create(m_Columns);

As a TreeModelColumnRecord describes structure, not data, it can be shared among multiple models, and this is preferable for efficiency. However, the instance (such as m_Columns here) should usually not be static, because it often needs to be instantiated after glibmm has been initialized. The best solution is to make it a lazily instantiated singleton, so that it will be constructed on-demand, whenever the first model accesses it.

10.1.4. Adding Rows

Add rows to the model with the append(), prepend(), or insert() methods.

auto iter = m_refListStore->append();

You can dereference the iterator to get the Row:

auto row = *iter;

10.1.4.1. Adding child rows

Gtk::TreeStore models can have child items. Add them with the append(), prepend(), or insert() methods, like so:

auto iter_child =
    m_refTreeStore->append(row.children());

10.1.5. Setting values

You can use the operator[] overload to set the data for a particular column in the row, specifying the TreeModelColumn used to create the model.

row[m_Columns.m_col_text] = "sometext";

10.1.6. Getting values

You can use the operator[] overload to get the data in a particular column in a row, specifying the TreeModelColumn used to create the model.

auto strText = row[m_Columns.m_col_text];
auto number = row[m_Columns.m_col_number];

The compiler will complain if you use an inappropriate type. For instance, this would generate a compiler error:

//compiler error - no conversion from ustring to int.
int number = row[m_Columns.m_col_text];

10.1.7. "Hidden" Columns

You might want to associate extra data with each row. If so, just add it as a Model column, but don't add it to the View.