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