Home
last modified time | relevance | path

Searched refs:RDirNode (Results 1 – 6 of 6) sorted by relevance

/dports/graphics/gource/gource-0.51/src/
H A Ddirnode.cpp34 RDirNode::RDirNode(RDirNode* parent, const std::string & abspath) { in RDirNode() function in RDirNode
87 RDirNode::~RDirNode() { in ~RDirNode()
155 RDirNode* RDirNode::getParent() const{ in getParent()
219 void RDirNode::setParent(RDirNode* parent) { in setParent()
241 void RDirNode::addNode(RDirNode* node) { in addNode()
269 RDirNode* RDirNode::getRoot() { in getRoot()
450 RDirNode* node = new RDirNode(this, f->path); in addFile()
476 RDirNode* cnode = new RDirNode(this, commonpath); in addFile()
604 void RDirNode::applyForceDir(RDirNode* node) { in applyForceDir()
636 bool RDirNode::isParent(RDirNode* node) const { in isParent()
[all …]
H A Ddirnode.h38 class RDirNode : public QuadItem {
44 RDirNode* parent;
45 std::list<RDirNode*> children;
103 RDirNode(RDirNode* parent, const std::string & abspath);
104 ~RDirNode();
112 RDirNode* getRoot();
161 RDirNode* getParent() const;
182 void addNode(RDirNode* node);
214 RDirNode * this_dir;
215 std::set<RDirNode*> seen;
[all …]
H A Dfile.h25 class RDirNode; variable
31 RDirNode* dir;
89 RDirNode* getDir() const;
90 void setDir(RDirNode* dir);
H A Dfile.cpp88 void RFile::setDir(RDirNode* dir) { in setDir()
92 RDirNode* RFile::getDir() const{ in getDir()
H A Dgource.cpp908 root = new RDirNode(0, "/"); in reset()
1175 std::list<RDirNode*> dirs; in processCommit()
1179 for(std::list<RDirNode*>::iterator it = dirs.begin(); it != dirs.end(); it++) { in processCommit()
1181 RDirNode* dir = (*it); in processCommit()
1323 …for(std::map<std::string,RDirNode*>::iterator it = gGourceDirMap.begin(); it!=gGourceDirMap.end();… in updateBounds()
1324 RDirNode* node = it->second; in updateBounds()
1409 …for(std::map<std::string,RDirNode*>::iterator it = gGourceDirMap.begin(); it!=gGourceDirMap.end();… in interactDirs()
1410 RDirNode* node = it->second; in interactDirs()
1888 RDirNode* dir = (RDirNode*) *it; in mousetrace()
H A Dgource.h114 RDirNode* root;