Slicer  4.8
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
qSlicerStyle.h
Go to the documentation of this file.
1 /*==============================================================================
2 
3  Program: 3D Slicer
4 
5  Copyright (c) Kitware Inc.
6 
7  See COPYRIGHT.txt
8  or http://www.slicer.org/copyright/copyright.txt for details.
9 
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15 
16  This file was originally developed by Julien Finet, Kitware Inc.
17  and was partially funded by NIH grant 3P41RR013218-12S1
18 
19 ==============================================================================*/
20 
21 #ifndef __qSlicerStyle_h
22 #define __qSlicerStyle_h
23 
24 // Qt includes
25 //#include <QProxyStyle>
26 
27 // CTK includes
28 #include <ctkProxyStyle.h>
29 
30 // Slicer includes
31 #include "qSlicerBaseQTGUIExport.h"
32 
33 class Q_SLICER_BASE_QTGUI_EXPORT qSlicerStyle : public ctkProxyStyle
34 {
35  Q_OBJECT
36 public:
38  typedef ctkProxyStyle Superclass;
39 
41  qSlicerStyle();
42  virtual ~qSlicerStyle();
43 
44  virtual SubControl hitTestComplexControl(ComplexControl cc, const QStyleOptionComplex *opt,
45  const QPoint &pt, const QWidget *widget) const;
46 
47  virtual int pixelMetric(PixelMetric metric, const QStyleOption * option = 0,
48  const QWidget * widget = 0)const;
49 
50  virtual QRect subControlRect(ComplexControl control, const QStyleOptionComplex *option,
51  SubControl subControl, const QWidget *widget) const;
52  virtual QPalette standardPalette()const;
53  virtual int styleHint(StyleHint hint, const QStyleOption *opt, const QWidget *widget,
54  QStyleHintReturn *returnData) const;
55 
61  virtual bool eventFilter(QObject* obj, QEvent* event);
62 };
63 
64 #endif
65 
ctkProxyStyle Superclass
Superclass typedef.
Definition: qSlicerStyle.h:38