khtml Library API Documentation

render_applet.h

00001 /*
00002  * This file is part of the HTML widget for KDE.
00003  *
00004  * Copyright (C) 1999 Lars Knoll (knoll@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 License
00017  * along with this library; see the file COPYING.LIB.  If not, write to
00018  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
00019  * Boston, MA 02111-1307, USA.
00020  *
00021  * $Id: render_applet.h,v 1.15 2002/10/23 17:03:31 mueller Exp $
00022  */
00023 #ifndef render_applet_h
00024 #define render_applet_h
00025 
00026 #include "rendering/render_replaced.h"
00027 #include "html/html_objectimpl.h"
00028 
00029 #include <qwidget.h>
00030 #include <qmap.h>
00031 
00032 class KHTMLView;
00033 
00034 namespace DOM {
00035     class HTMLElementImpl;
00036 };
00037 
00038 namespace khtml {
00039 
00040 class RenderApplet : public RenderWidget
00041 {
00042 public:
00043     RenderApplet(DOM::HTMLElementImpl* node, const QMap<QString, QString> &args);
00044     virtual ~RenderApplet();
00045 
00046     virtual const char *renderName() const { return "RenderApplet"; }
00047 
00048     virtual void layout();
00049     virtual short intrinsicWidth() const;
00050     virtual int intrinsicHeight() const;
00051     virtual bool isApplet() const { return true; }
00052 
00053     DOM::HTMLElementImpl *element() const
00054     { return static_cast<DOM::HTMLElementImpl*>(RenderObject::element()); }
00055 
00056 private:
00057     void processArguments( const QMap<QString, QString> &args );
00058 };
00059 
00060 };
00061 #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:42 2003 by doxygen 1.2.18 written by Dimitri van Heesch, © 1997-2001