summaryrefslogtreecommitdiff
path: root/noncore/styles/phase/bitmaps.h
blob: 28bc1dbc953552f8abbedf427f089ec220eb536a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//////////////////////////////////////////////////////////////////////////////
// bitmaps.h
// -------------------
// Bitmaps for Phase
// -------------------
// Copyright (c) 2004 David Johnson
// Please see the phasestyle.h file for copyright and license information.
//////////////////////////////////////////////////////////////////////////////

// Note: the "light" bits are drawn with midlight color

// Arrows (6x6)

#include <qbitmap.h>

static QBitmap uarrow;
static unsigned char uarrow_bits[] = {
    0x00, 0x0c, 0x1e, 0x3f, 0x3f, 0x00};

static QBitmap darrow;
static unsigned char darrow_bits[] = {
    0x00, 0x3f, 0x3f, 0x1e, 0x0c, 0x00};

static QBitmap larrow;
static unsigned char larrow_bits[] = {
    0x18, 0x1c, 0x1e, 0x1e, 0x1c, 0x18};

static QBitmap rarrow;
static unsigned char rarrow_bits[] = {
    0x06, 0x0e, 0x1e, 0x1e, 0x0e, 0x06};

// plus/minus "arrows"

static QBitmap bplus;
static unsigned char bplus_bits[] = {
    0x0c, 0x0c, 0x3f, 0x3f, 0x0c, 0x0c};

static QBitmap bminus;
static unsigned char bminus_bits[] = {
    0x00, 0x00, 0x3f, 0x3f, 0x00, 0x00};

// checkmark (9x9)

static QBitmap bcheck;
static unsigned char bcheck_bits[] = {
    0x00, 0x00, 0x80, 0x01, 0xc0, 0x01, 0xe0, 0x00, 0x73, 0x00, 0x3f, 0x00,
    0x1e, 0x00, 0x0c, 0x00, 0x00, 0x00};

// expander arrows (9x9)

static QBitmap dexpand;
static unsigned char dexpand_bits[] = {
    0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x38, 0x00,
    0x10, 0x00, 0x00, 0x00, 0x00, 0x00};

static QBitmap rexpand;
static unsigned char rexpand_bits[] = {
    0x04, 0x00, 0x0c, 0x00, 0x1c, 0x00, 0x3c, 0x00, 0x7c, 0x00, 0x3c, 0x00,
    0x1c, 0x00, 0x0c, 0x00, 0x04, 0x00};

// scrollbar doodads (4x4)

static QBitmap doodad_mid;
static unsigned char doodad_mid_bits[] = {
    0x07, 0x01, 0x01, 0x00};

static QBitmap doodad_light;
static unsigned char doodad_light_bits[] = {
    0x00, 0x08, 0x08, 0x0e};