You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMsgHandler.h 2.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved.
  2. * Copyright 2009-2011 Pierre Ossman for Cendio AB
  3. * Copyright (C) 2011 D. R. Commander. All Rights Reserved.
  4. *
  5. * This is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This software is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this software; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
  18. * USA.
  19. */
  20. //
  21. // CMsgHandler - class to handle incoming messages on the client side.
  22. //
  23. #ifndef __RFB_CMSGHANDLER_H__
  24. #define __RFB_CMSGHANDLER_H__
  25. #include <rdr/types.h>
  26. #include <rfb/Pixel.h>
  27. #include <rfb/ServerParams.h>
  28. #include <rfb/Rect.h>
  29. #include <rfb/ScreenSet.h>
  30. namespace rdr { class InStream; }
  31. namespace rfb {
  32. class CMsgHandler {
  33. public:
  34. CMsgHandler();
  35. virtual ~CMsgHandler();
  36. // The following methods are called as corresponding messages are read. A
  37. // derived class should override these methods as desired. Note that for
  38. // the setDesktopSize(), setExtendedDesktopSize(), setPixelFormat(),
  39. // setName() and serverInit() methods, a derived class should call on to
  40. // CMsgHandler's methods to set the members of "server" appropriately.
  41. virtual void setDesktopSize(int w, int h);
  42. virtual void setExtendedDesktopSize(unsigned reason, unsigned result,
  43. int w, int h,
  44. const ScreenSet& layout);
  45. virtual void setCursor(int width, int height, const Point& hotspot,
  46. const rdr::U8* data) = 0;
  47. virtual void setPixelFormat(const PixelFormat& pf);
  48. virtual void setName(const char* name);
  49. virtual void fence(rdr::U32 flags, unsigned len, const char data[]);
  50. virtual void endOfContinuousUpdates();
  51. virtual void supportsQEMUKeyEvent();
  52. virtual void serverInit(int width, int height,
  53. const PixelFormat& pf,
  54. const char* name) = 0;
  55. virtual void readAndDecodeRect(const Rect& r, int encoding,
  56. ModifiablePixelBuffer* pb) = 0;
  57. virtual void framebufferUpdateStart();
  58. virtual void framebufferUpdateEnd();
  59. virtual void dataRect(const Rect& r, int encoding) = 0;
  60. virtual void setColourMapEntries(int firstColour, int nColours,
  61. rdr::U16* rgbs) = 0;
  62. virtual void bell() = 0;
  63. virtual void serverCutText(const char* str, rdr::U32 len) = 0;
  64. virtual void setLEDState(unsigned int state);
  65. ServerParams server;
  66. };
  67. }
  68. #endif