mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9e65d50ec2
--HG-- rename : embedding/components/commandhandler/src/nsBaseCommandController.cpp => embedding/components/commandhandler/nsBaseCommandController.cpp rename : embedding/components/commandhandler/src/nsBaseCommandController.h => embedding/components/commandhandler/nsBaseCommandController.h rename : embedding/components/commandhandler/src/nsCommandGroup.cpp => embedding/components/commandhandler/nsCommandGroup.cpp rename : embedding/components/commandhandler/src/nsCommandGroup.h => embedding/components/commandhandler/nsCommandGroup.h rename : embedding/components/commandhandler/src/nsCommandManager.cpp => embedding/components/commandhandler/nsCommandManager.cpp rename : embedding/components/commandhandler/src/nsCommandManager.h => embedding/components/commandhandler/nsCommandManager.h rename : embedding/components/commandhandler/src/nsCommandParams.cpp => embedding/components/commandhandler/nsCommandParams.cpp rename : embedding/components/commandhandler/src/nsCommandParams.h => embedding/components/commandhandler/nsCommandParams.h rename : embedding/components/commandhandler/src/nsControllerCommandTable.cpp => embedding/components/commandhandler/nsControllerCommandTable.cpp rename : embedding/components/commandhandler/src/nsControllerCommandTable.h => embedding/components/commandhandler/nsControllerCommandTable.h rename : embedding/components/commandhandler/public/nsICommandManager.idl => embedding/components/commandhandler/nsICommandManager.idl rename : embedding/components/commandhandler/public/nsICommandParams.idl => embedding/components/commandhandler/nsICommandParams.idl rename : embedding/components/commandhandler/public/nsIControllerCommand.idl => embedding/components/commandhandler/nsIControllerCommand.idl rename : embedding/components/commandhandler/public/nsIControllerCommandTable.idl => embedding/components/commandhandler/nsIControllerCommandTable.idl rename : embedding/components/commandhandler/public/nsIControllerContext.idl => embedding/components/commandhandler/nsIControllerContext.idl rename : embedding/components/commandhandler/public/nsPICommandUpdater.idl => embedding/components/commandhandler/nsPICommandUpdater.idl
59 lines
1.5 KiB
C++
59 lines
1.5 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef nsCommandManager_h__
|
|
#define nsCommandManager_h__
|
|
|
|
|
|
#include "nsString.h"
|
|
#include "nsClassHashtable.h"
|
|
#include "nsWeakReference.h"
|
|
|
|
#include "nsICommandManager.h"
|
|
#include "nsPICommandUpdater.h"
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
class nsIController;
|
|
template<class E> class nsCOMArray;
|
|
|
|
|
|
class nsCommandManager : public nsICommandManager,
|
|
public nsPICommandUpdater,
|
|
public nsSupportsWeakReference
|
|
|
|
{
|
|
public:
|
|
typedef nsTArray<nsCOMPtr<nsIObserver> > ObserverList;
|
|
|
|
nsCommandManager();
|
|
|
|
// nsISupports
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_AMBIGUOUS(nsCommandManager, nsICommandManager)
|
|
|
|
// nsICommandManager
|
|
NS_DECL_NSICOMMANDMANAGER
|
|
|
|
// nsPICommandUpdater
|
|
NS_DECL_NSPICOMMANDUPDATER
|
|
|
|
|
|
protected:
|
|
virtual ~nsCommandManager();
|
|
|
|
nsresult GetControllerForCommand(const char * aCommand,
|
|
nsIDOMWindow *aDirectedToThisWindow,
|
|
nsIController** outController);
|
|
|
|
|
|
protected:
|
|
nsClassHashtable<nsCharPtrHashKey, ObserverList> mObserversTable;
|
|
|
|
nsIDOMWindow* mWindow; // weak ptr. The window should always outlive us
|
|
};
|
|
|
|
|
|
#endif // nsCommandManager_h__
|