/embedding/components/commandhandler/src/nsBaseCommandController.h

http://github.com/zpao/v8monkey · C Header · 91 lines · 30 code · 16 blank · 45 comment · 0 complexity · 7de152a859065a72f025b28cbf63fc90 MD5 · raw file

  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3. * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4. *
  5. * The contents of this file are subject to the Mozilla Public License Version
  6. * 1.1 (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. * http://www.mozilla.org/MPL/
  9. *
  10. * Software distributed under the License is distributed on an "AS IS" basis,
  11. * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12. * for the specific language governing rights and limitations under the
  13. * License.
  14. *
  15. * The Original Code is Mozilla Communicator client code.
  16. *
  17. * The Initial Developer of the Original Code is
  18. * Netscape Communications Corporation.
  19. * Portions created by the Initial Developer are Copyright (C) 2002
  20. * the Initial Developer. All Rights Reserved.
  21. *
  22. * Contributor(s):
  23. * Michael Judge <mjudge@netscape.com>
  24. *
  25. * Alternatively, the contents of this file may be used under the terms of
  26. * either the GNU General Public License Version 2 or later (the "GPL"), or
  27. * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28. * in which case the provisions of the GPL or the LGPL are applicable instead
  29. * of those above. If you wish to allow use of your version of this file only
  30. * under the terms of either the GPL or the LGPL, and not to allow others to
  31. * use your version of this file under the terms of the MPL, indicate your
  32. * decision by deleting the provisions above and replace them with the notice
  33. * and other provisions required by the GPL or the LGPL. If you do not delete
  34. * the provisions above, a recipient may use your version of this file under
  35. * the terms of any one of the MPL, the GPL or the LGPL.
  36. *
  37. * ***** END LICENSE BLOCK ***** */
  38. #ifndef nsBaseCommandController_h__
  39. #define nsBaseCommandController_h__
  40. #define NS_BASECOMMANDCONTROLLER_CID \
  41. { 0xbf88b48c, 0xfd8e, 0x40b4, { 0xba, 0x36, 0xc7, 0xc3, 0xad, 0x6d, 0x8a, 0xc9 } }
  42. #define NS_BASECOMMANDCONTROLLER_CONTRACTID \
  43. "@mozilla.org/embedcomp/base-command-controller;1"
  44. #include "nsIController.h"
  45. #include "nsIControllerContext.h"
  46. #include "nsIControllerCommandTable.h"
  47. #include "nsIInterfaceRequestor.h"
  48. #include "nsIWeakReferenceUtils.h"
  49. // The base editor controller is used for both text widgets,
  50. // and all other text and html editing
  51. class nsBaseCommandController : public nsIController,
  52. public nsIControllerContext,
  53. public nsIInterfaceRequestor,
  54. public nsICommandController
  55. {
  56. public:
  57. nsBaseCommandController();
  58. virtual ~nsBaseCommandController();
  59. // nsISupports
  60. NS_DECL_ISUPPORTS
  61. // nsIController
  62. NS_DECL_NSICONTROLLER
  63. // nsICommandController
  64. NS_DECL_NSICOMMANDCONTROLLER
  65. //nsIControllerContext
  66. NS_DECL_NSICONTROLLERCONTEXT
  67. // nsIInterfaceRequestor
  68. NS_DECL_NSIINTERFACEREQUESTOR
  69. private:
  70. nsWeakPtr mCommandContextWeakPtr;
  71. nsISupports* mCommandContextRawPtr;
  72. // Our reference to the command manager
  73. nsCOMPtr<nsIControllerCommandTable> mCommandTable;
  74. };
  75. #endif /* nsBaseCommandController_h_ */