/scite/src/MultiplexExtension.h

https://github.com/mkottman/scite · C Header · 87 lines · 41 code · 13 blank · 33 comment · 0 complexity · e6020eaa68eb45f471ec151d25fd391a MD5 · raw file

  1. // SciTE - Scintilla based Text Editor
  2. /** @file MultiplexExtension.h
  3. ** Extension that manages / dispatches messages to multiple extensions.
  4. **/
  5. // Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org>
  6. // The License.txt file describes the conditions under which this software may be distributed.
  7. #ifndef MULTIPLEXEXTENSION_H
  8. #define MULTIPLEXEXTENSION_H
  9. #include "Extender.h"
  10. // MultiplexExtension manages multiple Extension objects, similar to
  11. // what is proposed in the SciTE Extension documentation. Each
  12. // message is sent to each contained extension object in turn until
  13. // one indicates that the message has been handled and does not need
  14. // to be processed further. Certain messages (Initialise, Finalise
  15. // Clear, and SendProperty) are sent to all contained extensions
  16. // regardless of return code.
  17. //
  18. // The Director extension incorrectly returns true for all messages,
  19. // meaning that other extensions will never see the message if
  20. // DirectorExtension comes before them in the list. This has been
  21. // fixed at source.
  22. //
  23. // Extensions are added to the multiplexer by calling RegisterExtension.
  24. // The extensions are prioritized with the first one added having the
  25. // highest priority. If more flexibility is needed in order to support
  26. // dynamic discovery of extensions and assignment of priority, that will
  27. // be added later. If the ability to remove extensions becomes important,
  28. // that can be added as well (later).
  29. //
  30. // The multiplexer does not manage the lifetime of the extension objects
  31. // that are registered with it. If that functionality later turns out
  32. // to be needed, it will be added at that time. (Broken record? Do the
  33. // simplest thing...) However, the option to "not" manage the lifecycle
  34. // is a valid one, since it often makes sense to implement extensions as
  35. // singletons.
  36. class MultiplexExtension: public Extension {
  37. public:
  38. MultiplexExtension();
  39. virtual ~MultiplexExtension();
  40. bool RegisterExtension(Extension &ext_);
  41. virtual bool Initialise(ExtensionAPI *host_);
  42. virtual bool Finalise();
  43. virtual bool Clear();
  44. virtual bool Load(const char *filename);
  45. virtual bool InitBuffer(int);
  46. virtual bool ActivateBuffer(int);
  47. virtual bool RemoveBuffer(int);
  48. virtual bool OnOpen(const char *);
  49. virtual bool OnSwitchFile(const char *);
  50. virtual bool OnBeforeSave(const char *);
  51. virtual bool OnSave(const char *);
  52. virtual bool OnChar(char);
  53. virtual bool OnExecute(const char *);
  54. virtual bool OnSavePointReached();
  55. virtual bool OnSavePointLeft();
  56. virtual bool OnStyle(unsigned int, int, int, StyleWriter *);
  57. virtual bool OnDoubleClick();
  58. virtual bool OnUpdateUI();
  59. virtual bool OnMarginClick();
  60. virtual bool OnMacro(const char *, const char *);
  61. virtual bool OnUserListSelection(int, const char *);
  62. virtual bool SendProperty(const char *);
  63. virtual bool OnKey(int, int);
  64. virtual bool OnDwellStart(int, const char *);
  65. virtual bool OnClose(const char *);
  66. private:
  67. Extension **extensions;
  68. int extensionCount;
  69. ExtensionAPI *host;
  70. // Copying is unsupported.
  71. MultiplexExtension(const MultiplexExtension & copy);
  72. MultiplexExtension & operator=(const MultiplexExtension & copy);
  73. };
  74. #endif