kjs_navigator.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef _KJS_NAVIGATOR_H_
00022 #define _KJS_NAVIGATOR_H_
00023
00024 #include <kjs/object.h>
00025
00026 class KHTMLPart;
00027
00028 namespace KJS {
00029
00030 class Navigator : public ObjectImp {
00031 public:
00032 Navigator(ExecState *exec, KHTMLPart *p);
00033 virtual Value get(ExecState *exec, const Identifier &propertyName) const;
00034 Value getValueProperty(ExecState *exec, int token) const;
00035 virtual const ClassInfo* classInfo() const { return &info; }
00036 static const ClassInfo info;
00037 enum { AppCodeName, AppName, AppVersion, Language, UserAgent, UserLanguage, Platform,
00038 _Plugins, _MimeTypes, Product, ProductSub, Vendor, CookieEnabled, JavaEnabled,
00039 BrowserLanguage, CpuClass };
00040 KHTMLPart *part() const { return m_part; }
00041 private:
00042 KHTMLPart *m_part;
00043 };
00044
00045
00046 enum { Plugins_Refresh, Plugins_Length, Plugins_Item, Plugins_NamedItem };
00047 enum { MimeTypes_Length, MimeTypes_Item, MimeTypes_NamedItem };
00048 enum { Plugin_Name, Plugin_FileName, Plugin_Description, Plugin_Length, Plugin_Item, Plugin_NamedItem };
00049 enum { MimeType_Type, MimeType_Description, MimeType_EnabledPlugin, MimeType_Suffixes };
00050
00051 }
00052
00053 #endif
|