b472833fa5acfe4df9f06b678119c391ba96ac2b
[occt.git] / tools / DFBrowserPane / DFBrowserPane_HelperGroupContent.hxx
1 // Created on: 2017-06-16
2 // Created by: Natalia ERMOLAEVA
3 // Copyright (c) 2017 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement. 
15
16 #ifndef DFBrowserPane_HelperGroupContent_H
17 #define DFBrowserPane_HelperGroupContent_H
18
19 #include <Standard.hxx>
20 #include <Standard_Macro.hxx>
21
22 #ifdef _MSC_VER
23 #pragma warning(disable : 4127) // conditional expression is constant
24 #endif
25 #include <QGroupBox>
26
27 class QWidget;
28
29 //! \class DFBrowserPane_HelperGroupContent
30 //! \brief Creates a check group box for the given control. If checked, the control is enabled,
31 //! otherwise it sets it as disabled
32 class DFBrowserPane_HelperGroupContent : public QGroupBox
33 {
34 Q_OBJECT
35 public:
36
37   //! Constructor
38   Standard_EXPORT DFBrowserPane_HelperGroupContent (const QString& theTitle, QWidget* theParent, QWidget* theControl);
39
40   //! Destructor
41   virtual ~DFBrowserPane_HelperGroupContent() Standard_OVERRIDE {}
42
43 protected slots:
44   //! Set enable/disable current control depending on check box state
45   //! \param theState state of the check box
46   void onChecked (bool theState);
47
48 private:
49
50   QWidget* myControl; //!< the source control, that will be enabled/disabled
51 };
52
53 #endif