Changes in / [20:30] in webkit


Ignore:
Location:
/trunk/WebCore
Files:
13 added
10 deleted
51 edited

Legend:

Unmodified
Added
Removed
  • /trunk/WebCore/khtml/css

    • Property svn:ignore
      •  

        old new  
        22Makefile.in
        33*.strip
         4cssproperties.c
         5cssproperties.h
         6cssvalues.c
         7cssvalues.h
         8cssvalues.gperf
  • /trunk/WebCore/khtml/css/.cvsignore

    r20 r30  
    22Makefile.in
    33*.strip
     4cssproperties.c
     5cssproperties.h
     6cssvalues.c
     7cssvalues.h
     8cssvalues.gperf
  • /trunk/WebCore/kwq/KWQCString.h

    r20 r30  
    2727#define QCSTRING_H_
    2828
     29// added to help in compilation of khtml/khtml_part.h:811
    2930#include "qarray.h"
    3031
     32// added to help in compilation of khtml/dom/html_documnent.cpp:182
     33class QCString {
     34};
     35
     36inline bool operator!=( const char *s1, const QCString &s2 ) { return 0; } // FIXME
     37inline bool operator!=( const QCString &s1, const char *s2 ) { return 0; } // FIXME
     38
    3139#endif
  • /trunk/WebCore/kwq/KWQDCOPClient.h

    r20 r30  
    2727#define DCOPCLIENT_H_
    2828
     29class QCString;
     30class QByteArray;
     31
     32// KApplication needs this
     33class DCOPClient {
     34public:
     35        bool call(const char *remApp, const char *remObj, const char *remFun, const QByteArray &data,
     36                QCString& replyType, QByteArray &replyData, bool useEventLoop=false, bool fast=false);
     37        bool call(const QCString &remApp, const QCString &remObj, const QCString &remFun, const QByteArray &data,
     38                QCString& replyType, QByteArray &replyData, bool useEventLoop=false, bool fast=false);
     39
     40        bool send(const char *remApp, const char *remObj, const char *remFun, const QByteArray &data, bool fast=false);
     41        bool send(const QCString &remApp, const QCString &remObj, const QCString &remFun, const QByteArray &data,
     42                bool fast=false);
     43
     44
     45};
     46
    2947#endif
  • /trunk/WebCore/kwq/KWQEvent.h

    r20 r30  
    2727#define QEVENT_H_
    2828
     29// all the following events added to support khtmlview.h
     30class QEvent {};
     31class QFocusEvent : public QEvent {};
     32class QHideEvent : public QEvent {};
     33class QKeyEvent : public QEvent {};
     34class QResizeEvent : public QEvent {};
     35class QShowEvent : public QEvent {};
     36class QWheelEvent : public QEvent {};
     37
    2938#endif
  • /trunk/WebCore/kwq/KWQFontMetrics.h

    r20 r30  
    2727#define QFONTMETRICS_H_
    2828
     29class QFontMetrics;
     30
    2931#endif
  • /trunk/WebCore/kwq/KWQKDebug.h

    r20 r30  
    2727#define KDEBUG_H_
    2828
     29#include <qstring.h>
     30
     31class kdbgstream;
     32typedef kdbgstream & (*KDBGFUNC)(kdbgstream &);
     33
     34class kdbgstream {
     35public:
     36        kdbgstream &operator<<(const char *string);
     37        kdbgstream &operator<<(const QString& string);
     38        kdbgstream &operator<<(const QCString& string);
     39        kdbgstream &operator<<(KDBGFUNC f);
     40};
     41
     42inline kdbgstream &endl( kdbgstream &s) { s << "\n"; return s; }
     43
     44kdbgstream kdWarning(int area = 0);
     45kdbgstream kdWarning(bool cond, int area = 0);
     46kdbgstream kdError(int area = 0);
     47kdbgstream kdError(bool cond, int area = 0);
     48kdbgstream kdFatal(int area = 0);
     49kdbgstream kdFatal(bool cond, int area = 0);
     50
    2951#endif
  • /trunk/WebCore/kwq/KWQKJob.h

    r20 r30  
    2727#define JOB_H_
    2828
     29// added to help in compilation of khtml/khtml_part.h:867
     30namespace KIO {
     31
     32class Job {
     33};
     34
     35}
     36
    2937#endif
  • /trunk/WebCore/kwq/KWQKPartsBrowserExtension.h

    r20 r30  
    2727#define BROWSEREXTENSION_H_
    2828
     29// Added for compilation of khtml/dom/html_document.cpp:184
     30#include <qdatastream.h>
     31
     32// Added for compilation of khtml/khtml_part.h:734
     33class QPoint;
     34
     35// Added for compilation of khtml/khtml_part.h:755
     36class QEvent;
     37
     38namespace KParts {
     39
     40// Added for compilation of khtml/khtml_part.h:695
     41struct URLArgs {
     42};
     43
     44class BrowserExtension {
     45};
     46
     47};
     48
    2949#endif
  • /trunk/WebCore/kwq/KWQMap.h

    r20 r30  
    2727#define QMAP_H_
    2828
     29template <class K, class T> class QMap {
     30};
     31
    2932#endif
  • /trunk/WebCore/kwq/KWQObject.h

    r20 r30  
    2727#define QOBJECT_H_
    2828
     29// includes added to help in compilation of khtml/khtmlview.h
     30#include "qobjectdefs.h"
     31#include "qevent.h"
     32
    2933// FIXME: should these macros be in "kwq.h" or other header file?
    3034#define slots
  • /trunk/WebCore/kwq/KWQPaintDevice.h

    r20 r30  
    2727#define QPAINTDEVICE_H_
    2828
     29#include "qrect.h"
     30
    2931#endif
  • /trunk/WebCore/kwq/KWQPixmap.h

    r20 r30  
    2727#define QPIXMAP_H_
    2828
     29#include "qpaintdevice.h"
     30
    2931class QPixmap {
    3032};
  • /trunk/WebCore/kwq/KWQRegExp.h

    r20 r30  
    2727#define QREGEXP_H_
    2828
     29class QRegExp {
     30};
     31
    2932#endif
  • /trunk/WebCore/kwq/KWQScrollView.h

    r20 r30  
    2727#define QSCROLLVIEW_H_
    2828
    29 class QScrollView {
     29#include "qwidget.h"
     30
     31class QScrollView : public QWidget {
    3032        typedef int ScrollBarMode;
    3133};
  • /trunk/WebCore/kwq/KWQString.h

    r20 r30  
    3838    QChar lower() const;
    3939    char latin1() const;
    40     bool isDigit();
     40    bool isDigit() const;
     41    bool isSpace() const;
    4142    friend inline int operator==(QChar, QChar);
    4243    friend inline int operator!=(QChar, QChar);
     
    4647public:
    4748    QString();
     49    QString(const QChar *, uint);
     50    QString(const char *s);
    4851    int toInt() const;
    4952    int toInt(bool *) const;
     
    5255    uint length() const;
    5356    QString &sprintf(const char *format, ...);
     57    QString lower() const;
     58    QString stripWhiteSpace() const;
     59    bool isEmpty() const;
     60    int contains(const char *) const;
     61    const char *ascii() const;
     62    // FIXME: is there a standard parameter type for overloaded operators?
     63    QChar operator[](int) const;
     64    QString &operator+=(QChar c);
     65
     66    QString &append(const char *);
     67    QString &append(const QString &);
     68
     69    QCString utf8() const;
    5470
    5571    static const QString null;
  • /trunk/WebCore/kwq/KWQWidget.h

    r20 r30  
    2828
    2929class QWidget {
     30public:
     31        int winId() const;
    3032};
    3133
  • /trunk/WebCore/kwq/dcop/dcopclient.h

    r20 r30  
    2727#define DCOPCLIENT_H_
    2828
     29class QCString;
     30class QByteArray;
     31
     32// KApplication needs this
     33class DCOPClient {
     34public:
     35        bool call(const char *remApp, const char *remObj, const char *remFun, const QByteArray &data,
     36                QCString& replyType, QByteArray &replyData, bool useEventLoop=false, bool fast=false);
     37        bool call(const QCString &remApp, const QCString &remObj, const QCString &remFun, const QByteArray &data,
     38                QCString& replyType, QByteArray &replyData, bool useEventLoop=false, bool fast=false);
     39
     40        bool send(const char *remApp, const char *remObj, const char *remFun, const QByteArray &data, bool fast=false);
     41        bool send(const QCString &remApp, const QCString &remObj, const QCString &remFun, const QByteArray &data,
     42                bool fast=false);
     43
     44
     45};
     46
    2947#endif
  • /trunk/WebCore/kwq/kdecore/kapp.h

    r20 r30  
    2727#define KAPP_H_
    2828
     29#include <dcopclient.h>
     30
     31#define kapp KApplication::kApplication()
     32
     33class KApplication {
     34public:
     35        static KApplication* kApplication() { return KApp; }
     36        virtual DCOPClient *dcopClient();
     37protected:
     38        static KApplication *KApp;
     39};
     40
     41
    2942#endif
  • /trunk/WebCore/kwq/kdecore/kdebug.h

    r20 r30  
    2727#define KDEBUG_H_
    2828
     29#include <qstring.h>
     30
     31class kdbgstream;
     32typedef kdbgstream & (*KDBGFUNC)(kdbgstream &);
     33
     34class kdbgstream {
     35public:
     36        kdbgstream &operator<<(const char *string);
     37        kdbgstream &operator<<(const QString& string);
     38        kdbgstream &operator<<(const QCString& string);
     39        kdbgstream &operator<<(KDBGFUNC f);
     40};
     41
     42inline kdbgstream &endl( kdbgstream &s) { s << "\n"; return s; }
     43
     44kdbgstream kdWarning(int area = 0);
     45kdbgstream kdWarning(bool cond, int area = 0);
     46kdbgstream kdError(int area = 0);
     47kdbgstream kdError(bool cond, int area = 0);
     48kdbgstream kdFatal(int area = 0);
     49kdbgstream kdFatal(bool cond, int area = 0);
     50
    2951#endif
  • /trunk/WebCore/kwq/kio/job.h

    r20 r30  
    2727#define JOB_H_
    2828
     29// added to help in compilation of khtml/khtml_part.h:867
     30namespace KIO {
     31
     32class Job {
     33};
     34
     35}
     36
    2937#endif
  • /trunk/WebCore/kwq/kparts/browserextension.h

    r20 r30  
    2727#define BROWSEREXTENSION_H_
    2828
     29// Added for compilation of khtml/dom/html_document.cpp:184
     30#include <qdatastream.h>
     31
     32// Added for compilation of khtml/khtml_part.h:734
     33class QPoint;
     34
     35// Added for compilation of khtml/khtml_part.h:755
     36class QEvent;
     37
     38namespace KParts {
     39
     40// Added for compilation of khtml/khtml_part.h:695
     41struct URLArgs {
     42};
     43
     44class BrowserExtension {
     45};
     46
     47};
     48
    2949#endif
  • /trunk/WebCore/kwq/qt/qcstring.h

    r20 r30  
    2727#define QCSTRING_H_
    2828
     29// added to help in compilation of khtml/khtml_part.h:811
    2930#include "qarray.h"
    3031
     32// added to help in compilation of khtml/dom/html_documnent.cpp:182
     33class QCString {
     34};
     35
     36inline bool operator!=( const char *s1, const QCString &s2 ) { return 0; } // FIXME
     37inline bool operator!=( const QCString &s1, const char *s2 ) { return 0; } // FIXME
     38
    3139#endif
  • /trunk/WebCore/kwq/qt/qevent.h

    r20 r30  
    2727#define QEVENT_H_
    2828
     29// all the following events added to support khtmlview.h
     30class QEvent {};
     31class QFocusEvent : public QEvent {};
     32class QHideEvent : public QEvent {};
     33class QKeyEvent : public QEvent {};
     34class QResizeEvent : public QEvent {};
     35class QShowEvent : public QEvent {};
     36class QWheelEvent : public QEvent {};
     37
    2938#endif
  • /trunk/WebCore/kwq/qt/qfontmetrics.h

    r20 r30  
    2727#define QFONTMETRICS_H_
    2828
     29class QFontMetrics;
     30
    2931#endif
  • /trunk/WebCore/kwq/qt/qmap.h

    r20 r30  
    2727#define QMAP_H_
    2828
     29template <class K, class T> class QMap {
     30};
     31
    2932#endif
  • /trunk/WebCore/kwq/qt/qobject.h

    r20 r30  
    2727#define QOBJECT_H_
    2828
     29// includes added to help in compilation of khtml/khtmlview.h
     30#include "qobjectdefs.h"
     31#include "qevent.h"
     32
    2933// FIXME: should these macros be in "kwq.h" or other header file?
    3034#define slots
  • /trunk/WebCore/kwq/qt/qpaintdevice.h

    r20 r30  
    2727#define QPAINTDEVICE_H_
    2828
     29#include "qrect.h"
     30
    2931#endif
  • /trunk/WebCore/kwq/qt/qpixmap.h

    r20 r30  
    2727#define QPIXMAP_H_
    2828
     29#include "qpaintdevice.h"
     30
    2931class QPixmap {
    3032};
  • /trunk/WebCore/kwq/qt/qregexp.h

    r20 r30  
    2727#define QREGEXP_H_
    2828
     29class QRegExp {
     30};
     31
    2932#endif
  • /trunk/WebCore/kwq/qt/qscrollview.h

    r20 r30  
    2727#define QSCROLLVIEW_H_
    2828
    29 class QScrollView {
     29#include "qwidget.h"
     30
     31class QScrollView : public QWidget {
    3032        typedef int ScrollBarMode;
    3133};
  • /trunk/WebCore/kwq/qt/qstring.h

    r20 r30  
    3838    QChar lower() const;
    3939    char latin1() const;
    40     bool isDigit();
     40    bool isDigit() const;
     41    bool isSpace() const;
    4142    friend inline int operator==(QChar, QChar);
    4243    friend inline int operator!=(QChar, QChar);
     
    4647public:
    4748    QString();
     49    QString(const QChar *, uint);
     50    QString(const char *s);
    4851    int toInt() const;
    4952    int toInt(bool *) const;
     
    5255    uint length() const;
    5356    QString &sprintf(const char *format, ...);
     57    QString lower() const;
     58    QString stripWhiteSpace() const;
     59    bool isEmpty() const;
     60    int contains(const char *) const;
     61    const char *ascii() const;
     62    // FIXME: is there a standard parameter type for overloaded operators?
     63    QChar operator[](int) const;
     64    QString &operator+=(QChar c);
     65
     66    QString &append(const char *);
     67    QString &append(const QString &);
     68
     69    QCString utf8() const;
    5470
    5571    static const QString null;
  • /trunk/WebCore/kwq/qt/qwidget.h

    r20 r30  
    2828
    2929class QWidget {
     30public:
     31        int winId() const;
    3032};
    3133
  • /trunk/WebCore/src/kdelibs/khtml/css

    • Property svn:ignore
      •  

        old new  
        22Makefile.in
        33*.strip
         4cssproperties.c
         5cssproperties.h
         6cssvalues.c
         7cssvalues.h
         8cssvalues.gperf
  • /trunk/WebCore/src/kdelibs/khtml/css/.cvsignore

    r20 r30  
    22Makefile.in
    33*.strip
     4cssproperties.c
     5cssproperties.h
     6cssvalues.c
     7cssvalues.h
     8cssvalues.gperf
  • /trunk/WebCore/src/kwq/dcop/dcopclient.h

    r20 r30  
    2727#define DCOPCLIENT_H_
    2828
     29class QCString;
     30class QByteArray;
     31
     32// KApplication needs this
     33class DCOPClient {
     34public:
     35        bool call(const char *remApp, const char *remObj, const char *remFun, const QByteArray &data,
     36                QCString& replyType, QByteArray &replyData, bool useEventLoop=false, bool fast=false);
     37        bool call(const QCString &remApp, const QCString &remObj, const QCString &remFun, const QByteArray &data,
     38                QCString& replyType, QByteArray &replyData, bool useEventLoop=false, bool fast=false);
     39
     40        bool send(const char *remApp, const char *remObj, const char *remFun, const QByteArray &data, bool fast=false);
     41        bool send(const QCString &remApp, const QCString &remObj, const QCString &remFun, const QByteArray &data,
     42                bool fast=false);
     43
     44
     45};
     46
    2947#endif
  • /trunk/WebCore/src/kwq/kdecore/kapp.h

    r20 r30  
    2727#define KAPP_H_
    2828
     29#include <dcopclient.h>
     30
     31#define kapp KApplication::kApplication()
     32
     33class KApplication {
     34public:
     35        static KApplication* kApplication() { return KApp; }
     36        virtual DCOPClient *dcopClient();
     37protected:
     38        static KApplication *KApp;
     39};
     40
     41
    2942#endif
  • /trunk/WebCore/src/kwq/kdecore/kdebug.h

    r20 r30  
    2727#define KDEBUG_H_
    2828
     29#include <qstring.h>
     30
     31class kdbgstream;
     32typedef kdbgstream & (*KDBGFUNC)(kdbgstream &);
     33
     34class kdbgstream {
     35public:
     36        kdbgstream &operator<<(const char *string);
     37        kdbgstream &operator<<(const QString& string);
     38        kdbgstream &operator<<(const QCString& string);
     39        kdbgstream &operator<<(KDBGFUNC f);
     40};
     41
     42inline kdbgstream &endl( kdbgstream &s) { s << "\n"; return s; }
     43
     44kdbgstream kdWarning(int area = 0);
     45kdbgstream kdWarning(bool cond, int area = 0);
     46kdbgstream kdError(int area = 0);
     47kdbgstream kdError(bool cond, int area = 0);
     48kdbgstream kdFatal(int area = 0);
     49kdbgstream kdFatal(bool cond, int area = 0);
     50
    2951#endif
  • /trunk/WebCore/src/kwq/kio/job.h

    r20 r30  
    2727#define JOB_H_
    2828
     29// added to help in compilation of khtml/khtml_part.h:867
     30namespace KIO {
     31
     32class Job {
     33};
     34
     35}
     36
    2937#endif
  • /trunk/WebCore/src/kwq/kparts/browserextension.h

    r20 r30  
    2727#define BROWSEREXTENSION_H_
    2828
     29// Added for compilation of khtml/dom/html_document.cpp:184
     30#include <qdatastream.h>
     31
     32// Added for compilation of khtml/khtml_part.h:734
     33class QPoint;
     34
     35// Added for compilation of khtml/khtml_part.h:755
     36class QEvent;
     37
     38namespace KParts {
     39
     40// Added for compilation of khtml/khtml_part.h:695
     41struct URLArgs {
     42};
     43
     44class BrowserExtension {
     45};
     46
     47};
     48
    2949#endif
  • /trunk/WebCore/src/kwq/qt/qcstring.h

    r20 r30  
    2727#define QCSTRING_H_
    2828
     29// added to help in compilation of khtml/khtml_part.h:811
    2930#include "qarray.h"
    3031
     32// added to help in compilation of khtml/dom/html_documnent.cpp:182
     33class QCString {
     34};
     35
     36inline bool operator!=( const char *s1, const QCString &s2 ) { return 0; } // FIXME
     37inline bool operator!=( const QCString &s1, const char *s2 ) { return 0; } // FIXME
     38
    3139#endif
  • /trunk/WebCore/src/kwq/qt/qevent.h

    r20 r30  
    2727#define QEVENT_H_
    2828
     29// all the following events added to support khtmlview.h
     30class QEvent {};
     31class QFocusEvent : public QEvent {};
     32class QHideEvent : public QEvent {};
     33class QKeyEvent : public QEvent {};
     34class QResizeEvent : public QEvent {};
     35class QShowEvent : public QEvent {};
     36class QWheelEvent : public QEvent {};
     37
    2938#endif
  • /trunk/WebCore/src/kwq/qt/qfontmetrics.h

    r20 r30  
    2727#define QFONTMETRICS_H_
    2828
     29class QFontMetrics;
     30
    2931#endif
  • /trunk/WebCore/src/kwq/qt/qmap.h

    r20 r30  
    2727#define QMAP_H_
    2828
     29template <class K, class T> class QMap {
     30};
     31
    2932#endif
  • /trunk/WebCore/src/kwq/qt/qobject.h

    r20 r30  
    2727#define QOBJECT_H_
    2828
     29// includes added to help in compilation of khtml/khtmlview.h
     30#include "qobjectdefs.h"
     31#include "qevent.h"
     32
    2933// FIXME: should these macros be in "kwq.h" or other header file?
    3034#define slots
  • /trunk/WebCore/src/kwq/qt/qpaintdevice.h

    r20 r30  
    2727#define QPAINTDEVICE_H_
    2828
     29#include "qrect.h"
     30
    2931#endif
  • /trunk/WebCore/src/kwq/qt/qpixmap.h

    r20 r30  
    2727#define QPIXMAP_H_
    2828
     29#include "qpaintdevice.h"
     30
    2931class QPixmap {
    3032};
  • /trunk/WebCore/src/kwq/qt/qregexp.h

    r20 r30  
    2727#define QREGEXP_H_
    2828
     29class QRegExp {
     30};
     31
    2932#endif
  • /trunk/WebCore/src/kwq/qt/qscrollview.h

    r20 r30  
    2727#define QSCROLLVIEW_H_
    2828
    29 class QScrollView {
     29#include "qwidget.h"
     30
     31class QScrollView : public QWidget {
    3032        typedef int ScrollBarMode;
    3133};
  • /trunk/WebCore/src/kwq/qt/qstring.h

    r20 r30  
    3838    QChar lower() const;
    3939    char latin1() const;
    40     bool isDigit();
     40    bool isDigit() const;
     41    bool isSpace() const;
    4142    friend inline int operator==(QChar, QChar);
    4243    friend inline int operator!=(QChar, QChar);
     
    4647public:
    4748    QString();
     49    QString(const QChar *, uint);
     50    QString(const char *s);
    4851    int toInt() const;
    4952    int toInt(bool *) const;
     
    5255    uint length() const;
    5356    QString &sprintf(const char *format, ...);
     57    QString lower() const;
     58    QString stripWhiteSpace() const;
     59    bool isEmpty() const;
     60    int contains(const char *) const;
     61    const char *ascii() const;
     62    // FIXME: is there a standard parameter type for overloaded operators?
     63    QChar operator[](int) const;
     64    QString &operator+=(QChar c);
     65
     66    QString &append(const char *);
     67    QString &append(const QString &);
     68
     69    QCString utf8() const;
    5470
    5571    static const QString null;
  • /trunk/WebCore/src/kwq/qt/qwidget.h

    r20 r30  
    2828
    2929class QWidget {
     30public:
     31        int winId() const;
    3032};
    3133
Note: See TracChangeset for help on using the changeset viewer.