blob: f8d3ac320219a213cd0c99e55d43045932c9fec8 [file] [log] [blame]
Constantin Kaplinsky729598c2006-05-25 05:12:25 +00001/* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved.
2 *
3 * This is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This software is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
16 * USA.
17 */
18
19// -=- DesktopWindow.h
20
21// Each VNC connection instance (CConn) creates a DesktopWindow the
22// server initialisation message has been received. The CConn is
23// responsible for all RFB-specific and network issues. The
24// DesktopWindow is responsible for all GUI management issues.
25//
26// DesktopWindow provides a FullFramePixelBuffer interface for the
27// CConn to render updates into. It also requires a callback object
28// to be supplied, which will be notified when various events occur.
29
30#ifndef __RFB_WIN32_DESKTOP_WINDOW_H__
31#define __RFB_WIN32_DESKTOP_WINDOW_H__
32
33#include <rfb/Cursor.h>
34#include <rfb_win32/CKeyboard.h>
35#include <rfb_win32/CPointer.h>
36#include <rfb_win32/Clipboard.h>
37#include <rfb_win32/ScaledDIBSectionBuffer.h>
38#include <rfb_win32/LogicalPalette.h>
39#include <vncviewer/ViewerToolBar.h>
40
41
42namespace rfb {
43
44 namespace win32 {
45
46 class DesktopWindow : rfb::win32::Clipboard::Notifier {
47 public:
48 class Callback;
49
50 DesktopWindow(Callback* cb_);
51 ~DesktopWindow();
52
53 // - Window message handling procedure
54 LRESULT processMessage(UINT msg, WPARAM wParam, LPARAM lParam);
55
56 // - Window message handling procedure for the framebuffer window
57 LRESULT processFrameMessage(UINT msg, WPARAM wParam, LPARAM lParam);
58
59 // - Determine the native pixel format of the window
60 // This can (and often will) differ from the PixelBuffer format
61 PixelFormat getNativePF() const;
62
63 // - Get the underlying window handle
64 // This is used by F8Menu to modify the window's menu
65 HWND getHandle() const {return handle;}
66
67 // - Get the framebuffer window handle
68 HWND getFrameHandle() const {return frameHandle;}
69
70 // - Set the window title
71 void setName(const char* name);
72
73 // - Set the key that causes the system/F8 menu to be displayed
74 void setMenuKey(rdr::U8 key) { menuKey = key; }
75
76 // - Pointer event handling
77 void setEmulate3(bool em3) { ptr.enableEmulate3(em3); }
78 void setPointerEventInterval(int interval) { ptr.enableInterval(interval); }
79
80 // - Set the pixel format, size etc of the underlying PixelBuffer
81 void setPF(const PixelFormat& pf);
82 PixelFormat getPF() const { return buffer->getPF(); }
83 void setSize(int w, int h);
84 void setColour(int i, int r, int g, int b) {buffer->setColour(i, r, g, b);}
george8274ea5f32006-09-11 11:40:12 +000085 void setAutoScaling(bool as);
george82ffc14a62006-09-05 06:51:41 +000086 bool isAutoScaling() const { return autoScaling; }
george822baaaec2006-09-11 15:09:09 +000087 void setDesktopScaleRatio(double scale_ratio);
88 void setDesktopScale(int scale) { setDesktopScaleRatio(double(scale)/100); }
george82b6d87aa2006-09-11 07:00:59 +000089 int getDesktopScale() const { return buffer->getScale(); }
george823c68f5f2006-09-05 06:17:01 +000090 void fitBufferToWindow(bool repaint = true);
Constantin Kaplinsky729598c2006-05-25 05:12:25 +000091
92 // - Set the cursor to render when the pointer is within the desktop buffer
93 void setCursor(int w, int h, const Point& hotspot, void* data, void* mask);
94 void showCursor() { showLocalCursor(); }
95
96 // - Set the window fullscreen / determine whether it is fullscreen
97 void setFullscreen(bool fs);
98 bool isFullscreen() { return fullscreenActive; }
99
100 // - Set/get the toolbar's state
101 void setShowToolbar(bool st);
102 bool isToolbarEnabled() { return showToolbar; }
george8274ea5f32006-09-11 11:40:12 +0000103 void refreshToolbarButtons();
Constantin Kaplinsky729598c2006-05-25 05:12:25 +0000104
105 // - Set whether to disable special Windows keys & pass them straight to server
106 void setDisableWinKeys(bool dwk);
107
108 // - Set/get which monitor the window should be displayed on
109 void setMonitor(const char* monitor);
110 char* getMonitor() const;
111
112 // - Set the local clipboard
113 void serverCutText(const char* str, int len);
114
115 // - Draw into the desktop buffer & update the window
116 void fillRect(const Rect& r, Pixel pix);
117 void imageRect(const Rect& r, void* pixels);
118 void copyRect(const Rect& r, int srcX, int srcY);
119
120 void invertRect(const Rect& r);
121
122 // - Update the window palette if the display is palette-based.
123 // Colours are pulled from the desktop buffer's ColourMap.
124 // Only the specified range of indexes is dealt with.
125 // After the update, the entire window is redrawn.
126 void refreshWindowPalette(int start, int count);
127
128 // Clipboard::Notifier interface
129 void notifyClipboardChanged(const char* text, int len);
130
131 // DesktopWindow Callback interface
132 class Callback : public InputHandler {
133 public:
134 virtual ~Callback() {}
135 virtual void displayChanged() = 0;
136 virtual void paintCompleted() = 0;
137 virtual bool sysCommand(WPARAM wParam, LPARAM lParam) = 0;
138 virtual void closeWindow() = 0;
139 virtual void refreshMenu(bool enableSysItems) = 0;
140 };
141
george82fd334ad2006-05-29 14:05:20 +0000142 Callback *getCallback() const { return callback; }
143
Constantin Kaplinsky729598c2006-05-25 05:12:25 +0000144 // Currently accessible so that the CConn can releaseAllKeys & check
145 // whether Ctrl and Alt are down...
146 rfb::win32::CKeyboard kbd;
147
148 protected:
149 // Routines to convert between Desktop and client (window) coordinates
150 Point desktopToClient(const Point& p) {
151 Point pos = p;
152 if (client_size.width() > buffer->width())
153 pos.x += (client_size.width() - buffer->width()) / 2;
154 else if (client_size.width() < buffer->width())
155 pos.x -= scrolloffset.x;
156 if (client_size.height() > buffer->height())
157 pos.y += (client_size.height() - buffer->height()) / 2;
158 else if (client_size.height() < buffer->height())
159 pos.y -= scrolloffset.y;
160 return pos;
161 }
162 Rect desktopToClient(const Rect& r) {
163 return Rect(desktopToClient(r.tl), desktopToClient(r.br));
164 }
165 Point clientToDesktop(const Point& p) {
166 Point pos = p;
167 if (client_size.width() > buffer->width())
168 pos.x -= (client_size.width() - buffer->width()) / 2;
169 else if (client_size.width() < buffer->width())
170 pos.x += scrolloffset.x;
171 if (client_size.height() > buffer->height())
172 pos.y -= (client_size.height() - buffer->height()) / 2;
173 else if (client_size.height() < buffer->height())
174 pos.y += scrolloffset.y;
175 return pos;
176 }
177 Rect clientToDesktop(const Rect& r) {
178 return Rect(clientToDesktop(r.tl), clientToDesktop(r.br));
179 }
180
181 // Internal routine used by the scrollbars & bump scroller to select
182 // the portion of the Desktop to display
183 bool setViewportOffset(const Point& tl);
184
185 // Bump scroll handling. Bump scrolling is used if the window is
186 // in fullscreen mode and the Desktop is larger than the window
187 bool processBumpScroll(const Point& cursorPos);
188 void setBumpScroll(bool on);
189 bool bumpScroll;
190 Point bumpScrollDelta;
191 IntervalTimer bumpScrollTimer;
192
193 // Locally-rendered VNC cursor
194 void hideLocalCursor();
195 void showLocalCursor();
196 void renderLocalCursor();
197
198 // The system-rendered cursor
199 void hideSystemCursor();
200 void showSystemCursor();
201
202 // cursorOutsideBuffer() is called whenever we detect that the mouse has
203 // moved outside the desktop. It restores the system arrow cursor.
204 void cursorOutsideBuffer();
205
206 // Returns true if part of the supplied rect is visible, false otherwise
207 bool invalidateDesktopRect(const Rect& crect, bool scaling=true);
208
209 // Determine whether or not we need to enable/disable scrollbars and set the
210 // window style accordingly
211 void calculateScrollBars();
212
213 // Win32-specific input handling
214 rfb::win32::CPointer ptr;
215 Point oldpos;
216 rfb::win32::Clipboard clipboard;
217
218 // Palette handling
219 LogicalPalette windowPalette;
220 bool palette_changed;
221
222 // - Full-screen mode
223 RECT fullscreenOldRect;
224 DWORD fullscreenOldFlags;
225 bool fullscreenActive;
226 bool fullscreenRestore;
227
228 // Cursor handling
229 Cursor cursor;
230 bool systemCursorVisible; // Should system-cursor be drawn?
231 bool trackingMouseLeave;
232 bool cursorInBuffer; // Is cursor position within server buffer? (ONLY for LocalCursor)
233 bool cursorVisible; // Is cursor currently rendered?
234 bool cursorAvailable; // Is cursor available for rendering?
235 Point cursorPos;
236 ManagedPixelBuffer cursorBacking;
237 Rect cursorBackingRect;
238
239 // ToolBar handling
240 ViewerToolBar tb;
241 bool showToolbar;
242
george82e0569e42006-09-11 15:56:10 +0000243 // Remote desktop name
244 char desktopName[255];
245
Constantin Kaplinsky729598c2006-05-25 05:12:25 +0000246 // Local window state
247 win32::ScaledDIBSectionBuffer* buffer;
george823c68f5f2006-09-05 06:17:01 +0000248 double aspect_corr;
Constantin Kaplinsky729598c2006-05-25 05:12:25 +0000249 bool has_focus;
george82ffc14a62006-09-05 06:51:41 +0000250 bool autoScaling;
Constantin Kaplinsky729598c2006-05-25 05:12:25 +0000251 Rect window_size;
252 Rect client_size;
253 Point scrolloffset;
254 Point maxscrolloffset;
255 HWND handle;
256 HWND frameHandle;
257 rdr::U8 menuKey;
258
259 Callback* callback;
260 };
261
262 };
263
264};
265
266#endif // __RFB_WIN32_DESKTOP_WINDOW_H__
267
268