/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- * * The contents of this file are subject to the Netscape Public * License Version 1.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.mozilla.org/NPL/ * * Software distributed under the License is distributed on an "AS * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or * implied. See the License for the specific language governing * rights and limitations under the License. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): */ #ifndef nsInterfaceState_h__ #define nsInterfaceState_h__ #include "nsIDOMSelectionListener.h" #include "nsIDocumentStateListener.h" #include "nsIWebShell.h" class nsIHTMLEditor; // class responsible for communicating changes in local state back to the UI. // This is currently somewhat tied to a given XUL UI implementation class nsInterfaceState : public nsIDOMSelectionListener, public nsIDocumentStateListener { public: nsInterfaceState(); virtual ~nsInterfaceState(); NS_DECL_ISUPPORTS NS_IMETHOD Init(nsIHTMLEditor* aEditor, nsIWebShell *aChromeWebShell); // force an update of the UI. At some point, we could pass flags // here to target certain things for updating. NS_IMETHOD ForceUpdate(); // nsIDOMSelectionListener interface NS_IMETHOD NotifySelectionChanged(); NS_DECL_NSIDOCUMENTSTATELISTENER protected: enum { eStateUninitialized = -1, eStateOff = PR_FALSE, eStateOn = PR_TRUE }; PRBool SelectionIsCollapsed(); nsresult SetNodeAttribute(const char* nodeID, const char* attributeName, const nsString& newValue); nsresult UnsetNodeAttribute(const char* nodeID, const char* attributeName); nsresult UpdateParagraphState(const char* observerName, const char* attributeName, nsString& ioParaFormat); nsresult UpdateListState(const char* observerName); nsresult UpdateTextState(const char* tagName, const char* observerName, const char* attributeName, PRInt8& ioState); nsresult UpdateFontFace(const char* observerName, const char* attributeName, nsString& ioFontString); nsresult UpdateDirtyState(PRBool aNowDirty); // this class should not hold references to the editor or editorShell. Doing // so would result in cirular reference chains. nsIHTMLEditor* mEditor; // the HTML editor nsIWebShell* mWebShell; // web shell for the chrome area // current state PRInt8 mBoldState; PRInt8 mItalicState; PRInt8 mUnderlineState; PRInt8 mDirtyState; nsString mParagraphFormat; nsString mFontString; nsString mListTag; // contains "" for none, "ol" or "ul" }; extern "C" nsresult NS_NewInterfaceState(nsIHTMLEditor* aEditor, nsIWebShell* aWebShell, nsIDOMSelectionListener** aInstancePtrResult); #endif // nsInterfaceState_h__