khtml Library API Documentation

kjs_navigator.h

00001 // -*- c-basic-offset: 2 -*-
00002 /*
00003  *  This file is part of the KDE libraries
00004  *  Copyright (C) 2000 Harri Porten (porten@kde.org)
00005  *
00006  *  This library is free software; you can redistribute it and/or
00007  *  modify it under the terms of the GNU Library General Public
00008  *  License as published by the Free Software Foundation; either
00009  *  version 2 of the License, or (at your option) any later version.
00010  *
00011  *  This library is distributed in the hope that it will be useful,
00012  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00013  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00014  *  Library General Public License for more details.
00015  *
00016  *  You should have received a copy of the GNU Library General Public
00017  *  License along with this library; if not, write to the Free Software
00018  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
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 UString &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, Vendor, CookieEnabled, JavaEnabled };
00039     KHTMLPart *part() const { return m_part; }
00040   private:
00041     KHTMLPart *m_part;
00042   };
00043 }; // namespace
00044 
00045 #endif
KDE Logo
This file is part of the documentation for kdelibs Version 3.1.0.
Documentation copyright © 1996-2002 the KDE developers.
Generated on Wed Oct 8 12:22:41 2003 by doxygen 1.2.18 written by Dimitri van Heesch, © 1997-2001