Salome HOME
Copyright update 2022
[modules/gui.git] / src / SVTK / SVTK_FontWidget.h
index c06e1e459d036600f83ef78a4bfb3150d00d8c3c..7a91facc8a014c11bf8b78ee60b52ff3de4522d1 100644 (file)
@@ -1,45 +1,41 @@
-//  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+// Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
 //
-//  This library is free software; you can redistribute it and/or
-//  modify it under the terms of the GNU Lesser General Public
-//  License as published by the Free Software Foundation; either
-//  version 2.1 of the License.
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
 //
-//  This library is distributed in the hope that it will be useful,
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-//  Lesser General Public License for more details.
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
 //
-//  You should have received a copy of the GNU Lesser General Public
-//  License along with this library; if not, write to the Free Software
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
-//
-//  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
 //
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
 //  File   : 
 //  Author : Sergey LITONIN
 //  Module : 
-
-
+//
 #ifndef SVTK_FontWidget_H
 #define SVTK_FontWidget_H
 
-#include <qhbox.h>
-
-class QToolButton;
-class QComboBox;
-class QCheckBox;
-class QColor;
+#include "SVTK.h"
 
+#include <ViewerTools_FontWidgetBase.h>
 
 /*!
  * Class       : SVTK_FontWidget
  * Description : Dialog for specifynig font
  */
-class SVTK_FontWidget : public QHBox
+class SVTK_EXPORT SVTK_FontWidget : public ViewerTools_FontWidgetBase
 {
   Q_OBJECT
 
@@ -47,22 +43,12 @@ public:
                 SVTK_FontWidget( QWidget* );
   virtual       ~SVTK_FontWidget();
 
-  void          SetColor( const QColor& );
-  QColor        GetColor() const;
-
-  void          SetData( const QColor&, const int, const bool, const bool, const bool );
-
-  void          GetData( QColor&, int&, bool&, bool&, bool& ) const;
+  virtual void  SetData( const QColor&, const int, const bool, const bool, const bool );
 
-private slots:
-  void          onColor();
+  virtual void  GetData( QColor&, int&, bool&, bool&, bool& ) const;
 
-private:
-  QToolButton*  myColorBtn;
-  QComboBox*    myFamily;
-  QCheckBox*    myBold;
-  QCheckBox*    myItalic;
-  QCheckBox*    myShadow;
+protected:
+  virtual void  InitializeFamilies();
 };
 
 #endif