annotate src/bitmaps/cntrptr.xbm @ 76138:f89ec8cbd4d9
(The spreadsheet): Renamed from "Table calculations".
Completely reorganized and rewritten.
(CamelCase links): Section removed.
(Repeating items): New section.
(Tracking TODO state changes): New section.
(Agenda views): Chapter reorganized and rewritten.
(HTML export): Section rewritten.
(Tables in arbitrary syntax): New section.
(Summary): Better feature summary.
(Activation): Document problem with cut-and-paste of Lisp code
from PDF files.
(Visibility cycling): Document indirect buffer use.
(Structure editing): Document sorting.
(Remember): Section rewritten.
(Time stamps): Better description of time stamp types.
(Tag searches): DOcument regular expression search for tags.
(Stuck projects): New section.
(In-buffer settings): New keywods.
(History and Acknowledgments): Updated description.
author |
Carsten Dominik <dominik@science.uva.nl> |
date |
Sun, 25 Feb 2007 06:40:58 +0000 |
parents |
8f14d08e19f7 |
children |
|
rev |
line source |
25830
|
1 #define cntr_ptr_width 16
|
|
2 #define cntr_ptr_height 16
|
|
3 #define cntr_ptr_x_hot 7
|
|
4 #define cntr_ptr_y_hot 1
|
|
5 static unsigned char cntr_ptr_bits[] = {
|
|
6 0x00, 0x00, 0x80, 0x01, 0x80, 0x01, 0xc0, 0x03, 0xc0, 0x03, 0xe0, 0x07,
|
|
7 0xe0, 0x07, 0xf0, 0x0f, 0xf0, 0x0f, 0x98, 0x19, 0x88, 0x11, 0x80, 0x01,
|
|
8 0x80, 0x01, 0x80, 0x01, 0x80, 0x01, 0x00, 0x00};
|