/* * This file is part of the DOM implementation for KDE. * * Copyright (C) 1999 Lars Knoll (knoll@kde.org) * (C) 1999 Antti Koivisto (koivisto@kde.org) * (C) 2000 Dirk Mueller (mueller@kde.org) * Copyright (C) 2003 Apple Computer, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * */ #ifndef RENDER_FORM_H #define RENDER_FORM_H #include "rendering/render_replaced.h" #include "rendering/render_image.h" #include "rendering/render_block.h" #include "html/html_formimpl.h" class QWidget; class QLineEdit; class QListboxItem; #include #include #include #include #include #include #include #include #include "dom/dom_misc.h" typedef class QTextEdit KTextEdit; class KHTMLPartBrowserExtension; namespace DOM { class HTMLFormElementImpl; class HTMLInputElementImpl; class HTMLSelectElementImpl; class HTMLGenericFormElementImpl; class HTMLTextAreaElementImpl; }; namespace khtml { class DocLoader; // ------------------------------------------------------------------------- class RenderFormElement : public khtml::RenderWidget { Q_OBJECT public: RenderFormElement(DOM::HTMLGenericFormElementImpl* node); virtual ~RenderFormElement(); virtual const char *renderName() const { return "RenderForm"; } virtual bool isFormElement() const { return true; } #if APPLE_CHANGES // Aqua form controls never have border/padding. int borderTop() const { return 0; } int borderBottom() const { return 0; } int borderLeft() const { return 0; } int borderRight() const { return 0; } int paddingTop() const { return 0; } int paddingBottom() const { return 0; } int paddingLeft() const { return 0; } int paddingRight() const { return 0; } // Aqua controls use intrinsic margin values in order to leave space for focus rings // and to keep controls from butting up against one another. This intrinsic margin // is only applied if the Web page allows the control to size intrinsically. If the // Web page specifies an explicit width for a control, then we go ahead and honor that // precise width. Similarly, if a Web page uses a specific margin value, we will go ahead // and honor that value. void addIntrinsicMarginsIfAllowed(RenderStyle* _style); virtual bool canHaveIntrinsicMargins() const { return false; } int intrinsicMargin() const { return 2; } virtual void setStyle(RenderStyle* _style); #endif virtual void updateFromElement(); virtual void layout(); virtual short baselinePosition( bool, bool ) const; DOM::HTMLGenericFormElementImpl *element() const { return static_cast(RenderObject::element()); } public slots: virtual void slotClicked(); protected: virtual bool isRenderButton() const { return false; } virtual bool isEditable() const { return false; } QPoint m_mousePos; int m_state; int m_button; int m_clickCount; bool m_isDoubleClick; }; // ------------------------------------------------------------------------- // generic class for all buttons class RenderButton : public RenderFormElement { Q_OBJECT public: RenderButton(DOM::HTMLGenericFormElementImpl* node); #if APPLE_CHANGES int calcReplacedHeight() const { return intrinsicHeight(); } virtual bool canHaveIntrinsicMargins() const { return true; } #endif virtual const char *renderName() const { return "RenderButton"; } virtual short baselinePosition( bool, bool ) const; // don't even think about making this method virtual! DOM::HTMLInputElementImpl* element() const { return static_cast(RenderObject::element()); } protected: virtual bool isRenderButton() const { return true; } }; // ------------------------------------------------------------------------- class RenderCheckBox : public RenderButton { Q_OBJECT public: RenderCheckBox(DOM::HTMLInputElementImpl* node); virtual const char *renderName() const { return "RenderCheckBox"; } virtual void updateFromElement(); virtual void calcMinMaxWidth(); QCheckBox *widget() const { return static_cast(m_widget); } public slots: virtual void slotStateChanged(int state); }; // ------------------------------------------------------------------------- class RenderRadioButton : public RenderButton { Q_OBJECT public: RenderRadioButton(DOM::HTMLInputElementImpl* node); virtual const char *renderName() const { return "RenderRadioButton"; } virtual void calcMinMaxWidth(); virtual void updateFromElement(); QRadioButton *widget() const { return static_cast(m_widget); } public slots: void slotClicked(); }; // ------------------------------------------------------------------------- class RenderSubmitButton : public RenderButton { public: RenderSubmitButton(DOM::HTMLInputElementImpl *element); virtual const char *renderName() const { return "RenderSubmitButton"; } virtual QString defaultLabel(); virtual void calcMinMaxWidth(); virtual void updateFromElement(); virtual short baselinePosition( bool, bool ) const; private: QString rawText(); }; // ------------------------------------------------------------------------- class RenderImageButton : public RenderImage { public: RenderImageButton(DOM::HTMLInputElementImpl *element); virtual const char *renderName() const { return "RenderImageButton"; } }; // ------------------------------------------------------------------------- class RenderResetButton : public RenderSubmitButton { public: RenderResetButton(DOM::HTMLInputElementImpl *element); virtual const char *renderName() const { return "RenderResetButton"; } virtual QString defaultLabel(); }; // ------------------------------------------------------------------------- class RenderPushButton : public RenderSubmitButton { public: RenderPushButton(DOM::HTMLInputElementImpl *element); virtual QString defaultLabel(); }; // ------------------------------------------------------------------------- class RenderLineEdit : public RenderFormElement { Q_OBJECT public: RenderLineEdit(DOM::HTMLInputElementImpl *element); virtual void calcMinMaxWidth(); #if APPLE_CHANGES int calcReplacedHeight() const { return intrinsicHeight(); } virtual bool canHaveIntrinsicMargins() const { return true; } #endif virtual const char *renderName() const { return "RenderLineEdit"; } virtual void updateFromElement(); void select(); KLineEdit *widget() const { return static_cast(m_widget); } DOM::HTMLInputElementImpl* element() const { return static_cast(RenderObject::element()); } public slots: void slotReturnPressed(); void slotTextChanged(const QString &string); protected: virtual void handleFocusOut(); private: virtual bool isEditable() const { return true; } bool m_updating; }; // ------------------------------------------------------------------------- class LineEditWidget : public KLineEdit { public: LineEditWidget(QWidget *parent); protected: virtual bool event( QEvent *e ); }; // ------------------------------------------------------------------------- class RenderFieldset : public RenderBlock { public: RenderFieldset(DOM::HTMLGenericFormElementImpl *element); virtual const char *renderName() const { return "RenderFieldSet"; } virtual RenderObject* layoutLegend(bool relayoutChildren); virtual void setStyle(RenderStyle* _style); protected: virtual void paintBoxDecorations(QPainter *p,int, int _y, int, int _h, int _tx, int _ty); void paintBorderMinusLegend(QPainter *p, int _tx, int _ty, int w, int h, const RenderStyle *style, int lx, int lw); RenderObject* findLegend(); }; // ------------------------------------------------------------------------- class RenderFileButton : public RenderFormElement { Q_OBJECT public: RenderFileButton(DOM::HTMLInputElementImpl *element); virtual const char *renderName() const { return "RenderFileButton"; } virtual void calcMinMaxWidth(); virtual void updateFromElement(); void select(); #if APPLE_CHANGES int calcReplacedHeight() const { return intrinsicHeight(); } #endif DOM::HTMLInputElementImpl *element() const { return static_cast(RenderObject::element()); } KLineEdit* lineEdit() const { return m_edit; } public slots: virtual void slotClicked(); virtual void slotReturnPressed(); virtual void slotTextChanged(const QString &string); protected: virtual void handleFocusOut(); virtual bool isEditable() const { return true; } bool m_clicked; bool m_haveFocus; KLineEdit *m_edit; QPushButton *m_button; }; // ------------------------------------------------------------------------- class RenderLabel : public RenderFormElement { public: RenderLabel(DOM::HTMLGenericFormElementImpl *element); virtual const char *renderName() const { return "RenderLabel"; } }; // ------------------------------------------------------------------------- class RenderLegend : public RenderBlock { public: RenderLegend(DOM::HTMLGenericFormElementImpl *element); virtual const char *renderName() const { return "RenderLegend"; } }; // ------------------------------------------------------------------------- class ComboBoxWidget : public KComboBox { public: ComboBoxWidget(QWidget *parent); protected: virtual bool event(QEvent *); virtual bool eventFilter(QObject *dest, QEvent *e); }; // ------------------------------------------------------------------------- class RenderSelect : public RenderFormElement { Q_OBJECT public: RenderSelect(DOM::HTMLSelectElementImpl *element); virtual const char *renderName() const { return "RenderSelect"; } #if APPLE_CHANGES short baselinePosition( bool f, bool b ) const; int calcReplacedHeight() const { if (!m_useListBox) return intrinsicHeight(); return RenderFormElement::calcReplacedHeight(); } virtual bool canHaveIntrinsicMargins() const { return true; } #endif virtual void calcMinMaxWidth(); virtual void layout(); void setOptionsChanged(bool _optionsChanged); bool selectionChanged() { return m_selectionChanged; } void setSelectionChanged(bool _selectionChanged) { m_selectionChanged = _selectionChanged; } virtual void updateFromElement(); void updateSelection(); DOM::HTMLSelectElementImpl *element() const { return static_cast(RenderObject::element()); } protected: KListBox *createListBox(); ComboBoxWidget *createComboBox(); unsigned m_size; bool m_multiple; bool m_useListBox; bool m_selectionChanged; bool m_ignoreSelectEvents; bool m_optionsChanged; protected slots: void slotSelected(int index); void slotSelectionChanged(); }; // ------------------------------------------------------------------------- class TextAreaWidget : public KTextEdit { public: TextAreaWidget(int wrap, QWidget* parent); protected: virtual bool event (QEvent *e ); }; // ------------------------------------------------------------------------- class RenderTextArea : public RenderFormElement { Q_OBJECT public: RenderTextArea(DOM::HTMLTextAreaElementImpl *element); virtual void detach(RenderArena *arena); virtual const char *renderName() const { return "RenderTextArea"; } virtual void calcMinMaxWidth(); virtual void close ( ); virtual void updateFromElement(); virtual bool isTextArea() const { return true; } // don't even think about making this method virtual! DOM::HTMLTextAreaElementImpl* element() const { return static_cast(RenderObject::element()); } QString text(); void select(); #if APPLE_CHANGES virtual bool canHaveIntrinsicMargins() const { return true; } #endif protected slots: void slotTextChanged(); protected: virtual void handleFocusOut(); virtual bool isEditable() const { return true; } }; // ------------------------------------------------------------------------- }; //namespace #endif