~ubuntu-branches/ubuntu/utopic/kde4libs/utopic

« back to all changes in this revision

Viewing changes to khtml/rendering/render_form.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-08-01 16:16:35 UTC
  • mfrom: (1.14.20)
  • Revision ID: package-import@ubuntu.com-20120801161635-qewual50h0fwfeju
Tags: 4:4.9.0a-0ubuntu1
New tar from upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
96
96
protected:
97
97
    virtual bool isRenderButton() const { return false; }
98
98
    virtual bool isEditable() const { return false; }
99
 
        Qt::AlignmentFlag textAlignment() const;
 
99
    Qt::Alignment textAlignment() const;
100
100
 
101
101
    virtual void setPadding();
102
102
    KdeUiProxyStyle* getProxyStyle();
529
529
    { return static_cast<DOM::HTMLTextAreaElementImpl*>(RenderObject::element()); }
530
530
 
531
531
    QString text();
532
 
    void    setText(const QString& text);
 
532
    void setText(const QString& text);
533
533
 
534
534
    void highLightWord( unsigned int length, unsigned int pos );
535
535
 
550
550
    virtual bool canHaveBorder() const { return true; }
551
551
 
552
552
    bool scrollbarsStyled;
 
553
    Qt::Alignment m_textAlignment;
553
554
};
554
555
 
555
556
// -------------------------------------------------------------------------