-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
91c98e3
commit 6e8a2d2
Showing
10 changed files
with
83 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#define close_width 8 | ||
#define close_height 8 | ||
static unsigned char close_bits[] = { | ||
0xc3, 0xe7, 0x7e, 0x3c, 0x3c, 0x7e, 0xe7, 0xc3 }; | ||
#define close_width 10 | ||
#define close_height 10 | ||
static char close_bits[] = { | ||
0x7C, 0x00, 0xFE, 0x00, 0xFF, 0x01, 0xFF, 0x01, 0xFF, 0x01, 0xFF, 0x01, | ||
0xFF, 0x01, 0xFE, 0x00, 0x7C, 0x00, 0x00, 0x00, }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#define desk_toggled_width 8 | ||
#define desk_toggled_height 8 | ||
static unsigned char desk_toggled_bits[] = { | ||
0xe7, 0xe7, 0xe7, 0x00, 0x00, 0xe7, 0xe7, 0xe7 }; | ||
#define desk_width 10 | ||
#define desk_height 10 | ||
static char desk_bits[] = { | ||
0x7C, 0x00, 0xFE, 0x00, 0xFF, 0x01, 0xFF, 0x01, 0xFF, 0x01, 0xFF, 0x01, | ||
0xFF, 0x01, 0xFE, 0x00, 0x7C, 0x00, 0x00, 0x00, }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#define desk_width 8 | ||
#define desk_height 8 | ||
static unsigned char desk_bits[] = { | ||
0x04, 0x0e, 0x3f, 0x1e, 0x1c, 0x24, 0x40, 0x80 }; | ||
#define desk_toggled_width 10 | ||
#define desk_toggled_height 10 | ||
static char desk_toggled_bits[] = { | ||
0x7C, 0x00, 0xFE, 0x00, 0xFF, 0x01, 0xFF, 0x01, 0xFF, 0x01, 0xFF, 0x01, | ||
0xFF, 0x01, 0xFE, 0x00, 0x7C, 0x00, 0x00, 0x00, }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#define iconify_width 8 | ||
#define iconify_height 8 | ||
static unsigned char iconify_bits[] = { | ||
0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00 }; | ||
#define iconify_width 10 | ||
#define iconify_height 10 | ||
static char iconify_bits[] = { | ||
0x7C, 0x00, 0xFE, 0x00, 0xFF, 0x01, 0xFF, 0x01, 0xFF, 0x01, 0xFF, 0x01, | ||
0xFF, 0x01, 0xFE, 0x00, 0x7C, 0x00, 0x00, 0x00, }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#define titlebutton_max_2_width 8 | ||
#define titlebutton_max_2_height 8 | ||
static unsigned char titlebutton_max_2_bits[] = { | ||
0xf8, 0xf0, 0xe0, 0xc1, 0x83, 0x07, 0x0f, 0x1f }; | ||
#define max_width 10 | ||
#define max_height 10 | ||
static char max_bits[] = { | ||
0x7C, 0x00, 0xFE, 0x00, 0xFF, 0x01, 0xFF, 0x01, 0xFF, 0x01, 0xFF, 0x01, | ||
0xFF, 0x01, 0xFE, 0x00, 0x7C, 0x00, 0x00, 0x00, }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#define titlebutton_max_2_width 8 | ||
#define titlebutton_max_2_height 8 | ||
static unsigned char titlebutton_max_2_bits[] = { | ||
0xf8, 0xf0, 0xe0, 0xc1, 0x83, 0x07, 0x0f, 0x1f }; | ||
#define max_toggled_width 10 | ||
#define max_toggled_height 10 | ||
static char max_toggled_bits[] = { | ||
0x7C, 0x00, 0xFE, 0x00, 0xFF, 0x01, 0xFF, 0x01, 0xFF, 0x01, 0xFF, 0x01, | ||
0xFF, 0x01, 0xFE, 0x00, 0x7C, 0x00, 0x00, 0x00, }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#define shade_width 8 | ||
#define shade_height 8 | ||
static unsigned char shade_bits[] = { | ||
0x18, 0x3c, 0x7e, 0xff, 0xdb, 0x18, 0x18, 0x18 }; | ||
#define shade_width 10 | ||
#define shade_height 10 | ||
static char shade_bits[] = { | ||
0x7C, 0x00, 0xFE, 0x00, 0xFF, 0x01, 0xFF, 0x01, 0xFF, 0x01, 0xFF, 0x01, | ||
0xFF, 0x01, 0xFE, 0x00, 0x7C, 0x00, 0x00, 0x00, }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#define shade_toggled_width 8 | ||
#define shade_toggled_height 8 | ||
static unsigned char shade_toggled_bits[] = { | ||
0x18, 0x18, 0x18, 0xdb, 0xff, 0x7e, 0x3c, 0x18 }; | ||
static char shade_toggled_bits[] = { | ||
0x18, 0x18, 0x18, 0xDB, 0xFF, 0x7E, 0x3C, 0x18, }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters