]> Creatis software - bbtk.git/blob - packages/qt/src/bbqtSlider.h
*** empty log message ***
[bbtk.git] / packages / qt / src / bbqtSlider.h
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbqtSlider.h,v $
4   Language:  C++
5   Date:      $Date: 2009/04/08 08:36:00 $
6   Version:   $Revision: 1.1 $
7 =========================================================================*/
8
9 /* ---------------------------------------------------------------------
10
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
13 *
14 *  This software is governed by the CeCILL-B license under French law and 
15 *  abiding by the rules of distribution of free software. You can  use, 
16 *  modify and/ or redistribute the software under the terms of the CeCILL-B 
17 *  license as circulated by CEA, CNRS and INRIA at the following URL 
18 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
19 *  or in the file LICENSE.txt.
20 *
21 *  As a counterpart to the access to the source code and  rights to copy,
22 *  modify and redistribute granted by the license, users are provided only
23 *  with a limited warranty  and the software's author,  the holder of the
24 *  economic rights,  and the successive licensors  have only  limited
25 *  liability. 
26 *
27 *  The fact that you are presently reading this means that you have had
28 *  knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */                                                                         
30
31 /**
32  * \file 
33  * \brief Short description in one line
34  * 
35  * Long description which 
36  * can span multiple lines
37 */
38
39 /**
40  * \class bbqt::Slider
41  * \brief 
42
43  * \class bbqt::SliderWidget
44  * \brief 
45  */
46
47 #ifdef USE_QT
48
49 // Prevents multiple inclusions : use symbols of the form
50 // __FILENAME_INCLUDED__ 
51 // where FILENAME must be replaced by the actual file name
52 #ifndef __bbqtSlider_h_INCLUDED__
53 #define __bbqtSlider_h_INCLUDED__
54
55 // Include qtBlackBox definition
56 #include "bbtkQtBlackBox.h"
57
58 #include "bbqt_EXPORT.h"
59
60 #include <QSlider>
61
62 // Namespace of the package "qt" is "bbqt" 
63 // Namespace associated to packages should be of the form :
64 // bbPACKAGENAME
65 namespace bbqt
66 {
67   
68    
69
70   
71   //------------------------------------------------------------------------
72   // The black box
73   class bbqt_EXPORT Slider : public QObject,
74                              public bbtk::QtBlackBox
75   {
76     Q_OBJECT
77     
78     BBTK_BLACK_BOX_INTERFACE(Slider,bbtk::QtBlackBox);
79     BBTK_DECLARE_INPUT(In,int);
80     BBTK_DECLARE_INPUT(Min,int);
81     BBTK_DECLARE_INPUT(Max,int);
82     BBTK_DECLARE_INPUT(Label,bool);
83     BBTK_DECLARE_INPUT(Title,std::string); 
84     BBTK_DECLARE_INPUT(Orientation,std::string);
85     BBTK_DECLARE_INPUT(ChangeResolution,bool);
86     BBTK_DECLARE_INPUT(ReactiveOnTrack,bool);    
87     BBTK_DECLARE_OUTPUT(Out,int);
88     BBTK_PROCESS(Process);
89     BBTK_CREATE_WIDGET(CreateWidget);
90     void Process();
91     void CreateWidget(QWidget*);
92
93   public slots:
94     void OnValueChanged(int);
95
96
97   protected:
98     virtual void bbUserConstructor();
99
100     //   QSlider* mSlider;
101   };
102   //=================================================================
103  
104   //=================================================================
105   // the black box description
106   BBTK_BEGIN_DESCRIBE_BLACK_BOX(Slider,bbtk::QtBlackBox);
107   BBTK_NAME("QSlider");
108   BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
109   // Already inserted for any QtBlackBox  BBTK_CATEGORY("widget");
110   BBTK_DESCRIPTION("Slider widget (QSlider)");
111   BBTK_INPUT(Slider,In,"Initial position of the slider (default 0)",int,"");
112   BBTK_INPUT(Slider,Min,"Minimum value of the slider (default 0)",int,"");
113   BBTK_INPUT(Slider,Max,"Maximum value of the slider (default 500)",int,"");
114   BBTK_INPUT(Slider,Label,"Show slider labels ? (default FALSE) ",bool,"");
115   BBTK_INPUT(Slider,Title,"Title shown above the slider (default '') ", std::string,"");
116   BBTK_INPUT(Slider,Orientation, "Orientation : (default H)  0=H=HORIZONTAL, 1=V=VERTICAL ",std::string,"");
117   BBTK_INPUT(Slider,ChangeResolution, "Can the user change the resolution of the slider ? (default FALSE) ",bool,"");
118   BBTK_INPUT(Slider,ReactiveOnTrack, "Slider sends info when track moves (default : FALSE)",bool,"");  
119   BBTK_OUTPUT(Slider,Out,"Current position of the slider",int,"");
120   BBTK_END_DESCRIBE_BLACK_BOX(Slider);
121   //=================================================================
122   
123
124
125 } //namespace bbqt
126
127 #endif  //__bbtkqtSlider_h_INCLUDED__
128
129 #endif //USE_QT