kjs_views.h
00001 // -*- c-basic-offset: 2 -*- 00002 /* 00003 * This file is part of the KDE libraries 00004 * Copyright (C) 2001 Peter Kelly (pmk@post.com) 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00019 */ 00020 00021 #ifndef _KJS_VIEWS_H_ 00022 #define _KJS_VIEWS_H_ 00023 00024 #include "ecma/kjs_dom.h" 00025 #include "dom/dom2_views.h" 00026 00027 namespace KJS { 00028 00029 00030 class DOMAbstractView : public DOMObject { 00031 public: 00032 DOMAbstractView(ExecState *, DOM::AbstractView av); 00033 ~DOMAbstractView(); 00034 virtual Value tryGet(ExecState *exec,const Identifier &p) const; 00035 // no put - all read-only 00036 virtual const ClassInfo* classInfo() const { return &info; } 00037 static const ClassInfo info; 00038 virtual DOM::AbstractView toAbstractView() const { return abstractView; } 00039 enum { Document, GetComputedStyle }; 00040 protected: 00041 DOM::AbstractView abstractView; 00042 }; 00043 00044 Value getDOMAbstractView(ExecState *exec, DOM::AbstractView av); 00045 00049 DOM::AbstractView toAbstractView(const Value&); 00050 00051 } // namespace 00052 00053 #endif