add Midas functionality (bug 177700, r=akkana, sr=jst)

This commit is contained in:
brade%netscape.com 2002-11-07 15:36:25 +00:00
Родитель f5ddb26a1e
Коммит 914cf5f675
2 изменённых файлов: 13 добавлений и 0 удалений

Просмотреть файл

@ -56,6 +56,8 @@ REQUIRES = xpcom \
imglib2 \
xpconnect \
unicharutil \
commandhandler \
composer \
$(NULL)
CPPSRCS = \

Просмотреть файл

@ -59,6 +59,7 @@
#include "nsILoadGroup.h"
#include "nsNetUtil.h"
#include "nsICommandManager.h"
class nsBaseContentList;
class nsContentList;
@ -303,6 +304,16 @@ protected:
PLDHashTable mIdAndNameHashTable;
nsCOMPtr<nsIWyciwygChannel> mWyciwygChannel;
/* Midas implementation */
nsresult GetMidasCommandManager(nsICommandManager** aCommandManager);
PRBool ConvertToMidasInternalCommand(const nsAString & inCommandID,
const nsAString & inParam,
nsACString& outCommandID,
nsACString& outParam);
nsCOMPtr<nsICommandManager> mMidasCommandManager;
PRBool mEditingIsOn;
};
#endif /* nsHTMLDocument_h___ */