[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

rjw rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 05:49:18 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit cdbf5e79fd1f7d0835cde4dd9fa282be89bdf34b
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 5 01:18:33 2001 +0000

    More stubs.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@278 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/kwq/KWQEvent.mm b/WebCore/kwq/KWQEvent.mm
new file mode 100644
index 0000000..9445cd8
--- /dev/null
+++ b/WebCore/kwq/KWQEvent.mm
@@ -0,0 +1,185 @@
+/*
+* Copyright (C) 2001 Apple Computer, Inc.  All rights reserved.
+*
+* Redistribution and use in source and binary forms, with or without
+* modification, are permitted provided that the following conditions
+* are met:
+* 1. Redistributions of source code must retain the above copyright
+*    notice, this list of conditions and the following disclaimer.
+* 2. Redistributions in binary form must reproduce the above copyright
+*    notice, this list of conditions and the following disclaimer in the
+*    documentation and/or other materials provided with the distribution.
+*
+* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
+* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+* PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
+* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
+* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
+*/
+
+#include <qevent.h>
+
+// class QEvent ================================================================
+
+QEvent::QEvent(Type)
+{
+}
+
+
+QEvent::~QEvent()
+{
+}
+
+
+QEvent::Type QEvent::type() const
+{
+}
+
+
+// class QMouseEvent ===========================================================
+
+QMouseEvent::QMouseEvent(Type type, const QPoint &pos, int button, int state)
+{
+}
+
+
+int QMouseEvent::x()
+{
+}
+
+
+int QMouseEvent::y()
+{
+}
+
+
+int QMouseEvent::globalX()
+{
+}
+
+
+int QMouseEvent::globalY()
+{
+}
+
+
+const QPoint &QMouseEvent::pos() const
+{
+}
+
+
+Qt::ButtonState QMouseEvent::button()
+{
+}
+
+
+Qt::ButtonState QMouseEvent::state()
+{
+}
+
+
+Qt::ButtonState QMouseEvent::stateAfter()
+{
+}
+
+
+// class QTimerEvent ===========================================================
+
+QTimerEvent::QTimerEvent(int timerId)
+{
+}
+
+
+QTimerEvent::~QTimerEvent()
+{
+}
+
+
+int QTimerEvent::timerId() const
+{
+}
+
+
+// class QKeyEvent =============================================================
+
+QKeyEvent::QKeyEvent(Type, Key, int, int)
+{
+}
+
+
+int QKeyEvent::key() const
+{
+}
+
+
+Qt::ButtonState QKeyEvent::state() const
+{
+}
+
+
+void QKeyEvent::accept()
+{
+}
+
+
+void QKeyEvent::ignore()
+{
+}
+
+
+// class QFocusEvent ===========================================================
+
+QFocusEvent::QFocusEvent(Type)
+{
+}
+
+
+// class QHideEvent ============================================================
+
+QHideEvent::QHideEvent(Type)
+{
+}
+
+
+// class QResizeEvent ==========================================================
+
+QResizeEvent::QResizeEvent(Type)
+{
+}
+
+
+// class QShowEvent ============================================================
+
+QShowEvent::QShowEvent(Type)
+{
+}
+
+
+// class QWheelEvent ===========================================================
+
+QWheelEvent::QWheelEvent(Type)
+{
+}
+
+
+void QWheelEvent::accept()
+{
+}
+
+
+void QWheelEvent::ignore()
+{
+}
+
+
+// class QCustomEvent ===========================================================
+
+QCustomEvent::QCustomEvent(Type)
+{
+}
diff --git a/WebCore/kwq/KWQXml.mm b/WebCore/kwq/KWQXml.mm
new file mode 100644
index 0000000..25afec8
--- /dev/null
+++ b/WebCore/kwq/KWQXml.mm
@@ -0,0 +1,182 @@
+/*
+* Copyright (C) 2001 Apple Computer, Inc.  All rights reserved.
+*
+* Redistribution and use in source and binary forms, with or without
+* modification, are permitted provided that the following conditions
+* are met:
+* 1. Redistributions of source code must retain the above copyright
+*    notice, this list of conditions and the following disclaimer.
+* 2. Redistributions in binary form must reproduce the above copyright
+*    notice, this list of conditions and the following disclaimer in the
+*    documentation and/or other materials provided with the distribution.
+*
+* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
+* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+* PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
+* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
+* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
+*/
+
+#include <qstring.h>
+
+#include <qxml.h>
+
+// class QXmlAttributes ========================================================
+    
+QXmlAttributes::QXmlAttributes()
+{
+}
+
+
+QXmlAttributes::QXmlAttributes(const QXmlAttributes &)
+{
+}
+
+
+QXmlAttributes::~QXmlAttributes()
+{
+}
+
+
+QString QXmlAttributes::value(const QString &) const
+{
+}
+
+
+int QXmlAttributes::length() const
+{
+}
+
+
+QString QXmlAttributes::localName(int index) const
+{
+}
+
+
+QString QXmlAttributes::value(int index) const
+{
+}
+
+
+QXmlAttributes &QXmlAttributes::operator=(const QXmlAttributes &)
+{
+}
+
+
+
+
+// class QXmlInputSource ========================================================
+
+
+QXmlInputSource::QXmlInputSource()
+{
+}
+
+
+QXmlInputSource::~QXmlInputSource()
+{
+}
+
+
+void QXmlInputSource::setData(const QString& data)
+{
+}
+
+
+
+
+// class QXmlDTDHandler ========================================================
+
+
+// class QXmlDeclHandler ========================================================
+
+
+// class QXmlErrorHandler ========================================================
+
+
+// class QXmlLexicalHandler ========================================================
+
+
+// class QXmlContentHandler ========================================================
+
+
+// class QXmlDefaultHandler ====================================================
+
+
+QXmlDefaultHandler::~QXmlDefaultHandler()
+{
+}
+
+
+// class QXmlSimpleReader ======================================================
+
+QXmlSimpleReader::QXmlSimpleReader()
+{
+}
+
+
+QXmlSimpleReader::~QXmlSimpleReader()
+{
+}
+
+
+void QXmlSimpleReader::setContentHandler(QXmlContentHandler *handler)
+{
+}
+
+
+bool QXmlSimpleReader::parse(const QXmlInputSource &input)
+{
+}
+
+
+void QXmlSimpleReader::setLexicalHandler(QXmlLexicalHandler *handler)
+{
+}
+
+
+void QXmlSimpleReader::setDTDHandler(QXmlDTDHandler *handler)
+{
+}
+
+
+void QXmlSimpleReader::setDeclHandler(QXmlDeclHandler *handler)
+{
+}
+
+
+void QXmlSimpleReader::setErrorHandler(QXmlErrorHandler *handler)
+{
+}
+
+
+// class QXmlParseException ====================================================
+
+QXmlParseException::QXmlParseException()
+{
+}
+
+
+QString QXmlParseException::message() const
+{
+}
+
+
+int QXmlParseException::columnNumber() const
+{
+}
+
+
+int QXmlParseException::lineNumber() const
+{
+}
+
+
+
+
diff --git a/WebCore/kwq/Makefile.in b/WebCore/kwq/Makefile.in
index 727b0c4..147a682 100644
--- a/WebCore/kwq/Makefile.in
+++ b/WebCore/kwq/Makefile.in
@@ -32,6 +32,7 @@ MMOBJECTS = \
         KWQComboBox.o \
         KWQCompletion.o \
         KWQCursor.o \
+        KWQEvent.o \
 	KWQFont.o \
 	KWQFontMetrics.o \
 	KWQFrame.o \
@@ -73,6 +74,7 @@ MMOBJECTS = \
 	KWQView.o \
 	KWQWMatrix.o \
 	KWQWidget.o \
+	KWQxml.o \
 	KWQChar.o \
 	KWQString.o \
 	KWQCString.o \
diff --git a/WebCore/src/kwq/KWQEvent.mm b/WebCore/src/kwq/KWQEvent.mm
new file mode 100644
index 0000000..9445cd8
--- /dev/null
+++ b/WebCore/src/kwq/KWQEvent.mm
@@ -0,0 +1,185 @@
+/*
+* Copyright (C) 2001 Apple Computer, Inc.  All rights reserved.
+*
+* Redistribution and use in source and binary forms, with or without
+* modification, are permitted provided that the following conditions
+* are met:
+* 1. Redistributions of source code must retain the above copyright
+*    notice, this list of conditions and the following disclaimer.
+* 2. Redistributions in binary form must reproduce the above copyright
+*    notice, this list of conditions and the following disclaimer in the
+*    documentation and/or other materials provided with the distribution.
+*
+* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
+* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+* PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
+* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
+* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
+*/
+
+#include <qevent.h>
+
+// class QEvent ================================================================
+
+QEvent::QEvent(Type)
+{
+}
+
+
+QEvent::~QEvent()
+{
+}
+
+
+QEvent::Type QEvent::type() const
+{
+}
+
+
+// class QMouseEvent ===========================================================
+
+QMouseEvent::QMouseEvent(Type type, const QPoint &pos, int button, int state)
+{
+}
+
+
+int QMouseEvent::x()
+{
+}
+
+
+int QMouseEvent::y()
+{
+}
+
+
+int QMouseEvent::globalX()
+{
+}
+
+
+int QMouseEvent::globalY()
+{
+}
+
+
+const QPoint &QMouseEvent::pos() const
+{
+}
+
+
+Qt::ButtonState QMouseEvent::button()
+{
+}
+
+
+Qt::ButtonState QMouseEvent::state()
+{
+}
+
+
+Qt::ButtonState QMouseEvent::stateAfter()
+{
+}
+
+
+// class QTimerEvent ===========================================================
+
+QTimerEvent::QTimerEvent(int timerId)
+{
+}
+
+
+QTimerEvent::~QTimerEvent()
+{
+}
+
+
+int QTimerEvent::timerId() const
+{
+}
+
+
+// class QKeyEvent =============================================================
+
+QKeyEvent::QKeyEvent(Type, Key, int, int)
+{
+}
+
+
+int QKeyEvent::key() const
+{
+}
+
+
+Qt::ButtonState QKeyEvent::state() const
+{
+}
+
+
+void QKeyEvent::accept()
+{
+}
+
+
+void QKeyEvent::ignore()
+{
+}
+
+
+// class QFocusEvent ===========================================================
+
+QFocusEvent::QFocusEvent(Type)
+{
+}
+
+
+// class QHideEvent ============================================================
+
+QHideEvent::QHideEvent(Type)
+{
+}
+
+
+// class QResizeEvent ==========================================================
+
+QResizeEvent::QResizeEvent(Type)
+{
+}
+
+
+// class QShowEvent ============================================================
+
+QShowEvent::QShowEvent(Type)
+{
+}
+
+
+// class QWheelEvent ===========================================================
+
+QWheelEvent::QWheelEvent(Type)
+{
+}
+
+
+void QWheelEvent::accept()
+{
+}
+
+
+void QWheelEvent::ignore()
+{
+}
+
+
+// class QCustomEvent ===========================================================
+
+QCustomEvent::QCustomEvent(Type)
+{
+}
diff --git a/WebCore/src/kwq/KWQxml.mm b/WebCore/src/kwq/KWQxml.mm
new file mode 100644
index 0000000..25afec8
--- /dev/null
+++ b/WebCore/src/kwq/KWQxml.mm
@@ -0,0 +1,182 @@
+/*
+* Copyright (C) 2001 Apple Computer, Inc.  All rights reserved.
+*
+* Redistribution and use in source and binary forms, with or without
+* modification, are permitted provided that the following conditions
+* are met:
+* 1. Redistributions of source code must retain the above copyright
+*    notice, this list of conditions and the following disclaimer.
+* 2. Redistributions in binary form must reproduce the above copyright
+*    notice, this list of conditions and the following disclaimer in the
+*    documentation and/or other materials provided with the distribution.
+*
+* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
+* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+* PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
+* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
+* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
+*/
+
+#include <qstring.h>
+
+#include <qxml.h>
+
+// class QXmlAttributes ========================================================
+    
+QXmlAttributes::QXmlAttributes()
+{
+}
+
+
+QXmlAttributes::QXmlAttributes(const QXmlAttributes &)
+{
+}
+
+
+QXmlAttributes::~QXmlAttributes()
+{
+}
+
+
+QString QXmlAttributes::value(const QString &) const
+{
+}
+
+
+int QXmlAttributes::length() const
+{
+}
+
+
+QString QXmlAttributes::localName(int index) const
+{
+}
+
+
+QString QXmlAttributes::value(int index) const
+{
+}
+
+
+QXmlAttributes &QXmlAttributes::operator=(const QXmlAttributes &)
+{
+}
+
+
+
+
+// class QXmlInputSource ========================================================
+
+
+QXmlInputSource::QXmlInputSource()
+{
+}
+
+
+QXmlInputSource::~QXmlInputSource()
+{
+}
+
+
+void QXmlInputSource::setData(const QString& data)
+{
+}
+
+
+
+
+// class QXmlDTDHandler ========================================================
+
+
+// class QXmlDeclHandler ========================================================
+
+
+// class QXmlErrorHandler ========================================================
+
+
+// class QXmlLexicalHandler ========================================================
+
+
+// class QXmlContentHandler ========================================================
+
+
+// class QXmlDefaultHandler ====================================================
+
+
+QXmlDefaultHandler::~QXmlDefaultHandler()
+{
+}
+
+
+// class QXmlSimpleReader ======================================================
+
+QXmlSimpleReader::QXmlSimpleReader()
+{
+}
+
+
+QXmlSimpleReader::~QXmlSimpleReader()
+{
+}
+
+
+void QXmlSimpleReader::setContentHandler(QXmlContentHandler *handler)
+{
+}
+
+
+bool QXmlSimpleReader::parse(const QXmlInputSource &input)
+{
+}
+
+
+void QXmlSimpleReader::setLexicalHandler(QXmlLexicalHandler *handler)
+{
+}
+
+
+void QXmlSimpleReader::setDTDHandler(QXmlDTDHandler *handler)
+{
+}
+
+
+void QXmlSimpleReader::setDeclHandler(QXmlDeclHandler *handler)
+{
+}
+
+
+void QXmlSimpleReader::setErrorHandler(QXmlErrorHandler *handler)
+{
+}
+
+
+// class QXmlParseException ====================================================
+
+QXmlParseException::QXmlParseException()
+{
+}
+
+
+QString QXmlParseException::message() const
+{
+}
+
+
+int QXmlParseException::columnNumber() const
+{
+}
+
+
+int QXmlParseException::lineNumber() const
+{
+}
+
+
+
+
diff --git a/WebCore/src/kwq/Makefile.in b/WebCore/src/kwq/Makefile.in
index 727b0c4..147a682 100644
--- a/WebCore/src/kwq/Makefile.in
+++ b/WebCore/src/kwq/Makefile.in
@@ -32,6 +32,7 @@ MMOBJECTS = \
         KWQComboBox.o \
         KWQCompletion.o \
         KWQCursor.o \
+        KWQEvent.o \
 	KWQFont.o \
 	KWQFontMetrics.o \
 	KWQFrame.o \
@@ -73,6 +74,7 @@ MMOBJECTS = \
 	KWQView.o \
 	KWQWMatrix.o \
 	KWQWidget.o \
+	KWQxml.o \
 	KWQChar.o \
 	KWQString.o \
 	KWQCString.o \

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list