summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordscho <dscho>2001-09-28 15:21:18 +0000
committerdscho <dscho>2001-09-28 15:21:18 +0000
commitc30ded8d532bc3b56c8945b88ac457417f5b3706 (patch)
treeda1784e9a5ea4fea570e6067eaa8af6587487e87
parent0ea0b7f0df5dd7504cce847146e27107e9b3ce98 (diff)
downloadlibtdevnc-c30ded8d.tar.gz
libtdevnc-c30ded8d.zip
exported rfbReverseByte
-rw-r--r--cursor.c14
-rw-r--r--rfb.h4
2 files changed, 8 insertions, 10 deletions
diff --git a/cursor.c b/cursor.c
index d88ff7f..39346b9 100644
--- a/cursor.c
+++ b/cursor.c
@@ -134,9 +134,6 @@ rfbSendCursorShape(cl)
for (i = 0; i < pCursor->height; i++) {
for (j = 0; j < bitmapRowBytes; j++) {
bitmapByte = bitmapData[i * bitmapRowBytes + j];
- /*if (screenInfo.bitmapBitOrder == LSBFirst) {
- bitmapByte = _reverse_byte[bitmapByte];
- }*/
cl->updateBuf[cl->ublen++] = (char)bitmapByte;
}
}
@@ -160,9 +157,6 @@ rfbSendCursorShape(cl)
for (i = 0; i < pCursor->height; i++) {
for (j = 0; j < bitmapRowBytes; j++) {
bitmapByte = bitmapData[i * bitmapRowBytes + j];
- /*if (screenInfo.bitmapBitOrder == LSBFirst) {
- bitmapByte = _reverse_byte[bitmapByte];
- }*/
cl->updateBuf[cl->ublen++] = (char)bitmapByte;
}
}
@@ -179,7 +173,7 @@ rfbSendCursorShape(cl)
}
/* conversion routine for predefined cursors in LSB order */
-static unsigned char _reverse_byte[0x100] = {
+unsigned char rfbReverseByte[0x100] = {
/* copied from Xvnc/lib/font/util/utilbitmap.c */
0x00, 0x80, 0x40, 0xc0, 0x20, 0xa0, 0x60, 0xe0,
0x10, 0x90, 0x50, 0xd0, 0x30, 0xb0, 0x70, 0xf0,
@@ -219,7 +213,7 @@ void rfbConvertLSBCursorBitmapOrMask(int width,int height,unsigned char* bitmap)
{
int i,t=(width+7)/8*height;
for(i=0;i<t;i++)
- bitmap[i]=_reverse_byte[(int)bitmap[i]];
+ bitmap[i]=rfbReverseByte[(int)bitmap[i]];
}
/* Cursor creation. You "paint" a cursor and let these routines do the work */
@@ -350,12 +344,12 @@ void rfbUndrawCursor(rfbClientPtr cl)
x2=x1+c->width;
if(x1<0) x1=0;
if(x2>=s->width) x2=s->width-1;
- x2-=x1;
+ x2-=x1; if(x2<=0) return;
y1=s->cursorY-c->yhot;
y2=y1+c->height;
if(y1<0) y1=0;
if(y2>=s->height) y2=s->height-1;
- y2-=y1;
+ y2-=y1; if(y2<=0) return;
for(j=0;j<y2;j++)
memcpy(s->frameBuffer+(y1+j)*rowstride+x1*bpp,
s->underCursorBuffer+j*x2*bpp,
diff --git a/rfb.h b/rfb.h
index 384a74b..05d4765 100644
--- a/rfb.h
+++ b/rfb.h
@@ -605,6 +605,7 @@ typedef struct rfbCursor {
} rfbCursor, *rfbCursorPtr;
extern Bool rfbSendCursorShape(rfbClientPtr cl/*, rfbScreenInfoPtr pScreen*/);
+extern unsigned char rfbReverseByte[0x100];
extern void rfbConvertLSBCursorBitmapOrMask(int width,int height,unsigned char* bitmap);
extern rfbCursorPtr rfbMakeXCursor(int width,int height,char* cursorString,char* maskString);
extern char* rfbMakeMaskForXCursor(int width,int height,char* cursorString);
@@ -614,6 +615,9 @@ extern void rfbFreeCursor(rfbCursorPtr cursor);
extern void rfbDrawCursor(rfbClientPtr cl);
extern void rfbUndrawCursor(rfbClientPtr cl);
+/* cursor handling for the pointer */
+extern void defaultPtrAddEvent(int buttonMask,int x,int y,rfbClientPtr cl);
+
/* stats.c */
extern void rfbResetStats(rfbClientPtr cl);