0
|
1 |
/****************************************************************************
|
|
2 |
**
|
|
3 |
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
4 |
** All rights reserved.
|
|
5 |
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
6 |
**
|
|
7 |
** This file is part of the QtGui module of the Qt Toolkit.
|
|
8 |
**
|
|
9 |
** $QT_BEGIN_LICENSE:LGPL$
|
|
10 |
** No Commercial Usage
|
|
11 |
** This file contains pre-release code and may not be distributed.
|
|
12 |
** You may use this file in accordance with the terms and conditions
|
|
13 |
** contained in the Technology Preview License Agreement accompanying
|
|
14 |
** this package.
|
|
15 |
**
|
|
16 |
** GNU Lesser General Public License Usage
|
|
17 |
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
18 |
** General Public License version 2.1 as published by the Free Software
|
|
19 |
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
20 |
** packaging of this file. Please review the following information to
|
|
21 |
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
22 |
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
23 |
**
|
|
24 |
** In addition, as a special exception, Nokia gives you certain additional
|
|
25 |
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
26 |
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
27 |
**
|
|
28 |
** If you have questions regarding the use of this file, please contact
|
|
29 |
** Nokia at qt-info@nokia.com.
|
|
30 |
**
|
|
31 |
**
|
|
32 |
**
|
|
33 |
**
|
|
34 |
**
|
|
35 |
**
|
|
36 |
**
|
|
37 |
**
|
|
38 |
** $QT_END_LICENSE$
|
|
39 |
**
|
|
40 |
****************************************************************************/
|
|
41 |
|
|
42 |
#ifndef QT_NO_IMAGEFORMAT_XPM
|
|
43 |
|
|
44 |
//
|
|
45 |
// W A R N I N G
|
|
46 |
// -------------
|
|
47 |
//
|
|
48 |
// This file is not part of the Qt API. It exists purely as an
|
|
49 |
// implementation detail. This header file may change from version to
|
|
50 |
// version without notice, or even be removed.
|
|
51 |
//
|
|
52 |
// We mean it.
|
|
53 |
//
|
|
54 |
|
|
55 |
static const char * const check_list_controller_xpm[] = {
|
|
56 |
"16 16 4 1",
|
|
57 |
" c None",
|
|
58 |
". c #000000000000",
|
|
59 |
"X c #FFFFFFFF0000",
|
|
60 |
"o c #C71BC30BC71B",
|
|
61 |
" ",
|
|
62 |
" ",
|
|
63 |
" .......... ",
|
|
64 |
" .XXXXXXXX. ",
|
|
65 |
" .XXXXXXXX.oo ",
|
|
66 |
" .XXXXXXXX.oo ",
|
|
67 |
" .XXXXXXXX.oo ",
|
|
68 |
" .XXXXXXXX.oo ",
|
|
69 |
" .XXXXXXXX.oo ",
|
|
70 |
" .XXXXXXXX.oo ",
|
|
71 |
" .XXXXXXXX.oo ",
|
|
72 |
" ..........oo ",
|
|
73 |
" oooooooooo ",
|
|
74 |
" oooooooooo ",
|
|
75 |
" ",
|
|
76 |
" "};
|
|
77 |
|
|
78 |
static const char * const tree_branch_open_xpm[] = {
|
|
79 |
"9 9 2 1",
|
|
80 |
" c None",
|
|
81 |
"# c #000000",
|
|
82 |
"#########",
|
|
83 |
"# #",
|
|
84 |
"# ##### #",
|
|
85 |
"# ### #",
|
|
86 |
"# ### #",
|
|
87 |
"# # #",
|
|
88 |
"# # #",
|
|
89 |
"# #",
|
|
90 |
"#########"};
|
|
91 |
|
|
92 |
static const char * const tree_branch_closed_xpm[] = {
|
|
93 |
"9 9 2 1",
|
|
94 |
" c None",
|
|
95 |
"# c #000000",
|
|
96 |
"#########",
|
|
97 |
"# #",
|
|
98 |
"# # #",
|
|
99 |
"# ### #",
|
|
100 |
"# ##### #",
|
|
101 |
"# ### #",
|
|
102 |
"# # #",
|
|
103 |
"# #",
|
|
104 |
"#########"};
|
|
105 |
|
|
106 |
static const char * const tb_extension_arrow_v_xpm[] = {
|
|
107 |
"5 8 3 1",
|
|
108 |
" c None",
|
|
109 |
". c #000000",
|
|
110 |
"+ c none",
|
|
111 |
".+++.",
|
|
112 |
"..+..",
|
|
113 |
"+...+",
|
|
114 |
"++.++",
|
|
115 |
".+++.",
|
|
116 |
"..+..",
|
|
117 |
"+...+",
|
|
118 |
"++.++"
|
|
119 |
};
|
|
120 |
|
|
121 |
static const char * const tb_extension_arrow_h_xpm[] = {
|
|
122 |
"8 5 3 1",
|
|
123 |
" c None",
|
|
124 |
". c #000000",
|
|
125 |
"+ c none",
|
|
126 |
"..++..++",
|
|
127 |
"+..++..+",
|
|
128 |
"++..++..",
|
|
129 |
"+..++..+",
|
|
130 |
"..++..++",
|
|
131 |
};
|
|
132 |
|
|
133 |
static const char * const filedialog_start_xpm[]={
|
|
134 |
"16 15 8 1",
|
|
135 |
"a c #cec6bd",
|
|
136 |
"# c #000000",
|
|
137 |
"e c #ffff00",
|
|
138 |
"b c #999999",
|
|
139 |
"f c #cccccc",
|
|
140 |
"d c #dcdcdc",
|
|
141 |
"c c #ffffff",
|
|
142 |
". c None",
|
|
143 |
".....######aaaaa",
|
|
144 |
"...bb#cccc##aaaa",
|
|
145 |
"..bcc#cccc#d#aaa",
|
|
146 |
".bcef#cccc#dd#aa",
|
|
147 |
".bcfe#cccc#####a",
|
|
148 |
".bcef#ccccccccc#",
|
|
149 |
"bbbbbbbbbbbbccc#",
|
|
150 |
"bccccccccccbbcc#",
|
|
151 |
"bcefefefefee#bc#",
|
|
152 |
".bcefefefefef#c#",
|
|
153 |
".bcfefefefefe#c#",
|
|
154 |
"..bcfefefefeeb##",
|
|
155 |
"..bbbbbbbbbbbbb#",
|
|
156 |
"...#############",
|
|
157 |
"................"};
|
|
158 |
|
|
159 |
static const char * const filedialog_end_xpm[]={
|
|
160 |
"16 15 9 1",
|
|
161 |
"d c #a0a0a0",
|
|
162 |
"c c #c3c3c3",
|
|
163 |
"# c #cec6bd",
|
|
164 |
". c #000000",
|
|
165 |
"f c #ffff00",
|
|
166 |
"e c #999999",
|
|
167 |
"g c #cccccc",
|
|
168 |
"b c #ffffff",
|
|
169 |
"a c None",
|
|
170 |
"......####aaaaaa",
|
|
171 |
".bbbb..###aaaaaa",
|
|
172 |
".bbbb.c.##aaaaaa",
|
|
173 |
".bbbb....ddeeeea",
|
|
174 |
".bbbbbbb.bbbbbe.",
|
|
175 |
".bbbbbbb.bcfgfe.",
|
|
176 |
"eeeeeeeeeeeeefe.",
|
|
177 |
"ebbbbbbbbbbeege.",
|
|
178 |
"ebfgfgfgfgff.ee.",
|
|
179 |
"aebfgfgfgfgfg.e.",
|
|
180 |
"aebgfgfgfgfgf.e.",
|
|
181 |
"aaebgfgfgfgffe..",
|
|
182 |
"aaeeeeeeeeeeeee.",
|
|
183 |
"aaa.............",
|
|
184 |
"aaaaaaaaaaaaaaaa"};
|
|
185 |
|
|
186 |
#endif // QT_NO_IMAGEFORMAT_XPM
|