1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
|
/* Tree View/Editable Cells
*
* This demo demonstrates the use of editable cells in a Gtk::TreeView. If
* you're new to the Gtk::TreeView widgets and associates, look into
* the Gtk::ListStore example first.
*
*/
#include <cstdlib>
#include <gtkmm.h>
using std::strtod;
class CellItem_Product
{
public:
CellItem_Product();
CellItem_Product(const CellItem_Product& src);
~CellItem_Product();
CellItem_Product& operator=(const CellItem_Product& src);
int m_number;
Glib::ustring m_product;
};
class Example_TreeView_EditableCells : public Gtk::Window
{
public:
Example_TreeView_EditableCells();
virtual ~Example_TreeView_EditableCells();
protected:
//signal handlers:
virtual void on_button_add_clicked();
virtual void on_button_remove_clicked();
virtual void create_model();
virtual void add_columns();
virtual void add_items();
virtual void liststore_add_item(const CellItem_Product& foo);
//We only have these signal handlers here, because the append_column_editable() convenience methods do not work with
//the IRIX MipsPro compiler.
virtual void on_column_number_edited(const Glib::ustring& path_string, const Glib::ustring& new_text);
virtual void on_column_product_edited(const Glib::ustring& path_string, const Glib::ustring& new_text);
//Member widgets:
Gtk::Box m_VBox;
Gtk::ScrolledWindow m_ScrolledWindow;
Gtk::Label m_Label;
Gtk::TreeView m_TreeView;
Glib::RefPtr<Gtk::ListStore> m_refListStore;
Gtk::Box m_HBox;
Gtk::Button m_Button_Add, m_Button_Remove;
typedef std::vector<CellItem_Product> type_vecItems;
type_vecItems m_vecItems;
struct ModelColumns : public Gtk::TreeModelColumnRecord
{
Gtk::TreeModelColumn<int> number;
Gtk::TreeModelColumn<Glib::ustring> product;
ModelColumns() { add(number); add(product); }
};
const ModelColumns m_columns;
};
CellItem_Product::CellItem_Product()
{
m_number = 0;
}
CellItem_Product::CellItem_Product(const CellItem_Product& src)
{
operator=(src);
}
CellItem_Product::~CellItem_Product()
{
}
CellItem_Product& CellItem_Product::operator=(const CellItem_Product& src)
{
m_number = src.m_number;
m_product = src.m_product;
return *this;
}
//Called by DemoWindow;
Gtk::Window* do_treeview_editable_cells()
{
return new Example_TreeView_EditableCells();
}
Example_TreeView_EditableCells::Example_TreeView_EditableCells()
: m_VBox(Gtk::ORIENTATION_VERTICAL, 5),
m_Label("Shopping list (you can edit the cells!)"),
m_HBox(Gtk::ORIENTATION_HORIZONTAL, 4),
m_Button_Add("Add item"),
m_Button_Remove("Remove item")
{
set_title("Shopping List");
set_border_width(5);
set_default_size(320, 200);
add(m_VBox);
m_VBox.pack_start(m_Label, Gtk::PACK_SHRINK);
m_ScrolledWindow.set_shadow_type(Gtk::SHADOW_ETCHED_IN);
m_ScrolledWindow.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
m_VBox.pack_start(m_ScrolledWindow);
/* create model */
create_model();
/* create tree view */
m_TreeView.set_model(m_refListStore);
Glib::RefPtr<Gtk::TreeSelection> refTreeSelection = m_TreeView.get_selection();
refTreeSelection->set_mode(Gtk::SELECTION_SINGLE);
add_columns();
m_ScrolledWindow.add(m_TreeView);
/* some buttons */
m_VBox.pack_start(m_HBox, Gtk::PACK_SHRINK);
m_HBox.pack_start(m_Button_Add);
m_Button_Add.signal_clicked().connect(
sigc::mem_fun(*this, &Example_TreeView_EditableCells::on_button_add_clicked));
m_HBox.pack_start(m_Button_Remove);
m_Button_Remove.signal_clicked().connect(
sigc::mem_fun(*this, &Example_TreeView_EditableCells::on_button_remove_clicked));
show_all();
}
Example_TreeView_EditableCells::~Example_TreeView_EditableCells()
{
}
void Example_TreeView_EditableCells::add_items()
{
CellItem_Product foo;
foo.m_number = 3;
foo.m_product = "bottles of coke";
m_vecItems.push_back(foo);
foo.m_number = 5;
foo.m_product = "packages of noodles";
m_vecItems.push_back(foo);
foo.m_number = 2;
foo.m_product = "packages of chocolate chip cookies";
m_vecItems.push_back(foo);
foo.m_number = 1;
foo.m_product = "can vanilla ice cream";
m_vecItems.push_back(foo);
foo.m_number = 6;
foo.m_product = "eggs";
m_vecItems.push_back(foo);
}
void Example_TreeView_EditableCells::create_model()
{
m_refListStore = Gtk::ListStore::create(m_columns);
/* add items */
add_items();
std::for_each(
m_vecItems.begin(), m_vecItems.end(),
sigc::mem_fun(*this, &Example_TreeView_EditableCells::liststore_add_item));
}
void Example_TreeView_EditableCells::liststore_add_item(const CellItem_Product& foo)
{
Gtk::TreeRow row = *(m_refListStore->append());
row[m_columns.number] = foo.m_number;
row[m_columns.product] = foo.m_product;
}
//We only have these signal handlers here, because the append_column_editable() convenience methods do not work with
//the IRIX MipsPro compiler.
void Example_TreeView_EditableCells::on_column_number_edited(const Glib::ustring& path_string, const Glib::ustring& new_text)
{
Gtk::TreePath path(path_string);
//Get the row from the path:
Glib::RefPtr<Gtk::TreeModel> refModel = m_TreeView.get_model();
if(refModel)
{
Gtk::TreeModel::iterator iter = refModel->get_iter(path);
if(iter)
{
//Convert the text to a number, using the same logic used by GtkCellRendererText when it stores numbers.
char* pchEnd = 0;
int new_value = (int) strtod(new_text.c_str(), &pchEnd);
//Store the user's new text in the model:
Gtk::TreeRow row = *iter;
row[m_columns.number] = new_value;
}
}
}
void Example_TreeView_EditableCells::on_column_product_edited(const Glib::ustring& path_string, const Glib::ustring& new_text)
{
Gtk::TreePath path(path_string);
//Get the row from the path:
Glib::RefPtr<Gtk::TreeModel> refModel = m_TreeView.get_model();
if(refModel)
{
Gtk::TreeModel::iterator iter = refModel->get_iter(path);
if(iter)
{
//Store the user's new text in the model:
Gtk::TreeRow row = *iter;
row[m_columns.product] = new_text;
}
}
}
void Example_TreeView_EditableCells::add_columns()
{
//This is the wasy way:
// number column:
//m_TreeView.append_column_editable("Number", m_columns.number);
//
// product column:
//m_TreeView.append_column_editable("Product", m_columns.product);
//And this is the way that works with the IRIX MipsPro compiler too:
{
Gtk::TreeView::Column* pViewColumn = Gtk::manage(new Gtk::TreeView::Column("Number", m_columns.number));
//connect signal handlers for auto-storing of edited cell data
Gtk::CellRenderer* pCellRenderer = pViewColumn->get_first_cell();
Gtk::CellRendererText* pCellRenderText = dynamic_cast<Gtk::CellRendererText*>(pCellRenderer);
if(pCellRenderText)
{
//Set the appropriate property,
pCellRenderText->property_editable() = true;
//Connect to the appropriate signal, sending the model_column too,
pCellRenderText->signal_edited().connect( sigc::mem_fun(*this, &Example_TreeView_EditableCells::on_column_number_edited) );
}
m_TreeView.append_column(*pViewColumn);
}
{
Gtk::TreeView::Column* pViewColumn = Gtk::manage(new Gtk::TreeView::Column("Product", m_columns.product));
//connect signal handlers for auto-storing of edited cell data
Gtk::CellRenderer* pCellRenderer = pViewColumn->get_first_cell();
Gtk::CellRendererText* pCellRenderText = dynamic_cast<Gtk::CellRendererText*>(pCellRenderer);
if(pCellRenderText)
{
//Set the appropriate property,
pCellRenderText->property_editable() = true;
//Connect to the appropriate signal, sending the model_column too,
pCellRenderText->signal_edited().connect( sigc::mem_fun(*this, &Example_TreeView_EditableCells::on_column_product_edited) );
}
m_TreeView.append_column(*pViewColumn);
}
}
void Example_TreeView_EditableCells::on_button_add_clicked()
{
CellItem_Product foo;
foo.m_number = 0;
foo.m_product = "Description here";
m_vecItems.push_back(foo);
liststore_add_item(foo);
}
void Example_TreeView_EditableCells::on_button_remove_clicked()
{
Glib::RefPtr<Gtk::TreeSelection> refSelection = m_TreeView.get_selection();
if(const Gtk::TreeModel::iterator iter = refSelection->get_selected())
{
const Gtk::TreeModel::Path path(iter);
const unsigned int index = path.front();
// Remove item from ListStore:
m_refListStore->erase(iter);
// Remove item from vecItems.
if(index < m_vecItems.size())
m_vecItems.erase(m_vecItems.begin() + index);
}
}
|