added custom cell renderer (doesn't do anything yet)

This commit is contained in:
fgerlits 2005-04-13 17:36:33 +00:00
parent 827d6ed31d
commit c034ca25e2
6 changed files with 373 additions and 7 deletions

View file

@ -22,7 +22,7 @@
Author : $Author: fgerlits $
Version : $Revision: 1.4 $
Version : $Revision: 1.5 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/ZebraTreeView.cxx,v $
------------------------------------------------------------------------------*/
@ -37,6 +37,7 @@
#include "LiveSupport/Widgets/WidgetFactory.h"
#include "LiveSupport/Widgets/ZebraTreeModelColumnRecord.h"
#include "LiveSupport/Widgets/ZebraCellRenderer.h"
#include "LiveSupport/Widgets/ZebraTreeView.h"
@ -73,6 +74,25 @@ ZebraTreeView :: ~ZebraTreeView(void) throw ()
}
/*------------------------------------------------------------------------------
* Add a column to the TreeView.
*----------------------------------------------------------------------------*/
int
ZebraTreeView :: appendColumn(
const Glib::ustring& title,
const Gtk::TreeModelColumn<Glib::ustring>& modelColumn)
throw ()
{
ZebraCellRenderer* renderer = Gtk::manage(new ZebraCellRenderer);
// the constructor packs the renderer into the TreeViewColumn
Gtk::TreeViewColumn* viewColumn = Gtk::manage(new
Gtk::TreeViewColumn(title, *renderer) );
// and then we associate this renderer with the model column
viewColumn->set_renderer(*renderer, modelColumn);
return append_column(*viewColumn);
}
/*------------------------------------------------------------------------------
* Set the callback function for every column.
*----------------------------------------------------------------------------*/