]> Creatis software - clitk.git/blob - vv/vvToolFoo.cxx
removed headers
[clitk.git] / vv / vvToolFoo.cxx
1 #include "vvToolFoo.h"
2
3 //------------------------------------------------------------------------------
4 // Create the tool and automagically (I like this word) insert it in
5 // the main window menu.
6 ADD_TOOL(vvToolFoo);
7 //------------------------------------------------------------------------------
8
9 //------------------------------------------------------------------------------
10 vvToolFoo::vvToolFoo(vvMainWindowBase * parent, Qt::WindowFlags f)
11   :QDialog(parent), 
12    vvToolBase<vvToolFoo>(parent), 
13    Ui::vvToolFoo() {
14   // Setup the UI
15   Ui_vvToolFoo::setupUi(this);
16 }
17 //------------------------------------------------------------------------------
18
19
20 //------------------------------------------------------------------------------
21 vvToolFoo::~vvToolFoo() {
22 }
23 //------------------------------------------------------------------------------
24
25
26 //------------------------------------------------------------------------------
27 void vvToolFoo::Initialize() {
28   SetToolName("Foo");
29   SetToolMenuName("Foo");
30   SetToolIconFilename(":/new/prefix1/icons/ducky.png");
31   SetToolTip("Make 'foo' on an image.");
32 }
33 //------------------------------------------------------------------------------
34
35
36