mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
103 lines
3.3 KiB
C++
103 lines
3.3 KiB
C++
/* -*- 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 nsIDOMXULDocument;
|
|
|
|
// 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, nsIDOMXULDocument *aChromeDoc);
|
|
|
|
// 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
|
|
nsIDOMXULDocument* mChromeDoc; // XUL document for the chrome area
|
|
|
|
// current state
|
|
PRInt8 mBoldState;
|
|
PRInt8 mItalicState;
|
|
PRInt8 mUnderlineState;
|
|
|
|
PRInt8 mDirtyState;
|
|
|
|
PRInt8 mSelectionCollapsed;
|
|
|
|
|
|
nsString mParagraphFormat;
|
|
nsString mFontString;
|
|
nsString mListTag; // contains "" for none, "ol" or "ul"
|
|
|
|
};
|
|
|
|
extern "C" nsresult NS_NewInterfaceState(nsIHTMLEditor* aEditor, nsIDOMXULDocument* aChromeDoc, nsIDOMSelectionListener** aInstancePtrResult);
|
|
|
|
#endif // nsInterfaceState_h__
|