Salome HOME
e61320c940811f07e4fbb859912732582ea37ab4
[modules/gui.git] / src / OCCViewer / OCCViewer_FontWidget.cxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include "OCCViewer_FontWidget.h"
24
25 #include <QComboBox>
26
27 //#include <vtkTextProperty.h>
28
29 /*!
30  * Class       : OCCViewer_FontWidget
31  * Description : Dialog for specifynig font
32  */
33
34 /*!
35   Constructor
36 */
37 OCCViewer_FontWidget::OCCViewer_FontWidget( QWidget* theParent )
38 : ViewerTools_FontWidgetBase( theParent )
39 {
40 }
41
42 /*!
43   Destructor
44 */
45 OCCViewer_FontWidget::~OCCViewer_FontWidget()
46 {
47 }
48
49 void OCCViewer_FontWidget::InitializeFamilies()
50 {
51   //myFamily->insertItem( myFamily->count(), tr( "ARIAL" ) );
52   //myFamily->insertItem( myFamily->count(), tr( "COURIER" ) );
53   //myFamily->insertItem( myFamily->count(), tr( "TIMES" ) );
54 }
55
56 void OCCViewer_FontWidget::SetData( const QColor& theColor,
57                                     const int theFamily,
58                                     const bool theBold,
59                                     const bool theItalic,
60                                     const bool theShadow )
61 {
62   ViewerTools_FontWidgetBase::SetData( theColor,
63                                        theFamily,
64                                        theBold,
65                                        theItalic,
66                                        theShadow );
67
68   /*
69   if ( theFamily == VTK_ARIAL )
70     myFamily->setCurrentIndex( 0 );
71   else if ( theFamily == VTK_COURIER )
72     myFamily->setCurrentIndex( 1 );
73   else
74     myFamily->setCurrentIndex( 2 );
75   */
76 }
77
78 void OCCViewer_FontWidget::GetData( QColor& theColor,
79                                     int& theFamily,
80                                     bool& theBold,
81                                     bool& theItalic,
82                                     bool& theShadow ) const
83 {
84   ViewerTools_FontWidgetBase::GetData( theColor,
85                                        theFamily,
86                                        theBold,
87                                        theItalic,
88                                        theShadow );
89
90   /*
91   int anItem = myFamily->currentIndex();
92   if ( anItem == 0 )
93     theFamily = VTK_ARIAL;
94   else if ( anItem == 1 )
95     theFamily = VTK_COURIER;
96   else
97     theFamily = VTK_TIMES;
98   */
99 }