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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
/* This file is part of the KDE project
Copyright (C) 2006 The Karbon Developers
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "vcursor.h"
#include <tqbitmap.h>
static const char* const cminus[] = {
"16 16 6 1",
" c Gray0",
". c #939393",
"X c Gray63",
"o c #aeaeae",
"O c None",
"+ c Gray100",
"OOOOo XXoOOOO",
"OOo ++++ XoOOO",
"OO ++++++++ XoOO",
"Oo ++++++++ XXoO",
"O ++++++++++ XoO",
"O ++ ++ XoO",
"O ++ ++ XoO",
"O ++++++++++ XoO",
"Oo ++++++++ .oOO",
"OO ++++++++ .oOO",
"OOo ++++ .oOO",
"OOOOo O XoO",
"OOOOOOOOOOO Xo",
"OOOOOOOOOOOO X",
"OOOOOOOOOOOOO ",
"OOOOOOOOOOOOOO "
};
static const char* const cplus[] = {
"16 16 6 1",
" c Gray0",
". c #939393",
"X c Gray63",
"o c #aeaeae",
"O c None",
"+ c Gray100",
"OOOo XXoOOOOO",
"Oo ++++ XoOOOO",
"O ++++++++ XoOOO",
"o +++ +++ XXoOO",
" ++++ ++++ XoOO",
" ++ ++ XoOO",
" ++ ++ XoOO",
" ++++ ++++ XoOO",
"o +++ +++ .oOOO",
"O ++++++++ .oOOO",
"Oo ++++ .oOOO",
"OOOo O XoOO",
"OOOOOOOOOO XoO",
"OOOOOOOOOOO XO",
"OOOOOOOOOOOO O",
"OOOOOOOOOOOOO O"
};
TQCursor VCursor::createCursor( CursorType type )
{
switch( type )
{
case CrossHair:
return crossHair();
break;
case ZoomPlus:
return TQCursor( TQPixmap( ( const char**) cplus ), -1, -1 );
break;
case ZoomMinus:
return TQCursor( TQPixmap( ( const char**) cminus ), -1, -1 );
break;
case NeedleArrow:
return needleArrow();
break;
default: return TQCursor( TQt::arrowCursor );
}
}
TQCursor VCursor::createCursor( const char * bitmap[], const char * mask[], int hotX, int hotY )
{
// the cursor bitmap and mask
TQBitmap b, m;
b = TQPixmap( (const char**) bitmap );
m = TQPixmap( (const char**) mask );
return TQCursor( b, m, hotX, hotY );
}
TQCursor VCursor::crossHair()
{
static unsigned char cross_bits[] = {
0x80, 0x00, 0x80, 0x00, 0x80, 0x00, 0x80, 0x00, 0x80, 0x00, 0x80, 0x00,
0x80, 0x00, 0xff, 0x7f, 0x80, 0x00, 0x80, 0x00, 0x80, 0x00, 0x80, 0x00,
0x80, 0x00, 0x80, 0x00, 0x80, 0x00};
TQBitmap b = TQBitmap( 15, 15, cross_bits, true );
TQBitmap m = b.createHeuristicMask( false );
return TQCursor( b, m, 7, 7 );
}
TQCursor VCursor::needleArrow()
{
static unsigned char needle_bits[] = {
0x00, 0x00, 0x10, 0x00, 0x20, 0x00, 0x60, 0x00, 0xc0, 0x00, 0xc0, 0x01,
0x80, 0x03, 0x80, 0x07, 0x00, 0x0f, 0x00, 0x1f, 0x00, 0x3e, 0x00, 0x7e,
0x00, 0x7c, 0x00, 0x1c, 0x00, 0x18, 0x00, 0x00};
TQBitmap b = TQBitmap( 16, 16, needle_bits, true );
TQBitmap m = b.createHeuristicMask( false );
return TQCursor( b, m, 2, 0 );
}
TQCursor VCursor::needleMoveArrow()
{
static unsigned char needle_move_bits[] = {
0x00, 0x00, 0x10, 0x00, 0x20, 0x00, 0x60, 0x00, 0xc0, 0x00, 0xc0, 0x01,
0x80, 0x03, 0x80, 0x07, 0x10, 0x0f, 0x38, 0x1f, 0x54, 0x3e, 0xfe, 0x7e,
0x54, 0x7c, 0x38, 0x1c, 0x10, 0x18, 0x00, 0x00};
TQBitmap b = TQBitmap( 16, 16, needle_move_bits, true );
TQBitmap m = b.createHeuristicMask( false );
return TQCursor( b, m, 2, 0 );
}
TQCursor VCursor::horzMove()
{
/*
#define horzMove_width 15
#define horzMove_height 15
static unsigned char horzMove_bits[] = {
0x00, 0x00, 0x80, 0x00, 0x80, 0x00, 0x80, 0x00, 0x80, 0x00, 0x90, 0x04,
0x98, 0x0c, 0xfc, 0x1f, 0x98, 0x0c, 0x90, 0x04, 0x80, 0x00, 0x80, 0x00,
0x80, 0x00, 0x80, 0x00, 0x00, 0x00};
*/
#define horzMove_width 15
#define horzMove_height 15
static unsigned char horzMove_bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x08,
0x0c, 0x18, 0xfe, 0x3f, 0x0c, 0x18, 0x08, 0x08, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
TQBitmap b = TQBitmap( 15, 15, horzMove_bits, true );
TQBitmap m = b.createHeuristicMask( false );
return TQCursor( b, m, 7, 7 );
}
|