summaryrefslogtreecommitdiff
path: root/noncore/styles/phase/bitmaps.h
authorzecke <zecke>2004-08-02 18:37:26 (UTC)
committer zecke <zecke>2004-08-02 18:37:26 (UTC)
commit4d0a9fc4a21e7a7242e466f8eec1dc61d173800d (patch) (unidiff)
treef66b7c11f1325363fb4d426cc133802f9b8e59ab /noncore/styles/phase/bitmaps.h
parentdb991191fa216293191a0a8b0a2db18866b94dca (diff)
downloadopie-4d0a9fc4a21e7a7242e466f8eec1dc61d173800d.zip
opie-4d0a9fc4a21e7a7242e466f8eec1dc61d173800d.tar.gz
opie-4d0a9fc4a21e7a7242e466f8eec1dc61d173800d.tar.bz2
Initial revision
Diffstat (limited to 'noncore/styles/phase/bitmaps.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/styles/phase/bitmaps.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/noncore/styles/phase/bitmaps.h b/noncore/styles/phase/bitmaps.h
new file mode 100644
index 0000000..28bc1db
--- a/dev/null
+++ b/noncore/styles/phase/bitmaps.h
@@ -0,0 +1,70 @@
1//////////////////////////////////////////////////////////////////////////////
2// bitmaps.h
3// -------------------
4// Bitmaps for Phase
5// -------------------
6// Copyright (c) 2004 David Johnson
7// Please see the phasestyle.h file for copyright and license information.
8//////////////////////////////////////////////////////////////////////////////
9
10// Note: the "light" bits are drawn with midlight color
11
12// Arrows (6x6)
13
14#include <qbitmap.h>
15
16static QBitmap uarrow;
17static unsigned char uarrow_bits[] = {
18 0x00, 0x0c, 0x1e, 0x3f, 0x3f, 0x00};
19
20static QBitmap darrow;
21static unsigned char darrow_bits[] = {
22 0x00, 0x3f, 0x3f, 0x1e, 0x0c, 0x00};
23
24static QBitmap larrow;
25static unsigned char larrow_bits[] = {
26 0x18, 0x1c, 0x1e, 0x1e, 0x1c, 0x18};
27
28static QBitmap rarrow;
29static unsigned char rarrow_bits[] = {
30 0x06, 0x0e, 0x1e, 0x1e, 0x0e, 0x06};
31
32// plus/minus "arrows"
33
34static QBitmap bplus;
35static unsigned char bplus_bits[] = {
36 0x0c, 0x0c, 0x3f, 0x3f, 0x0c, 0x0c};
37
38static QBitmap bminus;
39static unsigned char bminus_bits[] = {
40 0x00, 0x00, 0x3f, 0x3f, 0x00, 0x00};
41
42// checkmark (9x9)
43
44static QBitmap bcheck;
45static unsigned char bcheck_bits[] = {
46 0x00, 0x00, 0x80, 0x01, 0xc0, 0x01, 0xe0, 0x00, 0x73, 0x00, 0x3f, 0x00,
47 0x1e, 0x00, 0x0c, 0x00, 0x00, 0x00};
48
49// expander arrows (9x9)
50
51static QBitmap dexpand;
52static unsigned char dexpand_bits[] = {
53 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x38, 0x00,
54 0x10, 0x00, 0x00, 0x00, 0x00, 0x00};
55
56static QBitmap rexpand;
57static unsigned char rexpand_bits[] = {
58 0x04, 0x00, 0x0c, 0x00, 0x1c, 0x00, 0x3c, 0x00, 0x7c, 0x00, 0x3c, 0x00,
59 0x1c, 0x00, 0x0c, 0x00, 0x04, 0x00};
60
61// scrollbar doodads (4x4)
62
63static QBitmap doodad_mid;
64static unsigned char doodad_mid_bits[] = {
65 0x07, 0x01, 0x01, 0x00};
66
67static QBitmap doodad_light;
68static unsigned char doodad_light_bits[] = {
69 0x00, 0x08, 0x08, 0x0e};
70