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 3.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved.
  2. * Copyright 2009-2019 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(), serverInit() and clipboardCaps methods, a derived class
  40. // should call on to CMsgHandler's methods to set the members of "server"
  41. // appropriately.
  42. virtual void setDesktopSize(int w, int h);
  43. virtual void setExtendedDesktopSize(unsigned reason, unsigned result,
  44. int w, int h,
  45. const ScreenSet& layout);
  46. virtual void setCursor(int width, int height, const Point& hotspot,
  47. const rdr::U8* data) = 0;
  48. virtual void setCursorPos(const Point& pos) = 0;
  49. virtual void setPixelFormat(const PixelFormat& pf);
  50. virtual void setName(const char* name);
  51. virtual void fence(rdr::U32 flags, unsigned len, const char data[]);
  52. virtual void endOfContinuousUpdates();
  53. virtual void supportsQEMUKeyEvent();
  54. virtual void serverInit(int width, int height,
  55. const PixelFormat& pf,
  56. const char* name) = 0;
  57. virtual bool readAndDecodeRect(const Rect& r, int encoding,
  58. ModifiablePixelBuffer* pb) = 0;
  59. virtual void framebufferUpdateStart();
  60. virtual void framebufferUpdateEnd();
  61. virtual bool dataRect(const Rect& r, int encoding) = 0;
  62. virtual void setColourMapEntries(int firstColour, int nColours,
  63. rdr::U16* rgbs) = 0;
  64. virtual void bell() = 0;
  65. virtual void serverCutText(const char* str) = 0;
  66. virtual void setLEDState(unsigned int state);
  67. virtual void handleClipboardCaps(rdr::U32 flags,
  68. const rdr::U32* lengths);
  69. virtual void handleClipboardRequest(rdr::U32 flags);
  70. virtual void handleClipboardPeek(rdr::U32 flags);
  71. virtual void handleClipboardNotify(rdr::U32 flags);
  72. virtual void handleClipboardProvide(rdr::U32 flags,
  73. const size_t* lengths,
  74. const rdr::U8* const* data);
  75. ServerParams server;
  76. };
  77. }
  78. #endif