#include <VFSTreePopulator.h>
Public Member Functions | |
virtual void | visit (GtkTreeStore *store, GtkTreeIter *iter, const std::string &path, bool isExplicit)=0 |
Visitor interface.
Definition at line 81 of file VFSTreePopulator.h.
virtual void gtkutil::VFSTreePopulator::Visitor::visit | ( | GtkTreeStore * | store, | |
GtkTreeIter * | iter, | |||
const std::string & | path, | |||
bool | isExplicit | |||
) | [pure virtual] |
Visit callback function, called for each node in the tree.
store | The tree store to insert into. | |
iter | A GtkTreeIter* pointing to the current node. | |
path | Full VFS path of the current node, as presented to addPath(). | |
isExplicit | true if the path was explicitly inserted via addPath(), false if the path was created as an intermediate parent of another explicit path. |