- Location:
- /trunk/WebCore
- Files:
-
- 13 added
- 10 deleted
- 51 edited
Legend:
- Unmodified
- Added
- Removed
-
/trunk/WebCore/khtml/css
- Property svn:ignore
-
old new 2 2 Makefile.in 3 3 *.strip 4 cssproperties.c 5 cssproperties.h 6 cssvalues.c 7 cssvalues.h 8 cssvalues.gperf
-
- Property svn:ignore
-
/trunk/WebCore/khtml/css/.cvsignore
r20 r30 2 2 Makefile.in 3 3 *.strip 4 cssproperties.c 5 cssproperties.h 6 cssvalues.c 7 cssvalues.h 8 cssvalues.gperf -
/trunk/WebCore/kwq/KWQCString.h
r20 r30 27 27 #define QCSTRING_H_ 28 28 29 // added to help in compilation of khtml/khtml_part.h:811 29 30 #include "qarray.h" 30 31 32 // added to help in compilation of khtml/dom/html_documnent.cpp:182 33 class QCString { 34 }; 35 36 inline bool operator!=( const char *s1, const QCString &s2 ) { return 0; } // FIXME 37 inline bool operator!=( const QCString &s1, const char *s2 ) { return 0; } // FIXME 38 31 39 #endif -
/trunk/WebCore/kwq/KWQDCOPClient.h
r20 r30 27 27 #define DCOPCLIENT_H_ 28 28 29 class QCString; 30 class QByteArray; 31 32 // KApplication needs this 33 class DCOPClient { 34 public: 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 29 47 #endif -
/trunk/WebCore/kwq/KWQEvent.h
r20 r30 27 27 #define QEVENT_H_ 28 28 29 // all the following events added to support khtmlview.h 30 class QEvent {}; 31 class QFocusEvent : public QEvent {}; 32 class QHideEvent : public QEvent {}; 33 class QKeyEvent : public QEvent {}; 34 class QResizeEvent : public QEvent {}; 35 class QShowEvent : public QEvent {}; 36 class QWheelEvent : public QEvent {}; 37 29 38 #endif -
/trunk/WebCore/kwq/KWQFontMetrics.h
r20 r30 27 27 #define QFONTMETRICS_H_ 28 28 29 class QFontMetrics; 30 29 31 #endif -
/trunk/WebCore/kwq/KWQKDebug.h
r20 r30 27 27 #define KDEBUG_H_ 28 28 29 #include <qstring.h> 30 31 class kdbgstream; 32 typedef kdbgstream & (*KDBGFUNC)(kdbgstream &); 33 34 class kdbgstream { 35 public: 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 42 inline kdbgstream &endl( kdbgstream &s) { s << "\n"; return s; } 43 44 kdbgstream kdWarning(int area = 0); 45 kdbgstream kdWarning(bool cond, int area = 0); 46 kdbgstream kdError(int area = 0); 47 kdbgstream kdError(bool cond, int area = 0); 48 kdbgstream kdFatal(int area = 0); 49 kdbgstream kdFatal(bool cond, int area = 0); 50 29 51 #endif -
/trunk/WebCore/kwq/KWQKJob.h
r20 r30 27 27 #define JOB_H_ 28 28 29 // added to help in compilation of khtml/khtml_part.h:867 30 namespace KIO { 31 32 class Job { 33 }; 34 35 } 36 29 37 #endif -
/trunk/WebCore/kwq/KWQKPartsBrowserExtension.h
r20 r30 27 27 #define BROWSEREXTENSION_H_ 28 28 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 33 class QPoint; 34 35 // Added for compilation of khtml/khtml_part.h:755 36 class QEvent; 37 38 namespace KParts { 39 40 // Added for compilation of khtml/khtml_part.h:695 41 struct URLArgs { 42 }; 43 44 class BrowserExtension { 45 }; 46 47 }; 48 29 49 #endif -
/trunk/WebCore/kwq/KWQMap.h
r20 r30 27 27 #define QMAP_H_ 28 28 29 template <class K, class T> class QMap { 30 }; 31 29 32 #endif -
/trunk/WebCore/kwq/KWQObject.h
r20 r30 27 27 #define QOBJECT_H_ 28 28 29 // includes added to help in compilation of khtml/khtmlview.h 30 #include "qobjectdefs.h" 31 #include "qevent.h" 32 29 33 // FIXME: should these macros be in "kwq.h" or other header file? 30 34 #define slots -
/trunk/WebCore/kwq/KWQPaintDevice.h
r20 r30 27 27 #define QPAINTDEVICE_H_ 28 28 29 #include "qrect.h" 30 29 31 #endif -
/trunk/WebCore/kwq/KWQPixmap.h
r20 r30 27 27 #define QPIXMAP_H_ 28 28 29 #include "qpaintdevice.h" 30 29 31 class QPixmap { 30 32 }; -
/trunk/WebCore/kwq/KWQRegExp.h
r20 r30 27 27 #define QREGEXP_H_ 28 28 29 class QRegExp { 30 }; 31 29 32 #endif -
/trunk/WebCore/kwq/KWQScrollView.h
r20 r30 27 27 #define QSCROLLVIEW_H_ 28 28 29 class QScrollView { 29 #include "qwidget.h" 30 31 class QScrollView : public QWidget { 30 32 typedef int ScrollBarMode; 31 33 }; -
/trunk/WebCore/kwq/KWQString.h
r20 r30 38 38 QChar lower() const; 39 39 char latin1() const; 40 bool isDigit(); 40 bool isDigit() const; 41 bool isSpace() const; 41 42 friend inline int operator==(QChar, QChar); 42 43 friend inline int operator!=(QChar, QChar); … … 46 47 public: 47 48 QString(); 49 QString(const QChar *, uint); 50 QString(const char *s); 48 51 int toInt() const; 49 52 int toInt(bool *) const; … … 52 55 uint length() const; 53 56 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; 54 70 55 71 static const QString null; -
/trunk/WebCore/kwq/KWQWidget.h
r20 r30 28 28 29 29 class QWidget { 30 public: 31 int winId() const; 30 32 }; 31 33 -
/trunk/WebCore/kwq/dcop/dcopclient.h
r20 r30 27 27 #define DCOPCLIENT_H_ 28 28 29 class QCString; 30 class QByteArray; 31 32 // KApplication needs this 33 class DCOPClient { 34 public: 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 29 47 #endif -
/trunk/WebCore/kwq/kdecore/kapp.h
r20 r30 27 27 #define KAPP_H_ 28 28 29 #include <dcopclient.h> 30 31 #define kapp KApplication::kApplication() 32 33 class KApplication { 34 public: 35 static KApplication* kApplication() { return KApp; } 36 virtual DCOPClient *dcopClient(); 37 protected: 38 static KApplication *KApp; 39 }; 40 41 29 42 #endif -
/trunk/WebCore/kwq/kdecore/kdebug.h
r20 r30 27 27 #define KDEBUG_H_ 28 28 29 #include <qstring.h> 30 31 class kdbgstream; 32 typedef kdbgstream & (*KDBGFUNC)(kdbgstream &); 33 34 class kdbgstream { 35 public: 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 42 inline kdbgstream &endl( kdbgstream &s) { s << "\n"; return s; } 43 44 kdbgstream kdWarning(int area = 0); 45 kdbgstream kdWarning(bool cond, int area = 0); 46 kdbgstream kdError(int area = 0); 47 kdbgstream kdError(bool cond, int area = 0); 48 kdbgstream kdFatal(int area = 0); 49 kdbgstream kdFatal(bool cond, int area = 0); 50 29 51 #endif -
/trunk/WebCore/kwq/kio/job.h
r20 r30 27 27 #define JOB_H_ 28 28 29 // added to help in compilation of khtml/khtml_part.h:867 30 namespace KIO { 31 32 class Job { 33 }; 34 35 } 36 29 37 #endif -
/trunk/WebCore/kwq/kparts/browserextension.h
r20 r30 27 27 #define BROWSEREXTENSION_H_ 28 28 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 33 class QPoint; 34 35 // Added for compilation of khtml/khtml_part.h:755 36 class QEvent; 37 38 namespace KParts { 39 40 // Added for compilation of khtml/khtml_part.h:695 41 struct URLArgs { 42 }; 43 44 class BrowserExtension { 45 }; 46 47 }; 48 29 49 #endif -
/trunk/WebCore/kwq/qt/qcstring.h
r20 r30 27 27 #define QCSTRING_H_ 28 28 29 // added to help in compilation of khtml/khtml_part.h:811 29 30 #include "qarray.h" 30 31 32 // added to help in compilation of khtml/dom/html_documnent.cpp:182 33 class QCString { 34 }; 35 36 inline bool operator!=( const char *s1, const QCString &s2 ) { return 0; } // FIXME 37 inline bool operator!=( const QCString &s1, const char *s2 ) { return 0; } // FIXME 38 31 39 #endif -
/trunk/WebCore/kwq/qt/qevent.h
r20 r30 27 27 #define QEVENT_H_ 28 28 29 // all the following events added to support khtmlview.h 30 class QEvent {}; 31 class QFocusEvent : public QEvent {}; 32 class QHideEvent : public QEvent {}; 33 class QKeyEvent : public QEvent {}; 34 class QResizeEvent : public QEvent {}; 35 class QShowEvent : public QEvent {}; 36 class QWheelEvent : public QEvent {}; 37 29 38 #endif -
/trunk/WebCore/kwq/qt/qfontmetrics.h
r20 r30 27 27 #define QFONTMETRICS_H_ 28 28 29 class QFontMetrics; 30 29 31 #endif -
/trunk/WebCore/kwq/qt/qmap.h
r20 r30 27 27 #define QMAP_H_ 28 28 29 template <class K, class T> class QMap { 30 }; 31 29 32 #endif -
/trunk/WebCore/kwq/qt/qobject.h
r20 r30 27 27 #define QOBJECT_H_ 28 28 29 // includes added to help in compilation of khtml/khtmlview.h 30 #include "qobjectdefs.h" 31 #include "qevent.h" 32 29 33 // FIXME: should these macros be in "kwq.h" or other header file? 30 34 #define slots -
/trunk/WebCore/kwq/qt/qpaintdevice.h
r20 r30 27 27 #define QPAINTDEVICE_H_ 28 28 29 #include "qrect.h" 30 29 31 #endif -
/trunk/WebCore/kwq/qt/qpixmap.h
r20 r30 27 27 #define QPIXMAP_H_ 28 28 29 #include "qpaintdevice.h" 30 29 31 class QPixmap { 30 32 }; -
/trunk/WebCore/kwq/qt/qregexp.h
r20 r30 27 27 #define QREGEXP_H_ 28 28 29 class QRegExp { 30 }; 31 29 32 #endif -
/trunk/WebCore/kwq/qt/qscrollview.h
r20 r30 27 27 #define QSCROLLVIEW_H_ 28 28 29 class QScrollView { 29 #include "qwidget.h" 30 31 class QScrollView : public QWidget { 30 32 typedef int ScrollBarMode; 31 33 }; -
/trunk/WebCore/kwq/qt/qstring.h
r20 r30 38 38 QChar lower() const; 39 39 char latin1() const; 40 bool isDigit(); 40 bool isDigit() const; 41 bool isSpace() const; 41 42 friend inline int operator==(QChar, QChar); 42 43 friend inline int operator!=(QChar, QChar); … … 46 47 public: 47 48 QString(); 49 QString(const QChar *, uint); 50 QString(const char *s); 48 51 int toInt() const; 49 52 int toInt(bool *) const; … … 52 55 uint length() const; 53 56 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; 54 70 55 71 static const QString null; -
/trunk/WebCore/kwq/qt/qwidget.h
r20 r30 28 28 29 29 class QWidget { 30 public: 31 int winId() const; 30 32 }; 31 33 -
/trunk/WebCore/src/kdelibs/khtml/css
- Property svn:ignore
-
old new 2 2 Makefile.in 3 3 *.strip 4 cssproperties.c 5 cssproperties.h 6 cssvalues.c 7 cssvalues.h 8 cssvalues.gperf
-
- Property svn:ignore
-
/trunk/WebCore/src/kdelibs/khtml/css/.cvsignore
r20 r30 2 2 Makefile.in 3 3 *.strip 4 cssproperties.c 5 cssproperties.h 6 cssvalues.c 7 cssvalues.h 8 cssvalues.gperf -
/trunk/WebCore/src/kwq/dcop/dcopclient.h
r20 r30 27 27 #define DCOPCLIENT_H_ 28 28 29 class QCString; 30 class QByteArray; 31 32 // KApplication needs this 33 class DCOPClient { 34 public: 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 29 47 #endif -
/trunk/WebCore/src/kwq/kdecore/kapp.h
r20 r30 27 27 #define KAPP_H_ 28 28 29 #include <dcopclient.h> 30 31 #define kapp KApplication::kApplication() 32 33 class KApplication { 34 public: 35 static KApplication* kApplication() { return KApp; } 36 virtual DCOPClient *dcopClient(); 37 protected: 38 static KApplication *KApp; 39 }; 40 41 29 42 #endif -
/trunk/WebCore/src/kwq/kdecore/kdebug.h
r20 r30 27 27 #define KDEBUG_H_ 28 28 29 #include <qstring.h> 30 31 class kdbgstream; 32 typedef kdbgstream & (*KDBGFUNC)(kdbgstream &); 33 34 class kdbgstream { 35 public: 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 42 inline kdbgstream &endl( kdbgstream &s) { s << "\n"; return s; } 43 44 kdbgstream kdWarning(int area = 0); 45 kdbgstream kdWarning(bool cond, int area = 0); 46 kdbgstream kdError(int area = 0); 47 kdbgstream kdError(bool cond, int area = 0); 48 kdbgstream kdFatal(int area = 0); 49 kdbgstream kdFatal(bool cond, int area = 0); 50 29 51 #endif -
/trunk/WebCore/src/kwq/kio/job.h
r20 r30 27 27 #define JOB_H_ 28 28 29 // added to help in compilation of khtml/khtml_part.h:867 30 namespace KIO { 31 32 class Job { 33 }; 34 35 } 36 29 37 #endif -
/trunk/WebCore/src/kwq/kparts/browserextension.h
r20 r30 27 27 #define BROWSEREXTENSION_H_ 28 28 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 33 class QPoint; 34 35 // Added for compilation of khtml/khtml_part.h:755 36 class QEvent; 37 38 namespace KParts { 39 40 // Added for compilation of khtml/khtml_part.h:695 41 struct URLArgs { 42 }; 43 44 class BrowserExtension { 45 }; 46 47 }; 48 29 49 #endif -
/trunk/WebCore/src/kwq/qt/qcstring.h
r20 r30 27 27 #define QCSTRING_H_ 28 28 29 // added to help in compilation of khtml/khtml_part.h:811 29 30 #include "qarray.h" 30 31 32 // added to help in compilation of khtml/dom/html_documnent.cpp:182 33 class QCString { 34 }; 35 36 inline bool operator!=( const char *s1, const QCString &s2 ) { return 0; } // FIXME 37 inline bool operator!=( const QCString &s1, const char *s2 ) { return 0; } // FIXME 38 31 39 #endif -
/trunk/WebCore/src/kwq/qt/qevent.h
r20 r30 27 27 #define QEVENT_H_ 28 28 29 // all the following events added to support khtmlview.h 30 class QEvent {}; 31 class QFocusEvent : public QEvent {}; 32 class QHideEvent : public QEvent {}; 33 class QKeyEvent : public QEvent {}; 34 class QResizeEvent : public QEvent {}; 35 class QShowEvent : public QEvent {}; 36 class QWheelEvent : public QEvent {}; 37 29 38 #endif -
/trunk/WebCore/src/kwq/qt/qfontmetrics.h
r20 r30 27 27 #define QFONTMETRICS_H_ 28 28 29 class QFontMetrics; 30 29 31 #endif -
/trunk/WebCore/src/kwq/qt/qmap.h
r20 r30 27 27 #define QMAP_H_ 28 28 29 template <class K, class T> class QMap { 30 }; 31 29 32 #endif -
/trunk/WebCore/src/kwq/qt/qobject.h
r20 r30 27 27 #define QOBJECT_H_ 28 28 29 // includes added to help in compilation of khtml/khtmlview.h 30 #include "qobjectdefs.h" 31 #include "qevent.h" 32 29 33 // FIXME: should these macros be in "kwq.h" or other header file? 30 34 #define slots -
/trunk/WebCore/src/kwq/qt/qpaintdevice.h
r20 r30 27 27 #define QPAINTDEVICE_H_ 28 28 29 #include "qrect.h" 30 29 31 #endif -
/trunk/WebCore/src/kwq/qt/qpixmap.h
r20 r30 27 27 #define QPIXMAP_H_ 28 28 29 #include "qpaintdevice.h" 30 29 31 class QPixmap { 30 32 }; -
/trunk/WebCore/src/kwq/qt/qregexp.h
r20 r30 27 27 #define QREGEXP_H_ 28 28 29 class QRegExp { 30 }; 31 29 32 #endif -
/trunk/WebCore/src/kwq/qt/qscrollview.h
r20 r30 27 27 #define QSCROLLVIEW_H_ 28 28 29 class QScrollView { 29 #include "qwidget.h" 30 31 class QScrollView : public QWidget { 30 32 typedef int ScrollBarMode; 31 33 }; -
/trunk/WebCore/src/kwq/qt/qstring.h
r20 r30 38 38 QChar lower() const; 39 39 char latin1() const; 40 bool isDigit(); 40 bool isDigit() const; 41 bool isSpace() const; 41 42 friend inline int operator==(QChar, QChar); 42 43 friend inline int operator!=(QChar, QChar); … … 46 47 public: 47 48 QString(); 49 QString(const QChar *, uint); 50 QString(const char *s); 48 51 int toInt() const; 49 52 int toInt(bool *) const; … … 52 55 uint length() const; 53 56 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; 54 70 55 71 static const QString null; -
/trunk/WebCore/src/kwq/qt/qwidget.h
r20 r30 28 28 29 29 class QWidget { 30 public: 31 int winId() const; 30 32 }; 31 33
Note:
See TracChangeset
for help on using the changeset viewer.