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.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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 setPixelFormat(const PixelFormat& pf);
  49. virtual void setName(const char* name);
  50. virtual void fence(rdr::U32 flags, unsigned len, const char data[]);
  51. virtual void endOfContinuousUpdates();
  52. virtual void supportsQEMUKeyEvent();
  53. virtual void serverInit(int width, int height,
  54. const PixelFormat& pf,
  55. const char* name) = 0;
  56. virtual void readAndDecodeRect(const Rect& r, int encoding,
  57. ModifiablePixelBuffer* pb) = 0;
  58. virtual void framebufferUpdateStart();
  59. virtual void framebufferUpdateEnd();
  60. virtual void dataRect(const Rect& r, int encoding) = 0;
  61. virtual void setColourMapEntries(int firstColour, int nColours,
  62. rdr::U16* rgbs) = 0;
  63. virtual void bell() = 0;
  64. virtual void serverCutText(const char* str) = 0;
  65. virtual void setLEDState(unsigned int state);
  66. virtual void handleClipboardCaps(rdr::U32 flags,
  67. const rdr::U32* lengths);
  68. virtual void handleClipboardRequest(rdr::U32 flags);
  69. virtual void handleClipboardPeek(rdr::U32 flags);
  70. virtual void handleClipboardNotify(rdr::U32 flags);
  71. virtual void handleClipboardProvide(rdr::U32 flags,
  72. const size_t* lengths,
  73. const rdr::U8* const* data);
  74. ServerParams server;
  75. };
  76. }
  77. #endif