Salome HOME
sauve du 20/12
[tools/eficas.git] / Editeur / basestyle.py
1 # Copyright (C) 2007-2013   EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19 class STYLE:
20     background='gray90'
21     foreground='black'
22     entry_background='white'
23     list_background='white'
24     list_select_background='#00008b'
25     list_select_foreground='grey'
26     tooltip_background="yellow"
27
28     standard = ("Helvetica",12)
29     standard_italique = ("Helvetica",12,'italic')
30     standard_gras = ("Helvetica",12,'bold')
31     standard_gras_souligne = ("Helvetica",12,'bold','underline')
32
33     canvas = ('Helvetica',10)
34     canvas_italique = ('Helvetica',10,'italic')
35     canvas_gras = ("Helvetica",10,'bold')
36     canvas_gras_italique = ("Helvetica",12,'bold','italic')
37
38     standard12 = ("Helvetica",14)
39     standard12_gras = ("Helvetica",14,'bold')
40     standard12_gras_italique = ( "Helvetica",14,'bold','italic')
41
42     standardcourier10 = ("Courier",14)
43     statusfont = ("Helvetica",16)
44
45 style=STYLE()