NorMIT-nav  18.04
An IGT application
cxToolTreeNode.h
Go to the documentation of this file.
1 /*=========================================================================
2 This file is part of CustusX, an Image Guided Therapy Application.
3 
4 Copyright (c) SINTEF Department of Medical Technology.
5 All rights reserved.
6 
7 CustusX is released under a BSD 3-Clause license.
8 
9 See Lisence.txt (https://github.com/SINTEFMedtek/CustusX/blob/master/License.txt) for details.
10 =========================================================================*/
11 #ifndef CXTOOLTREENODE_H
12 #define CXTOOLTREENODE_H
13 
14 #include "cxTreeNodeImpl.h"
15 
16 namespace cx
17 {
18 
19 class TreeNode;
20 typedef boost::weak_ptr<TreeNode> TreeNodeWeakPtr;
21 typedef boost::shared_ptr<TreeNode> TreeNodePtr;
22 
23 
24 class ToolTreeNode : public TreeNodeImpl
25 {
26  Q_OBJECT
27 public:
29  virtual ~ToolTreeNode();
30  virtual QString getUid() const;
31  virtual QString getName() const;
32  virtual QString getType() const;
33  virtual TreeNodePtr getParent() const;
34  virtual void activate();
35  virtual QIcon getIcon() const;
36  virtual boost::shared_ptr<QWidget> createPropertiesWidget() const;
37  virtual QVariant getColor() const;
38  virtual bool useColoredName() const { return true; }
39  virtual QVariant getFont() const;
40 
41 private:
42  ToolPtr mTool;
43 };
44 
45 } // namespace cx
46 
47 #endif // CXTOOLTREENODE_H
boost::shared_ptr< TreeNode > TreeNodePtr
virtual QVariant getColor() const
virtual TreeNodePtr getParent() const
virtual QIcon getIcon() const
virtual void activate()
boost::weak_ptr< class TreeRepository > TreeRepositoryWeakPtr
Definition: cxTreeNode.h:30
TreeRepositoryPtr repo()
ToolTreeNode(TreeRepositoryWeakPtr repo, ToolPtr tool)
boost::weak_ptr< TreeNode > TreeNodeWeakPtr
virtual QString getName() const
virtual QVariant getFont() const
virtual bool useColoredName() const
virtual ~ToolTreeNode()
virtual boost::shared_ptr< QWidget > createPropertiesWidget() const
virtual QString getUid() const
virtual QString getType() const
Namespace for all CustusX production code.
boost::shared_ptr< class Tool > ToolPtr