gecko-dev/dom/xul/nsXULCommandDispatcher.h

74 строки
1.9 KiB
C
Исходник Обычный вид История

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2012-05-21 15:12:37 +04:00
/* 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/. */
/*
This is the focus manager for XUL documents.
*/
#ifndef nsXULCommandDispatcher_h__
#define nsXULCommandDispatcher_h__
#include "nsCOMPtr.h"
#include "nsIDOMXULCommandDispatcher.h"
#include "nsWeakReference.h"
#include "nsIDOMNode.h"
#include "nsString.h"
2007-03-24 13:53:07 +03:00
#include "nsCycleCollectionParticipant.h"
class nsIDOMElement;
class nsPIWindowRoot;
class nsXULCommandDispatcher : public nsIDOMXULCommandDispatcher,
public nsSupportsWeakReference
{
2007-03-24 13:53:07 +03:00
public:
explicit nsXULCommandDispatcher(nsIDocument* aDocument);
2000-11-04 11:21:20 +03:00
// nsISupports
2007-03-24 13:53:07 +03:00
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
NS_DECL_CYCLE_COLLECTION_CLASS_AMBIGUOUS(nsXULCommandDispatcher,
nsIDOMXULCommandDispatcher)
// nsIDOMXULCommandDispatcher interface
NS_DECL_NSIDOMXULCOMMANDDISPATCHER
2007-03-24 13:53:07 +03:00
void Disconnect();
protected:
virtual ~nsXULCommandDispatcher();
already_AddRefed<nsPIWindowRoot> GetWindowRoot();
2007-03-24 13:53:07 +03:00
nsIContent* GetRootFocusedContentAndWindow(nsPIDOMWindow** aWindow);
2007-03-24 13:53:07 +03:00
nsCOMPtr<nsIDocument> mDocument;
class Updater {
public:
2000-11-04 11:21:20 +03:00
Updater(nsIDOMElement* aElement,
const nsAString& aEvents,
const nsAString& aTargets)
2000-11-04 11:21:20 +03:00
: mElement(aElement),
mEvents(aEvents),
mTargets(aTargets),
mNext(nullptr)
2000-11-04 11:21:20 +03:00
{}
2007-03-24 13:53:07 +03:00
nsCOMPtr<nsIDOMElement> mElement;
nsString mEvents;
nsString mTargets;
Updater* mNext;
};
Updater* mUpdaters;
bool Matches(const nsString& aList,
const nsAString& aElement);
};
#endif // nsXULCommandDispatcher_h__