~profzoom/ubuntu/quantal/wmaker/bug-1079925

« back to all changes in this revision

Viewing changes to src/def_pixmaps.h

  • Committer: Bazaar Package Importer
  • Author(s): Marcelo E. Magallon
  • Date: 2004-11-10 14:05:30 UTC
  • Revision ID: james.westby@ubuntu.com-20041110140530-qpd66b5lm38x7apk
Tags: upstream-0.91.0
ImportĀ upstreamĀ versionĀ 0.91.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* diamond mark */
 
2
#define MENU_RADIO_INDICATOR_XBM_SIZE 9
 
3
static unsigned char MENU_RADIO_INDICATOR_XBM_DATA[] = {
 
4
    0x10, 0x00, 0x38, 0x00, 0x7c, 0x00, 0xee, 0x00, 0xc7, 0x01, 0xee, 0x00,
 
5
    0x7c, 0x00, 0x38, 0x00, 0x10, 0x00};
 
6
 
 
7
/* check mark */
 
8
#define MENU_CHECK_INDICATOR_XBM_SIZE 9
 
9
static unsigned char MENU_CHECK_INDICATOR_XBM_DATA[] = {
 
10
    0x00, 0x01, 0x83, 0x01, 0xc3, 0x00, 0x63, 0x00, 0x33, 0x00, 0x1b, 0x00,
 
11
    0x0f, 0x00, 0x07, 0x00, 0x03, 0x00};
 
12
 
 
13
#define MENU_MINI_INDICATOR_XBM_SIZE 9
 
14
static unsigned char MENU_MINI_INDICATOR_XBM_DATA[] = {
 
15
    0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
 
16
    0x01, 0x01, 0x01, 0x01, 0xff, 0x01};
 
17
 
 
18
#define MENU_HIDE_INDICATOR_XBM_SIZE 9
 
19
static unsigned char MENU_HIDE_INDICATOR_XBM_DATA[] = {
 
20
    0x99, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x01, 0x00,
 
21
    0x00, 0x00, 0x00, 0x01, 0x33, 0x01};
 
22
 
 
23
#define MENU_SHADE_INDICATOR_XBM_SIZE 9
 
24
static unsigned char MENU_SHADE_INDICATOR_XBM_DATA[] = {
 
25
    0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
 
26
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
 
27
 
 
28
 
 
29
 
 
30
/* button pixmaps */
 
31
/* the first one is for normal state, the second is for when
 
32
 * the button is pushed */
 
33
static char *PRED_CLOSE_XPM[] = {
 
34
    "10 10 3 1",
 
35
    "   c #000000",
 
36
    ".  c #616561",
 
37
    "X  c None",
 
38
    " .XXXXXX. ",
 
39
    ". .XXXX. .",
 
40
    "X. .XX. .X",
 
41
    "XX. .. .XX",
 
42
    "XXX.  .XXX",
 
43
    "XXX.  .XXX",
 
44
    "XX. .. .XX",
 
45
    "X. .XX. .X",
 
46
    ". .XXXX. .",
 
47
    " .XXXXXX. "};
 
48
 
 
49
 
 
50
static char *PRED_BROKEN_CLOSE_XPM[] = {
 
51
    "10 10 3 1",
 
52
    "   c #000000",
 
53
    ".  c #616561",
 
54
    "X  c None",
 
55
    " .XXXXXX. ",
 
56
    ". .XXXX. .",
 
57
    "X. XXXX .X",
 
58
    "XXXXXXXXXX",
 
59
    "XXXXXXXXXX",
 
60
    "XXXXXXXXXX",
 
61
    "XXXXXXXXXX",
 
62
    "X. XXXX .X",
 
63
    ". .XXXX. .",
 
64
    " .XXXXXX. "};
 
65
 
 
66
 
 
67
static char *PRED_KILL_XPM[] = {
 
68
    "10 10 3 1",
 
69
    "   c #000000",
 
70
    ".  c #616561",
 
71
    "X  c None",
 
72
    " .XXXXXX. ",
 
73
    ". XXXXXX .",
 
74
    "XXXXXXXXXX",
 
75
    "XXX .. XXX",
 
76
    "XXX.  .XXX",
 
77
    "XXX.  .XXX",
 
78
    "XXX .. XXX",
 
79
    "XXXXXXXXXX",
 
80
    ". XXXXXX .",
 
81
    " .XXXXXX. "};
 
82
 
 
83
 
 
84
static char *PRED_ICONIFY_XPM[] = {
 
85
    "    10    10        2            1",
 
86
    ". c #000000",
 
87
    "# c None",
 
88
    "..........",
 
89
    "..........",
 
90
    "..........",
 
91
    ".########.",
 
92
    ".########.",
 
93
    ".########.",
 
94
    ".########.",
 
95
    ".########.",
 
96
    ".########.",
 
97
    ".........."
 
98
};
 
99
 
 
100
#ifdef XKB_BUTTON_HINT
 
101
#include "extend_pixmaps.h"
 
102
#endif /* XKB_BUTTON_HINT */
 
103
 
 
104