Salome HOME
mergefrom branch BR_V511_PR tag mergeto_trunk_03feb09
[modules/yacs.git] / src / pyqt / gui / imagesxpm.py
1 #  Copyright (C) 2006-2008  CEA/DEN, 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 IconNew = [
20     "20 18 14 1",
21     ". c None",
22     "# c #000000",
23     "a c #303030",
24     "l c #400000",
25     "e c #585858",
26     "g c #a0a0a0",
27     "i c #c0c000",
28     "j c #c1c10a",
29     "c c #c3c3c3",
30     "b c #dcdcdc",
31     "f c #ffff00",
32     "k c #ffff85",
33     "h c #ffffc0",
34     "d c #ffffff",
35     "....................",
36     "......##a###a##.....",
37     "......abbbbbcac#....",
38     "......#bdddddedb#...",
39     "......#bdddddebdc#..",
40     "......#bdddddeeea#..",
41     ".....afbddddddbcg#..",
42     "..af.afbafddddhdb#..",
43     "...afififdddddddd#..",
44     "....jhkhiaadhdhdh#..",
45     "..fffkdkfffddddhd#..",
46     "..a.ihkhidhdhdhdh#..",
47     "...afififddddhdhd#..",
48     "..af.afbafhdhdhdh#..",
49     ".....afbdddhdhdhh#..",
50     "......#bhdhdhdhhh#..",
51     "......######l##a##..",
52     "....................",
53 ]
54
55
56 IconFilePython = [
57     "16 16 34 1",
58     ". c None",
59     "w c #000000",
60     "g c #0000ff",
61     "t c #003f00",
62     "q c #007f00",
63     "s c #00bf00",
64     "p c #00ff00",
65     "j c #202000",
66     "r c #205f00",
67     "B c #209f00",
68     "o c #20df00",
69     "h c #373737",
70     "u c #377637",
71     "y c #3f0000",
72     "d c #3f3f00",
73     "z c #3fbf00",
74     "a c #404000",
75     "m c #407f00",
76     "v c #40bf00",
77     "# c #575737",
78     "i c #5f5f00",
79     "e c #606000",
80     "n c #609f00",
81     "b c #6e6e6e",
82     "E c #777737",
83     "c c #7f7f00",
84     "f c #7f7f7f",
85     "l c #808000",
86     "A c #8e8e6e",
87     "k c #a5a5a5",
88     "D c #b63737",
89     "x c #bf0000",
90     "F c #e4a5a5",
91     "C c #ed6e6e",
92     "...##a#.........",
93     "..bcdceb........",
94     "..bfcgab........",
95     "..hcicejbk......",
96     "kalllllmee#.....",
97     "aeellnopqllb....",
98     "rnnnostoqlla....",
99     "uooottvtvvla....",
100     ".wxyroubonl#....",
101     ".xzoqbABnlek....",
102     "CDbbkEpnlek....k",
103     ".F.#mollehk.bkkj",
104     "..ksplleele#leea",
105     "..bvolllllllemmk",
106     "..kBvovmBvvakkk.",
107     "...kqrukkbb....."
108 ]
109
110 dico_xpm={"python":IconFilePython,
111           "new":IconNew,
112 }