mirror of
https://gitlab.com/eql/EQL5.git
synced 2026-03-23 06:50:40 -07:00
add module :webengine (tested with Qt 5.8)
This commit is contained in:
parent
d961d400f1
commit
64d140c8e3
81 changed files with 8541 additions and 6417 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -12,6 +12,7 @@
|
|||
*.DS_Store
|
||||
*.qm
|
||||
*.qmlc
|
||||
*.stash
|
||||
*.ts
|
||||
*~
|
||||
*.~
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
#include <QApplication>
|
||||
#include <QWidget>
|
||||
#include "qt_application.h"
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
QApplication qapp(argc, argv);
|
||||
|
||||
MainWindow window;
|
||||
window.setGeometry(50, 50, 500, 300);
|
||||
window.show();
|
||||
|
||||
return qapp.exec();
|
||||
}
|
||||
#include <QApplication>
|
||||
#include <QWidget>
|
||||
#include "qt_application.h"
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
QApplication qapp(argc, argv);
|
||||
|
||||
MainWindow window;
|
||||
window.setGeometry(50, 50, 500, 300);
|
||||
window.show();
|
||||
|
||||
return qapp.exec();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,64 +1,64 @@
|
|||
#include <QtWidgets>
|
||||
#include <QLibrary>
|
||||
#include <QtDebug>
|
||||
|
||||
#include "qt_application.h"
|
||||
|
||||
typedef void (*OnShowPlugin)(QWidget*);
|
||||
typedef void (*OnHidePlugin)();
|
||||
|
||||
static OnShowPlugin onShowPlugin = 0;
|
||||
static OnHidePlugin onHidePlugin = 0;
|
||||
|
||||
MainWindow::MainWindow() : pluginWidget(0)
|
||||
{
|
||||
setWindowTitle("Qt Application");
|
||||
|
||||
QWidget* central = new QWidget;
|
||||
QLabel* label = new QLabel;
|
||||
label->setText(tr("<h3>QMainWindow with a dockable plugin widget.</h3>"));
|
||||
QPushButton* buttonShow = new QPushButton(tr("show plugin"));
|
||||
QPushButton* buttonHide = new QPushButton(tr("hide plugin"));
|
||||
setCentralWidget(central);
|
||||
|
||||
QHBoxLayout* layout = new QHBoxLayout(central);
|
||||
QVBoxLayout* buttonLayout = new QVBoxLayout;
|
||||
buttonLayout->addWidget(buttonShow);
|
||||
buttonLayout->addWidget(buttonHide);
|
||||
buttonLayout->addStretch();
|
||||
layout->addWidget(label);
|
||||
layout->addLayout(buttonLayout);
|
||||
|
||||
connect(buttonShow, SIGNAL(clicked()), SLOT(showPlugin()));
|
||||
connect(buttonHide, SIGNAL(clicked()), SLOT(hidePlugin()));
|
||||
}
|
||||
|
||||
void MainWindow::showPlugin()
|
||||
{
|
||||
static bool loaded = false;
|
||||
if(!loaded) {
|
||||
loaded = true;
|
||||
QLibrary plugin("./qt_plugin");
|
||||
onShowPlugin = (OnShowPlugin)plugin.resolve("onShowPlugin");
|
||||
onHidePlugin = (OnHidePlugin)plugin.resolve("onHidePlugin");
|
||||
pluginWidget = new QDockWidget(this);
|
||||
addDockWidget(Qt::TopDockWidgetArea, pluginWidget);
|
||||
}
|
||||
|
||||
if(onShowPlugin) {
|
||||
onShowPlugin(pluginWidget);
|
||||
}
|
||||
|
||||
pluginWidget->show();
|
||||
}
|
||||
|
||||
void MainWindow::hidePlugin()
|
||||
{
|
||||
if(pluginWidget) {
|
||||
pluginWidget->hide();
|
||||
}
|
||||
|
||||
if(onHidePlugin) {
|
||||
onHidePlugin();
|
||||
}
|
||||
}
|
||||
#include <QtWidgets>
|
||||
#include <QLibrary>
|
||||
#include <QtDebug>
|
||||
|
||||
#include "qt_application.h"
|
||||
|
||||
typedef void (*OnShowPlugin)(QWidget*);
|
||||
typedef void (*OnHidePlugin)();
|
||||
|
||||
static OnShowPlugin onShowPlugin = 0;
|
||||
static OnHidePlugin onHidePlugin = 0;
|
||||
|
||||
MainWindow::MainWindow() : pluginWidget(0)
|
||||
{
|
||||
setWindowTitle("Qt Application");
|
||||
|
||||
QWidget* central = new QWidget;
|
||||
QLabel* label = new QLabel;
|
||||
label->setText(tr("<h3>QMainWindow with a dockable plugin widget.</h3>"));
|
||||
QPushButton* buttonShow = new QPushButton(tr("show plugin"));
|
||||
QPushButton* buttonHide = new QPushButton(tr("hide plugin"));
|
||||
setCentralWidget(central);
|
||||
|
||||
QHBoxLayout* layout = new QHBoxLayout(central);
|
||||
QVBoxLayout* buttonLayout = new QVBoxLayout;
|
||||
buttonLayout->addWidget(buttonShow);
|
||||
buttonLayout->addWidget(buttonHide);
|
||||
buttonLayout->addStretch();
|
||||
layout->addWidget(label);
|
||||
layout->addLayout(buttonLayout);
|
||||
|
||||
connect(buttonShow, SIGNAL(clicked()), SLOT(showPlugin()));
|
||||
connect(buttonHide, SIGNAL(clicked()), SLOT(hidePlugin()));
|
||||
}
|
||||
|
||||
void MainWindow::showPlugin()
|
||||
{
|
||||
static bool loaded = false;
|
||||
if(!loaded) {
|
||||
loaded = true;
|
||||
QLibrary plugin("./qt_plugin");
|
||||
onShowPlugin = (OnShowPlugin)plugin.resolve("onShowPlugin");
|
||||
onHidePlugin = (OnHidePlugin)plugin.resolve("onHidePlugin");
|
||||
pluginWidget = new QDockWidget(this);
|
||||
addDockWidget(Qt::TopDockWidgetArea, pluginWidget);
|
||||
}
|
||||
|
||||
if(onShowPlugin) {
|
||||
onShowPlugin(pluginWidget);
|
||||
}
|
||||
|
||||
pluginWidget->show();
|
||||
}
|
||||
|
||||
void MainWindow::hidePlugin()
|
||||
{
|
||||
if(pluginWidget) {
|
||||
pluginWidget->hide();
|
||||
}
|
||||
|
||||
if(onHidePlugin) {
|
||||
onHidePlugin();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
QT += widgets
|
||||
TEMPLATE = app
|
||||
CONFIG += release
|
||||
TARGET = qt_application
|
||||
DESTDIR = ../
|
||||
OBJECTS_DIR = ./tmp/
|
||||
MOC_DIR = ./tmp/
|
||||
|
||||
HEADERS = qt_application.h
|
||||
SOURCES = qt_application.cpp main.cpp
|
||||
QT += widgets
|
||||
TEMPLATE = app
|
||||
CONFIG += release
|
||||
TARGET = qt_application
|
||||
DESTDIR = ../
|
||||
OBJECTS_DIR = ./tmp/
|
||||
MOC_DIR = ./tmp/
|
||||
|
||||
HEADERS = qt_application.h
|
||||
SOURCES = qt_application.cpp main.cpp
|
||||
|
|
|
|||
14
README-1.txt
14
README-1.txt
|
|
@ -14,7 +14,8 @@ TESTED WITH
|
|||
|
||||
Linux (development platform):
|
||||
ECL 16.1.2
|
||||
Qt 5.5.1
|
||||
Qt 5.5.1 (with module 'webkit')
|
||||
Qt 5.8 (with module 'webengine')
|
||||
|
||||
Windows:
|
||||
MSVC 2010, MinGW 4.9*:
|
||||
|
|
@ -47,9 +48,8 @@ REQUIREMENTS
|
|||
you need to choose Qt 5.5, and not later versions!
|
||||
QtWebKit will continue to work with versions > 5.5, but it has to be compiled
|
||||
manually (which is not fun).
|
||||
Since QtWebKit has a better, more native integration with Qt than QtWebEngine,
|
||||
there is currently no plan to switch to QtWebEngine in EQL5 (we would very much
|
||||
miss QWebElement).
|
||||
QtWebKit has a better, more native integration with Qt than QtWebEngine, see
|
||||
for example QWebElement, which doesn't exist in QtWebEngine.
|
||||
|
||||
|
||||
|
||||
|
|
@ -81,8 +81,8 @@ BUILD
|
|||
|
||||
[MinGW]
|
||||
If 'make' is stuck in an infinite loop of creating the 'Makefile', just remove
|
||||
the line 'include(windows.pri)' from your '*.pro' file, setting eventual needed
|
||||
paths in your '~/.profile' instead.
|
||||
the line 'include(windows.pri)' from your '*.pro' file, setting eventually
|
||||
needed paths in your '~/.profile' instead.
|
||||
|
||||
[OSX]
|
||||
To force creation of a Makefile (instead of an Xcode project), use this flag:
|
||||
|
|
@ -160,7 +160,7 @@ In order to run (sort of) a top-level processing Qt events, do (requires ECL thr
|
|||
|
||||
|
||||
|
||||
QT MODULES (help, multimedia, network, quick, sql, svg, webkit)
|
||||
QT MODULES (help, multimedia, network, quick, sql, svg, webengine, webkit)
|
||||
==========
|
||||
|
||||
To build an EQL module (corresponding to a Qt module), do the following in src/:
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@
|
|||
<br>(So the choice is left to you: depending on the situation, either option may be more convenient than the other.)
|
||||
</p>
|
||||
<p>The currently available <b>Qt5 Modules</b> (see <code>qrequire</code>) are:
|
||||
<br><code>:help :multimedia :network :quick :sql :svg :webkit</code>
|
||||
<br><code>:help :multimedia :network :quick :sql :svg :webengine :webkit</code>
|
||||
<br>(module <code>:opengl</code> is obsolete, see <code>QOpenGLWidget</code> etc.)
|
||||
</p>
|
||||
<p>If you want to use CLOS together with <code>qt-object</code> instances (which are of type <code>struct</code>), see examples <code>X-extras/CLOS-encapsulation.lisp</code> and <code>5-colliding-mice.lisp</code>.<br>So there's a simple way to use either <code>defclass</code> or <code>defstruct</code> to encapsulate a <code>qt-object</code>.</p>
|
||||
|
|
|
|||
|
|
@ -449,7 +449,7 @@ Removes the event filter corresponding to <code>handle</code>, which is the retu
|
|||
<br><br>
|
||||
<b>QREQUIRE (module &optional quiet)</b>
|
||||
<br><br>
|
||||
Loads an EQL module, corresponding to a Qt module.<br>Returns the module name if both loading and initializing have been successful.<br>If the <code>quiet</code> argument is not <code>NIL</code>, no error message will be shown on failure.<br><br>Currently available modules: <code>:help :multimedia :network :quick :sql :svg :webkit</code>
|
||||
Loads an EQL module, corresponding to a Qt module.<br>Returns the module name if both loading and initializing have been successful.<br>If the <code>quiet</code> argument is not <code>NIL</code>, no error message will be shown on failure.<br><br>Currently available modules: <code>:help :multimedia :network :quick :sql :svg :webengine :webkit</code>
|
||||
<br>
|
||||
<pre>
|
||||
(qrequire :network)
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ int main(int argc, char** argv) {
|
|||
|
||||
EQL::ini(argv);
|
||||
|
||||
QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts); // for Qt WebEngine
|
||||
QApplication qapp(argc, argv);
|
||||
|
||||
QTextCodec* utf8 = QTextCodec::codecForName("UTF-8");
|
||||
|
|
|
|||
13
examples/M-modules/webengine/minimal.lisp
Normal file
13
examples/M-modules/webengine/minimal.lisp
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
;;; minimal WebEngine (requires Qt >= 5.6)
|
||||
|
||||
#-qt-wrapper-functions ; see README-OPTIONAL.txt
|
||||
(load (in-home "src/lisp/all-wrappers"))
|
||||
|
||||
(qrequire :webengine)
|
||||
|
||||
(defvar *view* (qnew "QWebEngineView"))
|
||||
|
||||
(x:do-with *view*
|
||||
(|setUrl| (qnew "QUrl(QString)" "http://planet.lisp.org/"))
|
||||
(|resize| '(800 600))
|
||||
(|show|))
|
||||
|
|
@ -141,6 +141,8 @@
|
|||
(push :const arg*))
|
||||
(when default
|
||||
(push :default arg*)
|
||||
(when (string= default "Q_NULLPTR")
|
||||
(setf default "0"))
|
||||
(push default arg*))
|
||||
(nreverse arg*))))
|
||||
|
||||
|
|
@ -335,7 +337,8 @@
|
|||
(subseq name 0 templ)
|
||||
class
|
||||
(subseq name templ))
|
||||
(if-it (position #\( name)
|
||||
(if-it (and (not (search "()" name))
|
||||
(position #\( name))
|
||||
(let* ((names (split (subseq name (1+ it) (1- (length name)))
|
||||
#\|)))
|
||||
(join (mapcar (lambda (name) (format nil "~A::~A" class name))
|
||||
|
|
@ -393,10 +396,8 @@
|
|||
(find :virtual x))
|
||||
|
||||
(defun default-value (x)
|
||||
(let (ret)
|
||||
(dolist (v x)
|
||||
(cond (ret (return v))
|
||||
((eql :default v) (setf ret t))))))
|
||||
(when-it (position :default x)
|
||||
(nth (1+ it) x)))
|
||||
|
||||
(defun sort-names (names)
|
||||
(sort (remove-duplicates names :test 'string=)
|
||||
|
|
@ -433,6 +434,7 @@
|
|||
(format nil "#include <Qt~A>"
|
||||
(case module
|
||||
(:multimedia "MultimediaWidgets")
|
||||
(:webengine "WebEngineWidgets")
|
||||
(:webkit "WebKitWidgets")
|
||||
(t (string-capitalize (string module))))))
|
||||
|
||||
|
|
@ -835,6 +837,8 @@
|
|||
~%int LObjects::T_QSslKey = -1;~
|
||||
~%int LObjects::T_QVideoEncoderSettings = -1;~
|
||||
~%int LObjects::T_QVideoSurfaceFormat = -1;~
|
||||
~%int LObjects::T_QWebEngineScript = -1;~
|
||||
~%int LObjects::T_QList_QWebEngineScript = -1;~
|
||||
~%int LObjects::T_QWebElement = -1;~
|
||||
~%int LObjects::T_QList_QWebElement = -1;~
|
||||
~%int LObjects::T_QWebElementCollection = -1;~
|
||||
|
|
@ -868,7 +872,7 @@
|
|||
(format s "~%DeleteNObject LObjects::deleteNObject_~(~A~) = 0;" module))
|
||||
(dolist (module *modules*)
|
||||
(format s "~%Override LObjects::override_~(~A~) = 0;" module))
|
||||
(dolist (module (list :help :multimedia :network :quick :sql :webkit))
|
||||
(dolist (module (list :help :multimedia :network :quick :sql :webengine :webkit))
|
||||
(format s "~%ToMetaArg LObjects::toMetaArg_~(~A~) = 0;~
|
||||
~%To_lisp_arg LObjects::to_lisp_arg_~(~A~) = 0;"
|
||||
module module))
|
||||
|
|
@ -1187,6 +1191,7 @@
|
|||
"QList<QTreeWidgetItem*>"
|
||||
"QList<QUndoStack*>"
|
||||
"QList<QUrl>"
|
||||
"QList<QWebEngineScript>"
|
||||
"QList<QWebElement>"
|
||||
"QList<QWidget*>"
|
||||
"QList<int>"
|
||||
|
|
|
|||
|
|
@ -35,7 +35,6 @@ QList<QSslError>
|
|||
QList<QStringList>
|
||||
QList<QWebDatabase>
|
||||
QList<QWebFrame*>
|
||||
QList<QWebHistoryItem>
|
||||
QList<QWebSecurityOrigin>
|
||||
QList<const QTouchDevice*>
|
||||
QMediaResourceList
|
||||
|
|
@ -75,4 +74,6 @@ QVariantHash
|
|||
QVector<QSslEllipticCurve>
|
||||
QVector<QStaticPlugin>
|
||||
QVector<QVariant>
|
||||
QWebChannel
|
||||
QWebEngineContextMenuData
|
||||
QWindowList
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
(defparameter *modules* (list :help :multimedia :network :quick :sql :svg :webkit))
|
||||
(defparameter *modules* (list :help :multimedia :network :quick :sql :svg :webengine :webkit))
|
||||
|
|
|
|||
10
helper/my-class-lists/webengine/n-names.lisp
Normal file
10
helper/my-class-lists/webengine/n-names.lisp
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
;;; To avoid creation of instances, prepend "//" to the object name
|
||||
;;; "//QPaintDevice"
|
||||
|
||||
(defparameter *webengine-n-names*
|
||||
(list "QWebEngineCertificateError"
|
||||
"QWebEngineFullScreenRequest"
|
||||
"QWebEngineScript"
|
||||
"//QWebEngineScriptCollection"
|
||||
"//QWebEngineSettings"
|
||||
"//QWebEngineUrlRequestInfo"))
|
||||
12
helper/my-class-lists/webengine/q-names.lisp
Normal file
12
helper/my-class-lists/webengine/q-names.lisp
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
;;; To avoid creation of instances, prepend "//" to the object name
|
||||
;;; "//QClipboard"
|
||||
|
||||
(defparameter *webengine-q-names*
|
||||
(list "QWebEngineCookieStore"
|
||||
"QWebEngineDownloadItem"
|
||||
"QWebEnginePage"
|
||||
"QWebEngineProfile"
|
||||
"QWebEngineUrlRequestInterceptor"
|
||||
"QWebEngineUrlRequestJob"
|
||||
"QWebEngineUrlSchemeHandler"
|
||||
"QWebEngineView"))
|
||||
|
|
@ -5,8 +5,6 @@
|
|||
(list "QWebDatabase"
|
||||
"QWebElement"
|
||||
"QWebElementCollection"
|
||||
"//QWebHistory"
|
||||
"QWebHistoryItem"
|
||||
"QWebHitTestResult"
|
||||
"QWebSecurityOrigin"
|
||||
"//QWebSettings"
|
||||
|
|
|
|||
|
|
@ -213,6 +213,13 @@
|
|||
"QWebDatabase"
|
||||
"QWebElement"
|
||||
"QWebElementCollection"
|
||||
"QWebEngineCertificateError"
|
||||
"QWebEngineHistory"
|
||||
"QWebEngineHistoryItem"
|
||||
"QWebEngineScript"
|
||||
"QWebEngineScriptCollection"
|
||||
"QWebEngineSettings"
|
||||
"QWebEngineUrlRequestInfo"
|
||||
"QWebHistory"
|
||||
"QWebHistoryItem"
|
||||
"QWebHitTestResult"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
(load "share")
|
||||
(load "load-modules")
|
||||
|
||||
(defparameter *skip*
|
||||
(defvar *skip*
|
||||
(list "(preliminary)"
|
||||
"(deprecated)"
|
||||
"(obsolete)"
|
||||
|
|
@ -54,6 +54,7 @@
|
|||
"DefaultAction"
|
||||
"EditFocus"
|
||||
"ExecutionEngine"
|
||||
"Functor"
|
||||
"QIconEngine"
|
||||
"QPaintEngine"
|
||||
"QPrintEngine"
|
||||
|
|
@ -126,6 +127,9 @@
|
|||
"QVector2D *"
|
||||
"QVector3D *"
|
||||
"QVector4D *"
|
||||
"QWebEngineHistory"
|
||||
"QWebHistory"
|
||||
(format nil "QWebEngineScriptCollection &~C" #\Tab)
|
||||
"QWebNetworkRequest"
|
||||
"QWSEvent"
|
||||
"QXmlStreamReader"
|
||||
|
|
@ -160,8 +164,9 @@
|
|||
(format nil "~CmoveMedia(" #\Tab) ; 5.7
|
||||
))
|
||||
|
||||
(defparameter *check* nil)
|
||||
(defparameter *2-newlines* (format nil "~%~%"))
|
||||
(defvar *check* nil)
|
||||
(defvar *2-newlines* (format nil "~%~%"))
|
||||
(defvar *var-name-trim* "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXZY1234567890_")
|
||||
|
||||
(defun simplify (str &optional (join t))
|
||||
(let ((list (remove-if 'x:empty-string (x:split (string-trim '(#\Space #\Tab) str)))))
|
||||
|
|
@ -192,7 +197,9 @@
|
|||
(second xy)))
|
||||
(if (find (char x (1- (length x))) "&*>")
|
||||
x
|
||||
(subseq x 0 (position #\Space x :from-end t)))))
|
||||
(if (find-if (lambda (ch) (find ch "&*>")) x)
|
||||
(string-right-trim *var-name-trim* x)
|
||||
(subseq x 0 (position #\Space x :from-end t))))))
|
||||
|
||||
(defun tokenize (str)
|
||||
(let* ((a (position #\( str))
|
||||
|
|
@ -267,6 +274,8 @@
|
|||
(setf x:it (concatenate 'string (subseq x:it 0 x:it*) " = QRect_DEFAULT)")))
|
||||
(x:when-it* (search " = QMarginsF( 0, 0, 0, 0 )" x:it)
|
||||
(setf x:it (concatenate 'string (subseq x:it 0 x:it*) " = QMarginsF_DEFAULT)")))
|
||||
(x:when-it* (search " = QPageLayout( QPageSize( QPageSize::A4 ), QPageLayout::Portrait, QMarginsF() )" x:it)
|
||||
(setf x:it (concatenate 'string (subseq x:it 0 x:it*) " = QPageLayout_DEFAULT)")))
|
||||
(let* ((fun (tokenize x:it))
|
||||
(new (and (not static)
|
||||
(x:starts-with (format nil "~A (" class) fun)))
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,12 +1,12 @@
|
|||
(defparameter *n-override* '(
|
||||
(("QAbstractGraphicsShapeItem" . "QGraphicsItem")
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual QPainterPath opaqueArea () const")
|
||||
(("QAccessible" . NIL))
|
||||
(("QAccessibleEditableTextInterface" . NIL)
|
||||
"virtual void deleteText ( int , int ) = 0"
|
||||
"virtual void insertText ( int , const QString & ) = 0"
|
||||
"virtual void replaceText ( int , int , const QString & ) = 0")
|
||||
"virtual void insertText ( int , const QString & ) = 0"
|
||||
"virtual void replaceText ( int , int , const QString & ) = 0")
|
||||
(("QAccessibleEvent" . NIL)
|
||||
"virtual QAccessibleInterface * accessibleInterface () const")
|
||||
(("QAccessibleInterface" . NIL)
|
||||
|
|
@ -16,13 +16,13 @@
|
|||
"virtual int childCount () const = 0"
|
||||
"virtual QAccessibleInterface * focusChild () const"
|
||||
"virtual QColor foregroundColor () const"
|
||||
"virtual int indexOfChild ( const QAccessibleInterface * ) const = 0"
|
||||
"virtual int indexOfChild ( const QAccessibleInterface * ) const = 0"
|
||||
"virtual bool isValid () const = 0"
|
||||
"virtual QObject * object () const = 0"
|
||||
"virtual QAccessibleInterface * parent () const = 0"
|
||||
"virtual QRect rect () const = 0"
|
||||
"virtual QAccessible::Role role () const = 0"
|
||||
"virtual void setText ( QAccessible::Text , const QString & ) = 0"
|
||||
"virtual void setText ( QAccessible::Text , const QString & ) = 0"
|
||||
"virtual QString text ( QAccessible::Text ) const = 0"
|
||||
"virtual QWindow * window () const")
|
||||
(("QAccessibleObject" . "QAccessibleInterface")
|
||||
|
|
@ -30,7 +30,7 @@
|
|||
"virtual bool isValid () const"
|
||||
"virtual QObject * object () const"
|
||||
"virtual QRect rect () const"
|
||||
"virtual void setText ( QAccessible::Text , const QString & )")
|
||||
"virtual void setText ( QAccessible::Text , const QString & )")
|
||||
(("QAccessibleStateChangeEvent" . "QAccessibleEvent"))
|
||||
(("QAccessibleTextCursorEvent" . "QAccessibleEvent"))
|
||||
(("QAccessibleTextInsertEvent" . "QAccessibleTextCursorEvent"))
|
||||
|
|
@ -39,7 +39,7 @@
|
|||
"virtual int characterCount () const = 0"
|
||||
"virtual QRect characterRect ( int ) const = 0"
|
||||
"virtual int cursorPosition () const = 0"
|
||||
"virtual int offsetAtPoint ( const QPoint & ) const = 0"
|
||||
"virtual int offsetAtPoint ( const QPoint & ) const = 0"
|
||||
"virtual void removeSelection ( int ) = 0"
|
||||
"virtual void scrollToSubstring ( int , int ) = 0"
|
||||
"virtual int selectionCount () const = 0"
|
||||
|
|
@ -55,18 +55,18 @@
|
|||
"virtual QVariant maximumValue () const = 0"
|
||||
"virtual QVariant minimumStepSize () const = 0"
|
||||
"virtual QVariant minimumValue () const = 0"
|
||||
"virtual void setCurrentValue ( const QVariant & ) = 0")
|
||||
"virtual void setCurrentValue ( const QVariant & ) = 0")
|
||||
(("QAccessibleWidget" . "QAccessibleObject")
|
||||
"virtual QStringList actionNames () const"
|
||||
"virtual QColor backgroundColor () const"
|
||||
"virtual QAccessibleInterface * child ( int ) const"
|
||||
"virtual int childCount () const"
|
||||
"virtual void doAction ( const QString & )"
|
||||
"virtual void doAction ( const QString & )"
|
||||
"virtual QAccessibleInterface * focusChild () const"
|
||||
"virtual QColor foregroundColor () const"
|
||||
"virtual int indexOfChild ( const QAccessibleInterface * ) const"
|
||||
"virtual int indexOfChild ( const QAccessibleInterface * ) const"
|
||||
"virtual bool isValid () const"
|
||||
"virtual QStringList keyBindingsForAction ( const QString & ) const"
|
||||
"virtual QStringList keyBindingsForAction ( const QString & ) const"
|
||||
"virtual QAccessibleInterface * parent () const"
|
||||
"virtual QRect rect () const"
|
||||
"virtual QAccessible::Role role () const"
|
||||
|
|
@ -109,8 +109,8 @@
|
|||
(("QExposeEvent" . "QEvent"))
|
||||
(("QFileIconProvider" . NIL)
|
||||
"virtual QIcon icon ( IconType ) const"
|
||||
"virtual QIcon icon ( const QFileInfo & ) const"
|
||||
"virtual QString type ( const QFileInfo & ) const")
|
||||
"virtual QIcon icon ( const QFileInfo & ) const"
|
||||
"virtual QString type ( const QFileInfo & ) const")
|
||||
(("QFileInfo" . NIL))
|
||||
(("QFileOpenEvent" . "QEvent"))
|
||||
(("QFocusEvent" . "QEvent"))
|
||||
|
|
@ -126,14 +126,14 @@
|
|||
"virtual void invalidate ()"
|
||||
"virtual QGraphicsLayoutItem * itemAt ( int ) const"
|
||||
"virtual void removeAt ( int )"
|
||||
"virtual void setGeometry ( const QRectF & )"
|
||||
"virtual QSizeF sizeHint ( Qt::SizeHint , const QSizeF & = QSizeF() ) const")
|
||||
"virtual void setGeometry ( const QRectF & )"
|
||||
"virtual QSizeF sizeHint ( Qt::SizeHint , const QSizeF & = QSizeF() ) const")
|
||||
(("QGraphicsEllipseItem" . "QAbstractGraphicsShapeItem")
|
||||
"virtual QRectF boundingRect () const"
|
||||
"virtual bool contains ( const QPointF & ) const"
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual bool contains ( const QPointF & ) const"
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual QPainterPath opaqueArea () const"
|
||||
"virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * = 0 )"
|
||||
"virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * = 0 )"
|
||||
"virtual QPainterPath shape () const"
|
||||
"virtual int type () const")
|
||||
(("QGraphicsGridLayout" . "QGraphicsLayout")
|
||||
|
|
@ -141,64 +141,64 @@
|
|||
"virtual void invalidate ()"
|
||||
"virtual QGraphicsLayoutItem * itemAt ( int ) const"
|
||||
"virtual void removeAt ( int )"
|
||||
"virtual void setGeometry ( const QRectF & )"
|
||||
"virtual QSizeF sizeHint ( Qt::SizeHint , const QSizeF & = QSizeF() ) const")
|
||||
"virtual void setGeometry ( const QRectF & )"
|
||||
"virtual QSizeF sizeHint ( Qt::SizeHint , const QSizeF & = QSizeF() ) const")
|
||||
(("QGraphicsItem" . NIL)
|
||||
"virtual void advance ( int )"
|
||||
"virtual QRectF boundingRect () const = 0"
|
||||
"virtual bool collidesWithItem ( const QGraphicsItem * , Qt::ItemSelectionMode = Qt::IntersectsItemShape ) const"
|
||||
"virtual bool collidesWithPath ( const QPainterPath & , Qt::ItemSelectionMode = Qt::IntersectsItemShape ) const"
|
||||
"virtual bool contains ( const QPointF & ) const"
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual bool collidesWithItem ( const QGraphicsItem * , Qt::ItemSelectionMode = Qt::IntersectsItemShape ) const"
|
||||
"virtual bool collidesWithPath ( const QPainterPath & , Qt::ItemSelectionMode = Qt::IntersectsItemShape ) const"
|
||||
"virtual bool contains ( const QPointF & ) const"
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual QPainterPath opaqueArea () const"
|
||||
"virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * = 0 ) = 0"
|
||||
"virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * = 0 ) = 0"
|
||||
"virtual QPainterPath shape () const"
|
||||
"virtual int type () const"
|
||||
"virtual void contextMenuEvent ( QGraphicsSceneContextMenuEvent * )"
|
||||
"virtual void dragEnterEvent ( QGraphicsSceneDragDropEvent * )"
|
||||
"virtual void dragLeaveEvent ( QGraphicsSceneDragDropEvent * )"
|
||||
"virtual void dragMoveEvent ( QGraphicsSceneDragDropEvent * )"
|
||||
"virtual void dropEvent ( QGraphicsSceneDragDropEvent * )"
|
||||
"virtual void focusInEvent ( QFocusEvent * )"
|
||||
"virtual void focusOutEvent ( QFocusEvent * )"
|
||||
"virtual void hoverEnterEvent ( QGraphicsSceneHoverEvent * )"
|
||||
"virtual void hoverLeaveEvent ( QGraphicsSceneHoverEvent * )"
|
||||
"virtual void hoverMoveEvent ( QGraphicsSceneHoverEvent * )"
|
||||
"virtual void inputMethodEvent ( QInputMethodEvent * )"
|
||||
"virtual void contextMenuEvent ( QGraphicsSceneContextMenuEvent * )"
|
||||
"virtual void dragEnterEvent ( QGraphicsSceneDragDropEvent * )"
|
||||
"virtual void dragLeaveEvent ( QGraphicsSceneDragDropEvent * )"
|
||||
"virtual void dragMoveEvent ( QGraphicsSceneDragDropEvent * )"
|
||||
"virtual void dropEvent ( QGraphicsSceneDragDropEvent * )"
|
||||
"virtual void focusInEvent ( QFocusEvent * )"
|
||||
"virtual void focusOutEvent ( QFocusEvent * )"
|
||||
"virtual void hoverEnterEvent ( QGraphicsSceneHoverEvent * )"
|
||||
"virtual void hoverLeaveEvent ( QGraphicsSceneHoverEvent * )"
|
||||
"virtual void hoverMoveEvent ( QGraphicsSceneHoverEvent * )"
|
||||
"virtual void inputMethodEvent ( QInputMethodEvent * )"
|
||||
"virtual QVariant inputMethodQuery ( Qt::InputMethodQuery ) const"
|
||||
"virtual QVariant itemChange ( GraphicsItemChange , const QVariant & )"
|
||||
"virtual void keyPressEvent ( QKeyEvent * )"
|
||||
"virtual void keyReleaseEvent ( QKeyEvent * )"
|
||||
"virtual void mouseDoubleClickEvent ( QGraphicsSceneMouseEvent * )"
|
||||
"virtual void mouseMoveEvent ( QGraphicsSceneMouseEvent * )"
|
||||
"virtual void mousePressEvent ( QGraphicsSceneMouseEvent * )"
|
||||
"virtual void mouseReleaseEvent ( QGraphicsSceneMouseEvent * )"
|
||||
"virtual bool sceneEvent ( QEvent * )"
|
||||
"virtual bool sceneEventFilter ( QGraphicsItem * , QEvent * )"
|
||||
"virtual void wheelEvent ( QGraphicsSceneWheelEvent * )")
|
||||
"virtual QVariant itemChange ( GraphicsItemChange , const QVariant & )"
|
||||
"virtual void keyPressEvent ( QKeyEvent * )"
|
||||
"virtual void keyReleaseEvent ( QKeyEvent * )"
|
||||
"virtual void mouseDoubleClickEvent ( QGraphicsSceneMouseEvent * )"
|
||||
"virtual void mouseMoveEvent ( QGraphicsSceneMouseEvent * )"
|
||||
"virtual void mousePressEvent ( QGraphicsSceneMouseEvent * )"
|
||||
"virtual void mouseReleaseEvent ( QGraphicsSceneMouseEvent * )"
|
||||
"virtual bool sceneEvent ( QEvent * )"
|
||||
"virtual bool sceneEventFilter ( QGraphicsItem * , QEvent * )"
|
||||
"virtual void wheelEvent ( QGraphicsSceneWheelEvent * )")
|
||||
(("QGraphicsItemGroup" . "QGraphicsItem")
|
||||
"virtual QRectF boundingRect () const"
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual QPainterPath opaqueArea () const"
|
||||
"virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * = 0 )"
|
||||
"virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * = 0 )"
|
||||
"virtual int type () const")
|
||||
(("QGraphicsLayout" . "QGraphicsLayoutItem")
|
||||
"virtual int count () const = 0"
|
||||
"virtual void invalidate ()"
|
||||
"virtual QGraphicsLayoutItem * itemAt ( int ) const = 0"
|
||||
"virtual void removeAt ( int ) = 0"
|
||||
"virtual void widgetEvent ( QEvent * )"
|
||||
"virtual void widgetEvent ( QEvent * )"
|
||||
"virtual void updateGeometry ()")
|
||||
(("QGraphicsLayoutItem" . NIL)
|
||||
"virtual void setGeometry ( const QRectF & )"
|
||||
"virtual void setGeometry ( const QRectF & )"
|
||||
"virtual void updateGeometry ()"
|
||||
"virtual QSizeF sizeHint ( Qt::SizeHint , const QSizeF & = QSizeF() ) const = 0")
|
||||
"virtual QSizeF sizeHint ( Qt::SizeHint , const QSizeF & = QSizeF() ) const = 0")
|
||||
(("QGraphicsLineItem" . "QGraphicsItem")
|
||||
"virtual QRectF boundingRect () const"
|
||||
"virtual bool contains ( const QPointF & ) const"
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual bool contains ( const QPointF & ) const"
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual QPainterPath opaqueArea () const"
|
||||
"virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * = 0 )"
|
||||
"virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * = 0 )"
|
||||
"virtual QPainterPath shape () const"
|
||||
"virtual int type () const")
|
||||
(("QGraphicsLinearLayout" . "QGraphicsLayout")
|
||||
|
|
@ -206,38 +206,38 @@
|
|||
"virtual void invalidate ()"
|
||||
"virtual QGraphicsLayoutItem * itemAt ( int ) const"
|
||||
"virtual void removeAt ( int )"
|
||||
"virtual void setGeometry ( const QRectF & )"
|
||||
"virtual QSizeF sizeHint ( Qt::SizeHint , const QSizeF & = QSizeF() ) const")
|
||||
"virtual void setGeometry ( const QRectF & )"
|
||||
"virtual QSizeF sizeHint ( Qt::SizeHint , const QSizeF & = QSizeF() ) const")
|
||||
(("QGraphicsPathItem" . "QAbstractGraphicsShapeItem")
|
||||
"virtual QRectF boundingRect () const"
|
||||
"virtual bool contains ( const QPointF & ) const"
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual bool contains ( const QPointF & ) const"
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual QPainterPath opaqueArea () const"
|
||||
"virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * = 0 )"
|
||||
"virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * = 0 )"
|
||||
"virtual QPainterPath shape () const"
|
||||
"virtual int type () const")
|
||||
(("QGraphicsPixmapItem" . "QGraphicsItem")
|
||||
"virtual QRectF boundingRect () const"
|
||||
"virtual bool contains ( const QPointF & ) const"
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual bool contains ( const QPointF & ) const"
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual QPainterPath opaqueArea () const"
|
||||
"virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * )"
|
||||
"virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * )"
|
||||
"virtual QPainterPath shape () const"
|
||||
"virtual int type () const")
|
||||
(("QGraphicsPolygonItem" . "QAbstractGraphicsShapeItem")
|
||||
"virtual QRectF boundingRect () const"
|
||||
"virtual bool contains ( const QPointF & ) const"
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual bool contains ( const QPointF & ) const"
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual QPainterPath opaqueArea () const"
|
||||
"virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * = 0 )"
|
||||
"virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * = 0 )"
|
||||
"virtual QPainterPath shape () const"
|
||||
"virtual int type () const")
|
||||
(("QGraphicsRectItem" . "QAbstractGraphicsShapeItem")
|
||||
"virtual QRectF boundingRect () const"
|
||||
"virtual bool contains ( const QPointF & ) const"
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual bool contains ( const QPointF & ) const"
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual QPainterPath opaqueArea () const"
|
||||
"virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * = 0 )"
|
||||
"virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * = 0 )"
|
||||
"virtual QPainterPath shape () const"
|
||||
"virtual int type () const")
|
||||
(("QGraphicsSceneContextMenuEvent" . "QGraphicsSceneEvent"))
|
||||
|
|
@ -251,10 +251,10 @@
|
|||
(("QGraphicsSceneWheelEvent" . "QGraphicsSceneEvent"))
|
||||
(("QGraphicsSimpleTextItem" . "QAbstractGraphicsShapeItem")
|
||||
"virtual QRectF boundingRect () const"
|
||||
"virtual bool contains ( const QPointF & ) const"
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual bool contains ( const QPointF & ) const"
|
||||
"virtual bool isObscuredBy ( const QGraphicsItem * ) const"
|
||||
"virtual QPainterPath opaqueArea () const"
|
||||
"virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * )"
|
||||
"virtual void paint ( QPainter * , const QStyleOptionGraphicsItem * , QWidget * )"
|
||||
"virtual QPainterPath shape () const"
|
||||
"virtual int type () const")
|
||||
(("QHelpContentItem" . NIL))
|
||||
|
|
@ -273,10 +273,10 @@
|
|||
(("QInputMethodEvent" . "QEvent"))
|
||||
(("QInputMethodQueryEvent" . "QEvent"))
|
||||
(("QItemEditorCreatorBase" . NIL)
|
||||
"virtual QWidget * createWidget ( QWidget * ) const = 0"
|
||||
"virtual QWidget * createWidget ( QWidget * ) const = 0"
|
||||
"virtual QByteArray valuePropertyName () const = 0")
|
||||
(("QItemEditorFactory" . NIL)
|
||||
"virtual QWidget * createEditor ( int , QWidget * ) const"
|
||||
"virtual QWidget * createEditor ( int , QWidget * ) const"
|
||||
"virtual QByteArray valuePropertyName ( int ) const")
|
||||
(("QItemSelectionRange" . NIL))
|
||||
(("QJSValue" . NIL))
|
||||
|
|
@ -295,7 +295,7 @@
|
|||
"virtual QSize maximumSize () const = 0"
|
||||
"virtual int minimumHeightForWidth ( int ) const"
|
||||
"virtual QSize minimumSize () const = 0"
|
||||
"virtual void setGeometry ( const QRect & ) = 0"
|
||||
"virtual void setGeometry ( const QRect & ) = 0"
|
||||
"virtual QSize sizeHint () const = 0"
|
||||
"virtual QSpacerItem * spacerItem ()"
|
||||
"virtual QWidget * widget ()")
|
||||
|
|
@ -304,7 +304,7 @@
|
|||
(("QListWidgetItem" . NIL)
|
||||
"virtual QListWidgetItem * clone () const"
|
||||
"virtual QVariant data ( int ) const"
|
||||
"virtual void setData ( int , const QVariant & )")
|
||||
"virtual void setData ( int , const QVariant & )")
|
||||
(("QLocale" . NIL))
|
||||
(("QMargins" . NIL))
|
||||
(("QMarginsF" . NIL))
|
||||
|
|
@ -324,7 +324,7 @@
|
|||
(("QNetworkInterface" . NIL))
|
||||
(("QNetworkProxy" . NIL))
|
||||
(("QNetworkProxyFactory" . NIL)
|
||||
"virtual QList<QNetworkProxy> queryProxy ( const QNetworkProxyQuery & = QNetworkProxyQuery() ) = 0")
|
||||
"virtual QList<QNetworkProxy> queryProxy ( const QNetworkProxyQuery & = QNetworkProxyQuery() ) = 0")
|
||||
(("QNetworkProxyQuery" . NIL))
|
||||
(("QNetworkRequest" . NIL))
|
||||
(("QOpenGLFramebufferObject" . NIL))
|
||||
|
|
@ -338,7 +338,7 @@
|
|||
(("QPagedPaintDevice" . "QPaintDevice")
|
||||
"virtual bool newPage () = 0"
|
||||
"virtual void setPageSize ( PageSize )"
|
||||
"virtual void setPageSizeMM ( const QSizeF & )")
|
||||
"virtual void setPageSizeMM ( const QSizeF & )")
|
||||
(("QPaintDevice" . NIL)
|
||||
"virtual int metric ( PaintDeviceMetric ) const")
|
||||
(("QPaintEvent" . "QEvent"))
|
||||
|
|
@ -349,7 +349,7 @@
|
|||
(("QPen" . NIL))
|
||||
(("QPersistentModelIndex" . NIL))
|
||||
(("QPicture" . "QPaintDevice")
|
||||
"virtual void setData ( const char * , uint )")
|
||||
"virtual void setData ( const char * , uint )")
|
||||
(("QPixmap" . "QPaintDevice"))
|
||||
(("QPixmapCache" . NIL))
|
||||
(("QPrinter" . "QPagedPaintDevice")
|
||||
|
|
@ -357,7 +357,7 @@
|
|||
(("QPrinterInfo" . NIL))
|
||||
(("QProcessEnvironment" . NIL))
|
||||
(("QQmlAbstractUrlInterceptor" . NIL)
|
||||
"virtual QUrl intercept ( const QUrl & , DataType ) = 0")
|
||||
"virtual QUrl intercept ( const QUrl & , DataType ) = 0")
|
||||
(("QQmlError" . NIL))
|
||||
(("QQmlImageProviderBase" . NIL)
|
||||
"virtual Flags flags () const = 0"
|
||||
|
|
@ -365,22 +365,22 @@
|
|||
(("QQmlIncubationController" . NIL)
|
||||
"virtual void incubatingObjectCountChanged ( int )")
|
||||
(("QQmlIncubator" . NIL)
|
||||
"virtual void setInitialState ( QObject * )"
|
||||
"virtual void setInitialState ( QObject * )"
|
||||
"virtual void statusChanged ( Status )")
|
||||
(("QQmlNetworkAccessManagerFactory" . NIL)
|
||||
"virtual QNetworkAccessManager * create ( QObject * ) = 0")
|
||||
"virtual QNetworkAccessManager * create ( QObject * ) = 0")
|
||||
(("QQmlParserStatus" . NIL)
|
||||
"virtual void classBegin () = 0"
|
||||
"virtual void componentComplete () = 0")
|
||||
(("QQmlProperty" . NIL))
|
||||
(("QQmlPropertyValueSource" . NIL)
|
||||
"virtual void setTarget ( const QQmlProperty & ) = 0")
|
||||
"virtual void setTarget ( const QQmlProperty & ) = 0")
|
||||
(("QQmlScriptString" . NIL))
|
||||
(("QQuaternion" . NIL))
|
||||
(("QQuickImageProvider" . "QQmlImageProviderBase")
|
||||
"virtual QImage requestImage ( const QString & , QSize * , const QSize & )"
|
||||
"virtual QPixmap requestPixmap ( const QString & , QSize * , const QSize & )"
|
||||
"virtual QQuickTextureFactory * requestTexture ( const QString & , QSize * , const QSize & )")
|
||||
"virtual QImage requestImage ( const QString & , QSize * , const QSize & )"
|
||||
"virtual QPixmap requestPixmap ( const QString & , QSize * , const QSize & )"
|
||||
"virtual QQuickTextureFactory * requestTexture ( const QString & , QSize * , const QSize & )")
|
||||
(("QRadialGradient" . "QGradient"))
|
||||
(("QRegExp" . NIL))
|
||||
(("QRegion" . NIL))
|
||||
|
|
@ -395,13 +395,13 @@
|
|||
(("QSGGeometry" . NIL))
|
||||
(("QSGGeometryNode" . "QSGBasicGeometryNode"))
|
||||
(("QSGMaterial" . NIL)
|
||||
"virtual int compare ( const QSGMaterial * ) const"
|
||||
"virtual int compare ( const QSGMaterial * ) const"
|
||||
"virtual QSGMaterialShader * createShader () const = 0"
|
||||
"virtual QSGMaterialType * type () const = 0")
|
||||
(("QSGMaterialShader" . NIL)
|
||||
"virtual void activate ()"
|
||||
"virtual void deactivate ()"
|
||||
"virtual void updateState ( const RenderState & , QSGMaterial * , QSGMaterial * )"
|
||||
"virtual void updateState ( const RenderState & , QSGMaterial * , QSGMaterial * )"
|
||||
"virtual void compile ()"
|
||||
"virtual const char * fragmentShader () const"
|
||||
"virtual void initialize ()"
|
||||
|
|
@ -429,7 +429,7 @@
|
|||
"virtual bool isEmpty () const"
|
||||
"virtual QSize maximumSize () const"
|
||||
"virtual QSize minimumSize () const"
|
||||
"virtual void setGeometry ( const QRect & )"
|
||||
"virtual void setGeometry ( const QRect & )"
|
||||
"virtual QSize sizeHint () const"
|
||||
"virtual QSpacerItem * spacerItem ()")
|
||||
(("QSqlDatabase" . NIL))
|
||||
|
|
@ -441,8 +441,8 @@
|
|||
(("QSqlRelation" . NIL))
|
||||
(("QSqlResult" . NIL)
|
||||
"virtual QVariant handle () const"
|
||||
"virtual void bindValue ( int , const QVariant & , QSql::ParamType )"
|
||||
"virtual void bindValue ( const QString & , const QVariant & , QSql::ParamType )"
|
||||
"virtual void bindValue ( int , const QVariant & , QSql::ParamType )"
|
||||
"virtual void bindValue ( const QString & , const QVariant & , QSql::ParamType )"
|
||||
"virtual QVariant data ( int ) = 0"
|
||||
"virtual bool exec ()"
|
||||
"virtual bool fetch ( int ) = 0"
|
||||
|
|
@ -453,15 +453,15 @@
|
|||
"virtual bool isNull ( int ) = 0"
|
||||
"virtual QVariant lastInsertId () const"
|
||||
"virtual int numRowsAffected () = 0"
|
||||
"virtual bool prepare ( const QString & )"
|
||||
"virtual bool prepare ( const QString & )"
|
||||
"virtual QSqlRecord record () const"
|
||||
"virtual bool reset ( const QString & ) = 0"
|
||||
"virtual bool savePrepare ( const QString & )"
|
||||
"virtual bool reset ( const QString & ) = 0"
|
||||
"virtual bool savePrepare ( const QString & )"
|
||||
"virtual void setActive ( bool )"
|
||||
"virtual void setAt ( int )"
|
||||
"virtual void setForwardOnly ( bool )"
|
||||
"virtual void setLastError ( const QSqlError & )"
|
||||
"virtual void setQuery ( const QString & )"
|
||||
"virtual void setLastError ( const QSqlError & )"
|
||||
"virtual void setQuery ( const QString & )"
|
||||
"virtual void setSelect ( bool )"
|
||||
"virtual int size () = 0")
|
||||
(("QSslCertificate" . NIL))
|
||||
|
|
@ -472,7 +472,7 @@
|
|||
(("QStandardItem" . NIL)
|
||||
"virtual QStandardItem * clone () const"
|
||||
"virtual QVariant data ( int = Qt::UserRole + 1 ) const"
|
||||
"virtual void setData ( const QVariant & , int = Qt::UserRole + 1 )"
|
||||
"virtual void setData ( const QVariant & , int = Qt::UserRole + 1 )"
|
||||
"virtual int type () const")
|
||||
(("QStandardPaths" . NIL))
|
||||
(("QStatusTipEvent" . "QEvent"))
|
||||
|
|
@ -491,7 +491,7 @@
|
|||
(("QTableWidgetItem" . NIL)
|
||||
"virtual QTableWidgetItem * clone () const"
|
||||
"virtual QVariant data ( int ) const"
|
||||
"virtual void setData ( int , const QVariant & )")
|
||||
"virtual void setData ( int , const QVariant & )")
|
||||
(("QTableWidgetSelectionRange" . NIL))
|
||||
(("QTabletEvent" . "QInputEvent"))
|
||||
(("QTextBlock" . NIL))
|
||||
|
|
@ -503,8 +503,8 @@
|
|||
"virtual QList<QByteArray> aliases () const"
|
||||
"virtual int mibEnum () const = 0"
|
||||
"virtual QByteArray name () const = 0"
|
||||
"virtual QByteArray convertFromUnicode ( const QChar * , int , ConverterState * ) const = 0"
|
||||
"virtual QString convertToUnicode ( const char * , int , ConverterState * ) const = 0")
|
||||
"virtual QByteArray convertFromUnicode ( const QChar * , int , ConverterState * ) const = 0"
|
||||
"virtual QString convertToUnicode ( const char * , int , ConverterState * ) const = 0")
|
||||
(("QTextCursor" . NIL))
|
||||
(("QTextDecoder" . NIL))
|
||||
(("QTextDocumentFragment" . NIL))
|
||||
|
|
@ -532,10 +532,10 @@
|
|||
(("QTreeWidgetItem" . NIL)
|
||||
"virtual QTreeWidgetItem * clone () const"
|
||||
"virtual QVariant data ( int , int ) const"
|
||||
"virtual void setData ( int , int , const QVariant & )")
|
||||
"virtual void setData ( int , int , const QVariant & )")
|
||||
(("QUndoCommand" . NIL)
|
||||
"virtual int id () const"
|
||||
"virtual bool mergeWith ( const QUndoCommand * )"
|
||||
"virtual bool mergeWith ( const QUndoCommand * )"
|
||||
"virtual void redo ()"
|
||||
"virtual void undo ()")
|
||||
(("QUrl" . NIL))
|
||||
|
|
@ -550,8 +550,12 @@
|
|||
(("QWebDatabase" . NIL))
|
||||
(("QWebElement" . NIL))
|
||||
(("QWebElementCollection" . NIL))
|
||||
(("QWebHistory" . NIL))
|
||||
(("QWebHistoryItem" . NIL))
|
||||
(("QWebEngineCertificateError" . NIL))
|
||||
(("QWebEngineFullScreenRequest" . NIL))
|
||||
(("QWebEngineScript" . NIL))
|
||||
(("QWebEngineScriptCollection" . NIL))
|
||||
(("QWebEngineSettings" . NIL))
|
||||
(("QWebEngineUrlRequestInfo" . NIL))
|
||||
(("QWebHitTestResult" . NIL))
|
||||
(("QWebSecurityOrigin" . NIL))
|
||||
(("QWebSettings" . NIL))
|
||||
|
|
@ -567,7 +571,7 @@
|
|||
"virtual bool isEmpty () const"
|
||||
"virtual QSize maximumSize () const"
|
||||
"virtual QSize minimumSize () const"
|
||||
"virtual void setGeometry ( const QRect & )"
|
||||
"virtual void setGeometry ( const QRect & )"
|
||||
"virtual QSize sizeHint () const"
|
||||
"virtual QWidget * widget ()")
|
||||
(("QWindowStateChangeEvent" . "QEvent"))
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -20,6 +20,7 @@ int main(int argc, char** argv) {
|
|||
|
||||
EQL::ini(argv); // best initialized here
|
||||
|
||||
QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts); // for Qt WebEngine
|
||||
QApplication qapp(argc, argv);
|
||||
|
||||
QTextCodec* utf8 = QTextCodec::codecForName("UTF-8");
|
||||
|
|
|
|||
|
|
@ -1331,6 +1331,8 @@ static MetaArg toMetaArg(const QByteArray& sType, cl_object l_arg) {
|
|||
p = LObjects::toMetaArg_quick(n, l_arg, &found); }
|
||||
if(!found && LObjects::toMetaArg_sql) {
|
||||
p = LObjects::toMetaArg_sql(n, l_arg, &found); }
|
||||
if(!found && LObjects::toMetaArg_webengine) {
|
||||
p = LObjects::toMetaArg_webengine(n, l_arg, &found); }
|
||||
if(!found && LObjects::toMetaArg_webkit) {
|
||||
p = LObjects::toMetaArg_webkit(n, l_arg, &found); }
|
||||
if(!found) {
|
||||
|
|
@ -1504,6 +1506,8 @@ cl_object to_lisp_arg(const MetaArg& arg) {
|
|||
l_ret = LObjects::to_lisp_arg_quick(n, p, &found); }
|
||||
if(!found && LObjects::to_lisp_arg_sql) {
|
||||
l_ret = LObjects::to_lisp_arg_sql(n, p, &found); }
|
||||
if(!found && LObjects::to_lisp_arg_webengine) {
|
||||
l_ret = LObjects::to_lisp_arg_webengine(n, p, &found); }
|
||||
if(!found && LObjects::to_lisp_arg_webkit) {
|
||||
l_ret = LObjects::to_lisp_arg_webkit(n, p, &found); }
|
||||
// enum
|
||||
|
|
@ -2416,7 +2420,7 @@ cl_object qclear_event_filters() {
|
|||
|
||||
cl_object qrequire2(cl_object l_name, cl_object l_quiet) { /// qrequire
|
||||
/// args: (module &optional quiet)
|
||||
/// Loads an EQL module, corresponding to a Qt module.<br>Returns the module name if both loading and initializing have been successful.<br>If the <code>quiet</code> argument is not <code>NIL</code>, no error message will be shown on failure.<br><br>Currently available modules: <code>:help :multimedia :network :quick :sql :svg :webkit</code>
|
||||
/// Loads an EQL module, corresponding to a Qt module.<br>Returns the module name if both loading and initializing have been successful.<br>If the <code>quiet</code> argument is not <code>NIL</code>, no error message will be shown on failure.<br><br>Currently available modules: <code>:help :multimedia :network :quick :sql :svg :webengine :webkit</code>
|
||||
/// (qrequire :network)
|
||||
ecl_process_env()->nvalues = 1;
|
||||
QString name = symbolName(l_name);
|
||||
|
|
@ -2480,6 +2484,13 @@ cl_object qrequire2(cl_object l_name, cl_object l_quiet) { /// qrequire
|
|||
LObjects::toMetaArg_sql = metaArg;
|
||||
LObjects::to_lisp_arg_sql = lispArg;
|
||||
return l_name; }
|
||||
else if("webengine" == name) {
|
||||
LObjects::staticMetaObject_webengine = meta;
|
||||
LObjects::deleteNObject_webengine = del;
|
||||
LObjects::override_webengine = over;
|
||||
LObjects::toMetaArg_webengine = metaArg;
|
||||
LObjects::to_lisp_arg_webengine = lispArg;
|
||||
return l_name; }
|
||||
else if("webkit" == name) {
|
||||
LObjects::staticMetaObject_webkit = meta;
|
||||
LObjects::deleteNObject_webkit = del;
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
#include <QTimer>
|
||||
#include <QStringList>
|
||||
|
||||
const char EQL::version[] = "17.3.1"; // Mar 2017
|
||||
const char EQL::version[] = "17.3.2"; // Mar 2017
|
||||
|
||||
extern "C" void ini_EQL(cl_object);
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -26,8 +26,9 @@ QT_BEGIN_NAMESPACE
|
|||
typedef QList<int> NumList;
|
||||
typedef QList<QByteArray> StrList;
|
||||
|
||||
#define QMarginsF_DEFAULT QMarginsF(0, 0, 0, 0)
|
||||
#define QRect_DEFAULT QRect(0, 0, -1, -1)
|
||||
#define QMarginsF_DEFAULT QMarginsF(0, 0, 0, 0)
|
||||
#define QRect_DEFAULT QRect(0, 0, -1, -1)
|
||||
#define QPageLayout_DEFAULT QPageLayout(QPageSize(QPageSize::A4), QPageLayout::Portrait, QMarginsF())
|
||||
|
||||
class EQL;
|
||||
class DynObject;
|
||||
|
|
@ -87,6 +88,8 @@ public:
|
|||
static int T_QSslKey;
|
||||
static int T_QVideoEncoderSettings;
|
||||
static int T_QVideoSurfaceFormat;
|
||||
static int T_QWebEngineScript;
|
||||
static int T_QList_QWebEngineScript;
|
||||
static int T_QWebElement;
|
||||
static int T_QList_QWebElement;
|
||||
static int T_QWebElementCollection;
|
||||
|
|
@ -151,6 +154,7 @@ public:
|
|||
static StaticMetaObject staticMetaObject_quick;
|
||||
static StaticMetaObject staticMetaObject_sql;
|
||||
static StaticMetaObject staticMetaObject_svg;
|
||||
static StaticMetaObject staticMetaObject_webengine;
|
||||
static StaticMetaObject staticMetaObject_webkit;
|
||||
static DeleteNObject deleteNObject_help;
|
||||
static DeleteNObject deleteNObject_multimedia;
|
||||
|
|
@ -158,6 +162,7 @@ public:
|
|||
static DeleteNObject deleteNObject_quick;
|
||||
static DeleteNObject deleteNObject_sql;
|
||||
static DeleteNObject deleteNObject_svg;
|
||||
static DeleteNObject deleteNObject_webengine;
|
||||
static DeleteNObject deleteNObject_webkit;
|
||||
static Override override_help;
|
||||
static Override override_multimedia;
|
||||
|
|
@ -165,6 +170,7 @@ public:
|
|||
static Override override_quick;
|
||||
static Override override_sql;
|
||||
static Override override_svg;
|
||||
static Override override_webengine;
|
||||
static Override override_webkit;
|
||||
static ToMetaArg toMetaArg_help;
|
||||
static To_lisp_arg to_lisp_arg_help;
|
||||
|
|
@ -176,6 +182,8 @@ public:
|
|||
static To_lisp_arg to_lisp_arg_quick;
|
||||
static ToMetaArg toMetaArg_sql;
|
||||
static To_lisp_arg to_lisp_arg_sql;
|
||||
static ToMetaArg toMetaArg_webengine;
|
||||
static To_lisp_arg to_lisp_arg_webengine;
|
||||
static ToMetaArg toMetaArg_webkit;
|
||||
static To_lisp_arg to_lisp_arg_webkit;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -20,10 +20,10 @@ public:
|
|||
|
||||
bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 269); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 269, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::isObscuredBy(x1); } return ret; }
|
||||
QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 270); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 270, 0, id).value<QPainterPath>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::opaqueArea(); } return ret; }
|
||||
void advance(int x1) { quint64 id = LObjects::override_id(unique, 461); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 461, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::advance(x1); }}
|
||||
void advance(int x1) { quint64 id = LObjects::override_id(unique, 471); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 471, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::advance(x1); }}
|
||||
QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 261, 0, id).value<QRectF>(); } return ret; }
|
||||
bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 462, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::collidesWithItem(x1, x2); } return ret; }
|
||||
bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 463); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 463, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::collidesWithPath(x1, x2); } return ret; }
|
||||
bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 472); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 472, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::collidesWithItem(x1, x2); } return ret; }
|
||||
bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 473); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 473, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::collidesWithPath(x1, x2); } return ret; }
|
||||
bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 268); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 268, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::contains(x1); } return ret; }
|
||||
void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 232); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 232, args, id); }}
|
||||
QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 262, 0, id).value<QPainterPath>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::shape(); } return ret; }
|
||||
|
|
@ -48,7 +48,7 @@ public:
|
|||
void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 247); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 247, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::mousePressEvent(x1); }}
|
||||
void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 248); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 248, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::mouseReleaseEvent(x1); }}
|
||||
bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 263); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 263, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::sceneEvent(x1); } return ret; }
|
||||
bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 464); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 464, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::sceneEventFilter(x1, x2); } return ret; }
|
||||
bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 474); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 474, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAbstractGraphicsShapeItem::sceneEventFilter(x1, x2); } return ret; }
|
||||
void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 252); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 252, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAbstractGraphicsShapeItem::wheelEvent(x1); }}
|
||||
};
|
||||
|
||||
|
|
@ -67,9 +67,9 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
void deleteText(int x1, int x2) { quint64 id = LObjects::override_id(unique, 465); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 465, args, id); }}
|
||||
void insertText(int x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 466); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 466, args, id); }}
|
||||
void replaceText(int x1, int x2, const QString& x3) { quint64 id = LObjects::override_id(unique, 467); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 467, args, id); }}
|
||||
void deleteText(int x1, int x2) { quint64 id = LObjects::override_id(unique, 475); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 475, args, id); }}
|
||||
void insertText(int x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 476); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 476, args, id); }}
|
||||
void replaceText(int x1, int x2, const QString& x3) { quint64 id = LObjects::override_id(unique, 477); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 477, args, id); }}
|
||||
};
|
||||
|
||||
class LAccessibleEvent : public QAccessibleEvent {
|
||||
|
|
@ -81,7 +81,7 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 468); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 468, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleEvent::accessibleInterface(); } return ret; }
|
||||
QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 478); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 478, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleEvent::accessibleInterface(); } return ret; }
|
||||
};
|
||||
|
||||
class LAccessibleInterface : public QAccessibleInterface {
|
||||
|
|
@ -91,21 +91,21 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QColor backgroundColor() const { quint64 id = LObjects::override_id(unique, 469); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 469, 0, id).value<QColor>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleInterface::backgroundColor(); } return ret; }
|
||||
QAccessibleInterface* child(int x1) const { quint64 id = LObjects::override_id(unique, 470); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 470, args, id).value<void*>(); } return ret; }
|
||||
QAccessibleInterface* childAt(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 471); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 471, args, id).value<void*>(); } return ret; }
|
||||
int childCount() const { quint64 id = LObjects::override_id(unique, 472); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 472, 0, id).toInt(); } return ret; }
|
||||
QAccessibleInterface* focusChild() const { quint64 id = LObjects::override_id(unique, 473); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 473, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleInterface::focusChild(); } return ret; }
|
||||
QColor foregroundColor() const { quint64 id = LObjects::override_id(unique, 474); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 474, 0, id).value<QColor>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleInterface::foregroundColor(); } return ret; }
|
||||
int indexOfChild(const QAccessibleInterface* x1) const { quint64 id = LObjects::override_id(unique, 475); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 475, args, id).toInt(); } return ret; }
|
||||
bool isValid() const { quint64 id = LObjects::override_id(unique, 476); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 476, 0, id).toBool(); } return ret; }
|
||||
QObject* object() const { quint64 id = LObjects::override_id(unique, 477); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QObject*)callOverrideFun(fun, 477, 0, id).value<void*>(); } return ret; }
|
||||
QAccessibleInterface* parent() const { quint64 id = LObjects::override_id(unique, 478); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 478, 0, id).value<void*>(); } return ret; }
|
||||
QRect rect() const { quint64 id = LObjects::override_id(unique, 479); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 479, 0, id).value<QRect>(); } return ret; }
|
||||
QAccessible::Role role() const { quint64 id = LObjects::override_id(unique, 480); void* fun = LObjects::overrideFun(id); QAccessible::Role ret = (QAccessible::Role)0; if(fun && (LObjects::calling != id)) { ret = (QAccessible::Role)callOverrideFun(fun, 480, 0, id).toInt(); } return ret; }
|
||||
void setText(QAccessible::Text x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 481); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 481, args, id); }}
|
||||
QString text(QAccessible::Text x1) const { quint64 id = LObjects::override_id(unique, 482); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 482, args, id).value<QString>(); } return ret; }
|
||||
QWindow* window() const { quint64 id = LObjects::override_id(unique, 483); void* fun = LObjects::overrideFun(id); QWindow* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWindow*)callOverrideFun(fun, 483, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleInterface::window(); } return ret; }
|
||||
QColor backgroundColor() const { quint64 id = LObjects::override_id(unique, 479); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 479, 0, id).value<QColor>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleInterface::backgroundColor(); } return ret; }
|
||||
QAccessibleInterface* child(int x1) const { quint64 id = LObjects::override_id(unique, 480); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 480, args, id).value<void*>(); } return ret; }
|
||||
QAccessibleInterface* childAt(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 481); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 481, args, id).value<void*>(); } return ret; }
|
||||
int childCount() const { quint64 id = LObjects::override_id(unique, 482); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 482, 0, id).toInt(); } return ret; }
|
||||
QAccessibleInterface* focusChild() const { quint64 id = LObjects::override_id(unique, 483); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 483, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleInterface::focusChild(); } return ret; }
|
||||
QColor foregroundColor() const { quint64 id = LObjects::override_id(unique, 484); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 484, 0, id).value<QColor>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleInterface::foregroundColor(); } return ret; }
|
||||
int indexOfChild(const QAccessibleInterface* x1) const { quint64 id = LObjects::override_id(unique, 485); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 485, args, id).toInt(); } return ret; }
|
||||
bool isValid() const { quint64 id = LObjects::override_id(unique, 486); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 486, 0, id).toBool(); } return ret; }
|
||||
QObject* object() const { quint64 id = LObjects::override_id(unique, 487); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QObject*)callOverrideFun(fun, 487, 0, id).value<void*>(); } return ret; }
|
||||
QAccessibleInterface* parent() const { quint64 id = LObjects::override_id(unique, 488); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 488, 0, id).value<void*>(); } return ret; }
|
||||
QRect rect() const { quint64 id = LObjects::override_id(unique, 489); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 489, 0, id).value<QRect>(); } return ret; }
|
||||
QAccessible::Role role() const { quint64 id = LObjects::override_id(unique, 490); void* fun = LObjects::overrideFun(id); QAccessible::Role ret = (QAccessible::Role)0; if(fun && (LObjects::calling != id)) { ret = (QAccessible::Role)callOverrideFun(fun, 490, 0, id).toInt(); } return ret; }
|
||||
void setText(QAccessible::Text x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 491); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 491, args, id); }}
|
||||
QString text(QAccessible::Text x1) const { quint64 id = LObjects::override_id(unique, 492); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 492, args, id).value<QString>(); } return ret; }
|
||||
QWindow* window() const { quint64 id = LObjects::override_id(unique, 493); void* fun = LObjects::overrideFun(id); QWindow* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWindow*)callOverrideFun(fun, 493, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleInterface::window(); } return ret; }
|
||||
};
|
||||
|
||||
class LAccessibleStateChangeEvent : public QAccessibleStateChangeEvent {
|
||||
|
|
@ -115,7 +115,7 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 468); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 468, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleStateChangeEvent::accessibleInterface(); } return ret; }
|
||||
QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 478); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 478, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleStateChangeEvent::accessibleInterface(); } return ret; }
|
||||
};
|
||||
|
||||
class LAccessibleTextCursorEvent : public QAccessibleTextCursorEvent {
|
||||
|
|
@ -127,7 +127,7 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 468); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 468, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleTextCursorEvent::accessibleInterface(); } return ret; }
|
||||
QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 478); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 478, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleTextCursorEvent::accessibleInterface(); } return ret; }
|
||||
};
|
||||
|
||||
class LAccessibleTextInsertEvent : public QAccessibleTextInsertEvent {
|
||||
|
|
@ -147,17 +147,17 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
void addSelection(int x1, int x2) { quint64 id = LObjects::override_id(unique, 484); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 484, args, id); }}
|
||||
int characterCount() const { quint64 id = LObjects::override_id(unique, 485); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 485, 0, id).toInt(); } return ret; }
|
||||
QRect characterRect(int x1) const { quint64 id = LObjects::override_id(unique, 486); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 486, args, id).value<QRect>(); } return ret; }
|
||||
int cursorPosition() const { quint64 id = LObjects::override_id(unique, 487); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 487, 0, id).toInt(); } return ret; }
|
||||
int offsetAtPoint(const QPoint& x1) const { quint64 id = LObjects::override_id(unique, 488); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 488, args, id).toInt(); } return ret; }
|
||||
void removeSelection(int x1) { quint64 id = LObjects::override_id(unique, 489); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 489, args, id); }}
|
||||
void scrollToSubstring(int x1, int x2) { quint64 id = LObjects::override_id(unique, 490); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 490, args, id); }}
|
||||
int selectionCount() const { quint64 id = LObjects::override_id(unique, 491); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 491, 0, id).toInt(); } return ret; }
|
||||
void setCursorPosition(int x1) { quint64 id = LObjects::override_id(unique, 492); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 492, args, id); }}
|
||||
void setSelection(int x1, int x2, int x3) { quint64 id = LObjects::override_id(unique, 493); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 493, args, id); }}
|
||||
QString text(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 494); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 494, args, id).value<QString>(); } return ret; }
|
||||
void addSelection(int x1, int x2) { quint64 id = LObjects::override_id(unique, 494); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 494, args, id); }}
|
||||
int characterCount() const { quint64 id = LObjects::override_id(unique, 495); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 495, 0, id).toInt(); } return ret; }
|
||||
QRect characterRect(int x1) const { quint64 id = LObjects::override_id(unique, 496); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 496, args, id).value<QRect>(); } return ret; }
|
||||
int cursorPosition() const { quint64 id = LObjects::override_id(unique, 497); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 497, 0, id).toInt(); } return ret; }
|
||||
int offsetAtPoint(const QPoint& x1) const { quint64 id = LObjects::override_id(unique, 498); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 498, args, id).toInt(); } return ret; }
|
||||
void removeSelection(int x1) { quint64 id = LObjects::override_id(unique, 499); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 499, args, id); }}
|
||||
void scrollToSubstring(int x1, int x2) { quint64 id = LObjects::override_id(unique, 500); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 500, args, id); }}
|
||||
int selectionCount() const { quint64 id = LObjects::override_id(unique, 501); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 501, 0, id).toInt(); } return ret; }
|
||||
void setCursorPosition(int x1) { quint64 id = LObjects::override_id(unique, 502); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 502, args, id); }}
|
||||
void setSelection(int x1, int x2, int x3) { quint64 id = LObjects::override_id(unique, 503); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 503, args, id); }}
|
||||
QString text(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 504); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 504, args, id).value<QString>(); } return ret; }
|
||||
};
|
||||
|
||||
class LAccessibleTextRemoveEvent : public QAccessibleTextRemoveEvent {
|
||||
|
|
@ -199,7 +199,7 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 468); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 468, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleValueChangeEvent::accessibleInterface(); } return ret; }
|
||||
QAccessibleInterface* accessibleInterface() const { quint64 id = LObjects::override_id(unique, 478); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 478, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleValueChangeEvent::accessibleInterface(); } return ret; }
|
||||
};
|
||||
|
||||
class LAccessibleValueInterface : public QAccessibleValueInterface {
|
||||
|
|
@ -209,11 +209,11 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QVariant currentValue() const { quint64 id = LObjects::override_id(unique, 495); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 495, 0, id).value<QVariant>(); } return ret; }
|
||||
QVariant maximumValue() const { quint64 id = LObjects::override_id(unique, 496); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 496, 0, id).value<QVariant>(); } return ret; }
|
||||
QVariant minimumStepSize() const { quint64 id = LObjects::override_id(unique, 497); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 497, 0, id).value<QVariant>(); } return ret; }
|
||||
QVariant minimumValue() const { quint64 id = LObjects::override_id(unique, 498); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 498, 0, id).value<QVariant>(); } return ret; }
|
||||
void setCurrentValue(const QVariant& x1) { quint64 id = LObjects::override_id(unique, 499); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 499, args, id); }}
|
||||
QVariant currentValue() const { quint64 id = LObjects::override_id(unique, 505); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 505, 0, id).value<QVariant>(); } return ret; }
|
||||
QVariant maximumValue() const { quint64 id = LObjects::override_id(unique, 506); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 506, 0, id).value<QVariant>(); } return ret; }
|
||||
QVariant minimumStepSize() const { quint64 id = LObjects::override_id(unique, 507); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 507, 0, id).value<QVariant>(); } return ret; }
|
||||
QVariant minimumValue() const { quint64 id = LObjects::override_id(unique, 508); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 508, 0, id).value<QVariant>(); } return ret; }
|
||||
void setCurrentValue(const QVariant& x1) { quint64 id = LObjects::override_id(unique, 509); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 509, args, id); }}
|
||||
};
|
||||
|
||||
class LAccessibleWidget : public QAccessibleWidget {
|
||||
|
|
@ -224,24 +224,24 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QStringList actionNames() const { quint64 id = LObjects::override_id(unique, 500); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 500, 0, id).value<QStringList>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::actionNames(); } return ret; }
|
||||
QColor backgroundColor() const { quint64 id = LObjects::override_id(unique, 469); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 469, 0, id).value<QColor>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::backgroundColor(); } return ret; }
|
||||
QAccessibleInterface* child(int x1) const { quint64 id = LObjects::override_id(unique, 470); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 470, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::child(x1); } return ret; }
|
||||
int childCount() const { quint64 id = LObjects::override_id(unique, 472); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 472, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::childCount(); } return ret; }
|
||||
void doAction(const QString& x1) { quint64 id = LObjects::override_id(unique, 501); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 501, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAccessibleWidget::doAction(x1); }}
|
||||
QAccessibleInterface* focusChild() const { quint64 id = LObjects::override_id(unique, 473); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 473, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::focusChild(); } return ret; }
|
||||
QColor foregroundColor() const { quint64 id = LObjects::override_id(unique, 474); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 474, 0, id).value<QColor>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::foregroundColor(); } return ret; }
|
||||
int indexOfChild(const QAccessibleInterface* x1) const { quint64 id = LObjects::override_id(unique, 475); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 475, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::indexOfChild(x1); } return ret; }
|
||||
bool isValid() const { quint64 id = LObjects::override_id(unique, 476); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 476, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::isValid(); } return ret; }
|
||||
QStringList keyBindingsForAction(const QString& x1) const { quint64 id = LObjects::override_id(unique, 502); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 502, args, id).value<QStringList>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::keyBindingsForAction(x1); } return ret; }
|
||||
QAccessibleInterface* parent() const { quint64 id = LObjects::override_id(unique, 478); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 478, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::parent(); } return ret; }
|
||||
QRect rect() const { quint64 id = LObjects::override_id(unique, 479); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 479, 0, id).value<QRect>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::rect(); } return ret; }
|
||||
QAccessible::Role role() const { quint64 id = LObjects::override_id(unique, 480); void* fun = LObjects::overrideFun(id); QAccessible::Role ret = (QAccessible::Role)0; if(fun && (LObjects::calling != id)) { ret = (QAccessible::Role)callOverrideFun(fun, 480, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::role(); } return ret; }
|
||||
QString text(QAccessible::Text x1) const { quint64 id = LObjects::override_id(unique, 482); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 482, args, id).value<QString>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::text(x1); } return ret; }
|
||||
QWindow* window() const { quint64 id = LObjects::override_id(unique, 483); void* fun = LObjects::overrideFun(id); QWindow* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWindow*)callOverrideFun(fun, 483, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::window(); } return ret; }
|
||||
QAccessibleInterface* childAt(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 471); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 471, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::childAt(x1, x2); } return ret; }
|
||||
QObject* object() const { quint64 id = LObjects::override_id(unique, 477); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QObject*)callOverrideFun(fun, 477, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::object(); } return ret; }
|
||||
void setText(QAccessible::Text x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 481); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 481, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAccessibleWidget::setText(x1, x2); }}
|
||||
QStringList actionNames() const { quint64 id = LObjects::override_id(unique, 510); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 510, 0, id).value<QStringList>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::actionNames(); } return ret; }
|
||||
QColor backgroundColor() const { quint64 id = LObjects::override_id(unique, 479); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 479, 0, id).value<QColor>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::backgroundColor(); } return ret; }
|
||||
QAccessibleInterface* child(int x1) const { quint64 id = LObjects::override_id(unique, 480); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 480, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::child(x1); } return ret; }
|
||||
int childCount() const { quint64 id = LObjects::override_id(unique, 482); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 482, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::childCount(); } return ret; }
|
||||
void doAction(const QString& x1) { quint64 id = LObjects::override_id(unique, 511); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 511, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAccessibleWidget::doAction(x1); }}
|
||||
QAccessibleInterface* focusChild() const { quint64 id = LObjects::override_id(unique, 483); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 483, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::focusChild(); } return ret; }
|
||||
QColor foregroundColor() const { quint64 id = LObjects::override_id(unique, 484); void* fun = LObjects::overrideFun(id); QColor ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 484, 0, id).value<QColor>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::foregroundColor(); } return ret; }
|
||||
int indexOfChild(const QAccessibleInterface* x1) const { quint64 id = LObjects::override_id(unique, 485); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 485, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::indexOfChild(x1); } return ret; }
|
||||
bool isValid() const { quint64 id = LObjects::override_id(unique, 486); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 486, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::isValid(); } return ret; }
|
||||
QStringList keyBindingsForAction(const QString& x1) const { quint64 id = LObjects::override_id(unique, 512); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 512, args, id).value<QStringList>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::keyBindingsForAction(x1); } return ret; }
|
||||
QAccessibleInterface* parent() const { quint64 id = LObjects::override_id(unique, 488); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QAccessibleInterface*)callOverrideFun(fun, 488, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::parent(); } return ret; }
|
||||
QRect rect() const { quint64 id = LObjects::override_id(unique, 489); void* fun = LObjects::overrideFun(id); QRect ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 489, 0, id).value<QRect>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::rect(); } return ret; }
|
||||
QAccessible::Role role() const { quint64 id = LObjects::override_id(unique, 490); void* fun = LObjects::overrideFun(id); QAccessible::Role ret = (QAccessible::Role)0; if(fun && (LObjects::calling != id)) { ret = (QAccessible::Role)callOverrideFun(fun, 490, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::role(); } return ret; }
|
||||
QString text(QAccessible::Text x1) const { quint64 id = LObjects::override_id(unique, 492); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 492, args, id).value<QString>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::text(x1); } return ret; }
|
||||
QWindow* window() const { quint64 id = LObjects::override_id(unique, 493); void* fun = LObjects::overrideFun(id); QWindow* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWindow*)callOverrideFun(fun, 493, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::window(); } return ret; }
|
||||
QAccessibleInterface* childAt(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 481); void* fun = LObjects::overrideFun(id); QAccessibleInterface* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QAccessibleInterface*)callOverrideFun(fun, 481, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::childAt(x1, x2); } return ret; }
|
||||
QObject* object() const { quint64 id = LObjects::override_id(unique, 487); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QObject*)callOverrideFun(fun, 487, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QAccessibleWidget::object(); } return ret; }
|
||||
void setText(QAccessible::Text x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 491); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 491, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QAccessibleWidget::setText(x1, x2); }}
|
||||
};
|
||||
|
||||
class LActionEvent : public QActionEvent {
|
||||
|
|
@ -547,8 +547,8 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QIcon icon(IconType x1) const { quint64 id = LObjects::override_id(unique, 503); void* fun = LObjects::overrideFun(id); QIcon ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 503, args, id).value<QIcon>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QFileIconProvider::icon(x1); } return ret; }
|
||||
QString type(const QFileInfo& x1) const { quint64 id = LObjects::override_id(unique, 505); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 505, args, id).value<QString>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QFileIconProvider::type(x1); } return ret; }
|
||||
QIcon icon(IconType x1) const { quint64 id = LObjects::override_id(unique, 513); void* fun = LObjects::overrideFun(id); QIcon ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 513, args, id).value<QIcon>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QFileIconProvider::icon(x1); } return ret; }
|
||||
QString type(const QFileInfo& x1) const { quint64 id = LObjects::override_id(unique, 515); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 515, args, id).value<QString>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QFileIconProvider::type(x1); } return ret; }
|
||||
};
|
||||
|
||||
class LFileInfo : public QFileInfo {
|
||||
|
|
@ -663,10 +663,10 @@ public:
|
|||
int count() const { quint64 id = LObjects::override_id(unique, 164); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 164, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsAnchorLayout::count(); } return ret; }
|
||||
void invalidate() { quint64 id = LObjects::override_id(unique, 166); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 166, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::invalidate(); }}
|
||||
QGraphicsLayoutItem* itemAt(int x1) const { quint64 id = LObjects::override_id(unique, 167); void* fun = LObjects::overrideFun(id); QGraphicsLayoutItem* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QGraphicsLayoutItem*)callOverrideFun(fun, 167, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsAnchorLayout::itemAt(x1); } return ret; }
|
||||
void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 506); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 506, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::removeAt(x1); }}
|
||||
void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 516); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 516, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::removeAt(x1); }}
|
||||
void setGeometry(const QRectF& x1) { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 233, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::setGeometry(x1); }}
|
||||
QSizeF sizeHint(Qt::SizeHint x1, const QSizeF& x2 = QSizeF()) const { quint64 id = LObjects::override_id(unique, 250); void* fun = LObjects::overrideFun(id); QSizeF ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 250, args, id).value<QSizeF>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsAnchorLayout::sizeHint(x1, x2); } return ret; }
|
||||
void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 507); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 507, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::widgetEvent(x1); }}
|
||||
void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 517); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 517, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::widgetEvent(x1); }}
|
||||
void updateGeometry() { quint64 id = LObjects::override_id(unique, 264); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 264, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsAnchorLayout::updateGeometry(); }}
|
||||
};
|
||||
|
||||
|
|
@ -700,10 +700,10 @@ public:
|
|||
int count() const { quint64 id = LObjects::override_id(unique, 164); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 164, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsGridLayout::count(); } return ret; }
|
||||
void invalidate() { quint64 id = LObjects::override_id(unique, 166); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 166, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::invalidate(); }}
|
||||
QGraphicsLayoutItem* itemAt(int x1) const { quint64 id = LObjects::override_id(unique, 167); void* fun = LObjects::overrideFun(id); QGraphicsLayoutItem* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QGraphicsLayoutItem*)callOverrideFun(fun, 167, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsGridLayout::itemAt(x1); } return ret; }
|
||||
void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 506); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 506, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::removeAt(x1); }}
|
||||
void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 516); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 516, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::removeAt(x1); }}
|
||||
void setGeometry(const QRectF& x1) { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 233, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::setGeometry(x1); }}
|
||||
QSizeF sizeHint(Qt::SizeHint x1, const QSizeF& x2 = QSizeF()) const { quint64 id = LObjects::override_id(unique, 250); void* fun = LObjects::overrideFun(id); QSizeF ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 250, args, id).value<QSizeF>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsGridLayout::sizeHint(x1, x2); } return ret; }
|
||||
void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 507); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 507, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::widgetEvent(x1); }}
|
||||
void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 517); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 517, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::widgetEvent(x1); }}
|
||||
void updateGeometry() { quint64 id = LObjects::override_id(unique, 264); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 264, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsGridLayout::updateGeometry(); }}
|
||||
};
|
||||
|
||||
|
|
@ -715,10 +715,10 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
void advance(int x1) { quint64 id = LObjects::override_id(unique, 461); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 461, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::advance(x1); }}
|
||||
void advance(int x1) { quint64 id = LObjects::override_id(unique, 471); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 471, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::advance(x1); }}
|
||||
QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 261, 0, id).value<QRectF>(); } return ret; }
|
||||
bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 462, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::collidesWithItem(x1, x2); } return ret; }
|
||||
bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 463); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 463, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::collidesWithPath(x1, x2); } return ret; }
|
||||
bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 472); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 472, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::collidesWithItem(x1, x2); } return ret; }
|
||||
bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 473); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 473, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::collidesWithPath(x1, x2); } return ret; }
|
||||
bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 268); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 268, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::contains(x1); } return ret; }
|
||||
bool isObscuredBy(const QGraphicsItem* x1) const { quint64 id = LObjects::override_id(unique, 269); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 269, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::isObscuredBy(x1); } return ret; }
|
||||
QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 270); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 270, 0, id).value<QPainterPath>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::opaqueArea(); } return ret; }
|
||||
|
|
@ -745,7 +745,7 @@ public:
|
|||
void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 247); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 247, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::mousePressEvent(x1); }}
|
||||
void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 248); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 248, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::mouseReleaseEvent(x1); }}
|
||||
bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 263); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 263, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::sceneEvent(x1); } return ret; }
|
||||
bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 464); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 464, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::sceneEventFilter(x1, x2); } return ret; }
|
||||
bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 474); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 474, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItem::sceneEventFilter(x1, x2); } return ret; }
|
||||
void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 252); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 252, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItem::wheelEvent(x1); }}
|
||||
};
|
||||
|
||||
|
|
@ -762,9 +762,9 @@ public:
|
|||
QPainterPath opaqueArea() const { quint64 id = LObjects::override_id(unique, 270); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 270, 0, id).value<QPainterPath>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::opaqueArea(); } return ret; }
|
||||
void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 232); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 232, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::paint(x1, x2, x3); }}
|
||||
int type() const { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 234, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::type(); } return ret; }
|
||||
void advance(int x1) { quint64 id = LObjects::override_id(unique, 461); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 461, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::advance(x1); }}
|
||||
bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 462, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::collidesWithItem(x1, x2); } return ret; }
|
||||
bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 463); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 463, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::collidesWithPath(x1, x2); } return ret; }
|
||||
void advance(int x1) { quint64 id = LObjects::override_id(unique, 471); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 471, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::advance(x1); }}
|
||||
bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 472); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 472, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::collidesWithItem(x1, x2); } return ret; }
|
||||
bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 473); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 473, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::collidesWithPath(x1, x2); } return ret; }
|
||||
bool contains(const QPointF& x1) const { quint64 id = LObjects::override_id(unique, 268); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 268, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::contains(x1); } return ret; }
|
||||
QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 262, 0, id).value<QPainterPath>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::shape(); } return ret; }
|
||||
void contextMenuEvent(QGraphicsSceneContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 235); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 235, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::contextMenuEvent(x1); }}
|
||||
|
|
@ -787,7 +787,7 @@ public:
|
|||
void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 247); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 247, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::mousePressEvent(x1); }}
|
||||
void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 248); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 248, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::mouseReleaseEvent(x1); }}
|
||||
bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 263); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 263, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::sceneEvent(x1); } return ret; }
|
||||
bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 464); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 464, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::sceneEventFilter(x1, x2); } return ret; }
|
||||
bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 474); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 474, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsItemGroup::sceneEventFilter(x1, x2); } return ret; }
|
||||
void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 252); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 252, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsItemGroup::wheelEvent(x1); }}
|
||||
};
|
||||
|
||||
|
|
@ -802,8 +802,8 @@ public:
|
|||
int count() const { quint64 id = LObjects::override_id(unique, 164); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 164, 0, id).toInt(); } return ret; }
|
||||
void invalidate() { quint64 id = LObjects::override_id(unique, 166); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 166, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayout::invalidate(); }}
|
||||
QGraphicsLayoutItem* itemAt(int x1) const { quint64 id = LObjects::override_id(unique, 167); void* fun = LObjects::overrideFun(id); QGraphicsLayoutItem* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QGraphicsLayoutItem*)callOverrideFun(fun, 167, args, id).value<void*>(); } return ret; }
|
||||
void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 506); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 506, args, id); }}
|
||||
void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 507); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 507, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayout::widgetEvent(x1); }}
|
||||
void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 516); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 516, args, id); }}
|
||||
void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 517); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 517, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayout::widgetEvent(x1); }}
|
||||
void updateGeometry() { quint64 id = LObjects::override_id(unique, 264); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 264, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayout::updateGeometry(); }}
|
||||
void setGeometry(const QRectF& x1) { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 233, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLayout::setGeometry(x1); }}
|
||||
QSizeF sizeHint(Qt::SizeHint x1, const QSizeF& x2 = QSizeF()) const { quint64 id = LObjects::override_id(unique, 250); void* fun = LObjects::overrideFun(id); QSizeF ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 250, args, id).value<QSizeF>(); } return ret; }
|
||||
|
|
@ -839,9 +839,9 @@ public:
|
|||
void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 232); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 232, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::paint(x1, x2, x3); }}
|
||||
QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 262, 0, id).value<QPainterPath>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::shape(); } return ret; }
|
||||
int type() const { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 234, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::type(); } return ret; }
|
||||
void advance(int x1) { quint64 id = LObjects::override_id(unique, 461); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 461, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::advance(x1); }}
|
||||
bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 462, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::collidesWithItem(x1, x2); } return ret; }
|
||||
bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 463); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 463, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::collidesWithPath(x1, x2); } return ret; }
|
||||
void advance(int x1) { quint64 id = LObjects::override_id(unique, 471); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 471, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::advance(x1); }}
|
||||
bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 472); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 472, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::collidesWithItem(x1, x2); } return ret; }
|
||||
bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 473); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 473, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::collidesWithPath(x1, x2); } return ret; }
|
||||
void contextMenuEvent(QGraphicsSceneContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 235); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 235, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::contextMenuEvent(x1); }}
|
||||
void dragEnterEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 236); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 236, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::dragEnterEvent(x1); }}
|
||||
void dragLeaveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 237); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 237, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::dragLeaveEvent(x1); }}
|
||||
|
|
@ -862,7 +862,7 @@ public:
|
|||
void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 247); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 247, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::mousePressEvent(x1); }}
|
||||
void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 248); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 248, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::mouseReleaseEvent(x1); }}
|
||||
bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 263); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 263, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::sceneEvent(x1); } return ret; }
|
||||
bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 464); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 464, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::sceneEventFilter(x1, x2); } return ret; }
|
||||
bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 474); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 474, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLineItem::sceneEventFilter(x1, x2); } return ret; }
|
||||
void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 252); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 252, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLineItem::wheelEvent(x1); }}
|
||||
};
|
||||
|
||||
|
|
@ -878,10 +878,10 @@ public:
|
|||
int count() const { quint64 id = LObjects::override_id(unique, 164); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 164, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLinearLayout::count(); } return ret; }
|
||||
void invalidate() { quint64 id = LObjects::override_id(unique, 166); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 166, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::invalidate(); }}
|
||||
QGraphicsLayoutItem* itemAt(int x1) const { quint64 id = LObjects::override_id(unique, 167); void* fun = LObjects::overrideFun(id); QGraphicsLayoutItem* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QGraphicsLayoutItem*)callOverrideFun(fun, 167, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLinearLayout::itemAt(x1); } return ret; }
|
||||
void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 506); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 506, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::removeAt(x1); }}
|
||||
void removeAt(int x1) { quint64 id = LObjects::override_id(unique, 516); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 516, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::removeAt(x1); }}
|
||||
void setGeometry(const QRectF& x1) { quint64 id = LObjects::override_id(unique, 233); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 233, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::setGeometry(x1); }}
|
||||
QSizeF sizeHint(Qt::SizeHint x1, const QSizeF& x2 = QSizeF()) const { quint64 id = LObjects::override_id(unique, 250); void* fun = LObjects::overrideFun(id); QSizeF ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 250, args, id).value<QSizeF>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsLinearLayout::sizeHint(x1, x2); } return ret; }
|
||||
void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 507); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 507, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::widgetEvent(x1); }}
|
||||
void widgetEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 517); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 517, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::widgetEvent(x1); }}
|
||||
void updateGeometry() { quint64 id = LObjects::override_id(unique, 264); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 264, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsLinearLayout::updateGeometry(); }}
|
||||
};
|
||||
|
||||
|
|
@ -919,9 +919,9 @@ public:
|
|||
void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3) { quint64 id = LObjects::override_id(unique, 232); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 232, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::paint(x1, x2, x3); }}
|
||||
QPainterPath shape() const { quint64 id = LObjects::override_id(unique, 262); void* fun = LObjects::overrideFun(id); QPainterPath ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 262, 0, id).value<QPainterPath>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::shape(); } return ret; }
|
||||
int type() const { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 234, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::type(); } return ret; }
|
||||
void advance(int x1) { quint64 id = LObjects::override_id(unique, 461); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 461, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::advance(x1); }}
|
||||
bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 462, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::collidesWithItem(x1, x2); } return ret; }
|
||||
bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 463); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 463, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::collidesWithPath(x1, x2); } return ret; }
|
||||
void advance(int x1) { quint64 id = LObjects::override_id(unique, 471); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 471, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::advance(x1); }}
|
||||
bool collidesWithItem(const QGraphicsItem* x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 472); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 472, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::collidesWithItem(x1, x2); } return ret; }
|
||||
bool collidesWithPath(const QPainterPath& x1, Qt::ItemSelectionMode x2 = Qt::IntersectsItemShape) const { quint64 id = LObjects::override_id(unique, 473); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 473, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::collidesWithPath(x1, x2); } return ret; }
|
||||
void contextMenuEvent(QGraphicsSceneContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 235); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 235, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::contextMenuEvent(x1); }}
|
||||
void dragEnterEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 236); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 236, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::dragEnterEvent(x1); }}
|
||||
void dragLeaveEvent(QGraphicsSceneDragDropEvent* x1) { quint64 id = LObjects::override_id(unique, 237); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 237, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::dragLeaveEvent(x1); }}
|
||||
|
|
@ -942,7 +942,7 @@ public:
|
|||
void mousePressEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 247); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 247, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::mousePressEvent(x1); }}
|
||||
void mouseReleaseEvent(QGraphicsSceneMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 248); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 248, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::mouseReleaseEvent(x1); }}
|
||||
bool sceneEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 263); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 263, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::sceneEvent(x1); } return ret; }
|
||||
bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 464); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 464, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::sceneEventFilter(x1, x2); } return ret; }
|
||||
bool sceneEventFilter(QGraphicsItem* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 474); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 474, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsPixmapItem::sceneEventFilter(x1, x2); } return ret; }
|
||||
void wheelEvent(QGraphicsSceneWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 252); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 252, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsPixmapItem::wheelEvent(x1); }}
|
||||
};
|
||||
|
||||
|
|
@ -1172,8 +1172,8 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QWidget* createWidget(QWidget* x1) const { quint64 id = LObjects::override_id(unique, 451); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWidget*)callOverrideFun(fun, 451, args, id).value<void*>(); } return ret; }
|
||||
QByteArray valuePropertyName() const { quint64 id = LObjects::override_id(unique, 508); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 508, 0, id).value<QByteArray>(); } return ret; }
|
||||
QWidget* createWidget(QWidget* x1) const { quint64 id = LObjects::override_id(unique, 461); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWidget*)callOverrideFun(fun, 461, args, id).value<void*>(); } return ret; }
|
||||
QByteArray valuePropertyName() const { quint64 id = LObjects::override_id(unique, 518); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 518, 0, id).value<QByteArray>(); } return ret; }
|
||||
};
|
||||
|
||||
class LItemEditorFactory : public QItemEditorFactory {
|
||||
|
|
@ -1184,8 +1184,8 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QWidget* createEditor(int x1, QWidget* x2) const { quint64 id = LObjects::override_id(unique, 509); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QWidget*)callOverrideFun(fun, 509, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QItemEditorFactory::createEditor(x1, x2); } return ret; }
|
||||
QByteArray valuePropertyName(int x1) const { quint64 id = LObjects::override_id(unique, 510); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 510, args, id).value<QByteArray>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QItemEditorFactory::valuePropertyName(x1); } return ret; }
|
||||
QWidget* createEditor(int x1, QWidget* x2) const { quint64 id = LObjects::override_id(unique, 519); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = (QWidget*)callOverrideFun(fun, 519, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QItemEditorFactory::createEditor(x1, x2); } return ret; }
|
||||
QByteArray valuePropertyName(int x1) const { quint64 id = LObjects::override_id(unique, 520); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 520, args, id).value<QByteArray>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QItemEditorFactory::valuePropertyName(x1); } return ret; }
|
||||
};
|
||||
|
||||
class LItemSelectionRange : public QItemSelectionRange {
|
||||
|
|
@ -1244,8 +1244,8 @@ public:
|
|||
QSize minimumSize() const { quint64 id = LObjects::override_id(unique, 170); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 170, 0, id).value<QSize>(); } return ret; }
|
||||
void setGeometry(const QRect& x1) { quint64 id = LObjects::override_id(unique, 171); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 171, args, id); }}
|
||||
QSize sizeHint() const { quint64 id = LObjects::override_id(unique, 25); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 25, 0, id).value<QSize>(); } return ret; }
|
||||
QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 511); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 511, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::spacerItem(); } return ret; }
|
||||
QWidget* widget() { quint64 id = LObjects::override_id(unique, 512); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 512, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::widget(); } return ret; }
|
||||
QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 521); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 521, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::spacerItem(); } return ret; }
|
||||
QWidget* widget() { quint64 id = LObjects::override_id(unique, 522); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 522, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QLayoutItem::widget(); } return ret; }
|
||||
};
|
||||
|
||||
class LLibraryInfo : public QLibraryInfo {
|
||||
|
|
@ -1278,9 +1278,9 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QListWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 513); void* fun = LObjects::overrideFun(id); QListWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QListWidgetItem*)callOverrideFun(fun, 513, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QListWidgetItem::clone(); } return ret; }
|
||||
QVariant data(int x1) const { quint64 id = LObjects::override_id(unique, 514); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 514, args, id).value<QVariant>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QListWidgetItem::data(x1); } return ret; }
|
||||
void setData(int x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 515); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 515, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QListWidgetItem::setData(x1, x2); }}
|
||||
QListWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 523); void* fun = LObjects::overrideFun(id); QListWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QListWidgetItem*)callOverrideFun(fun, 523, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QListWidgetItem::clone(); } return ret; }
|
||||
QVariant data(int x1) const { quint64 id = LObjects::override_id(unique, 524); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 524, args, id).value<QVariant>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QListWidgetItem::data(x1); } return ret; }
|
||||
void setData(int x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 525); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 525, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QListWidgetItem::setData(x1, x2); }}
|
||||
};
|
||||
|
||||
class LLocale : public QLocale {
|
||||
|
|
@ -1420,8 +1420,8 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
void ensureActiveTarget() { quint64 id = LObjects::override_id(unique, 517); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 517, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QOpenGLPaintDevice::ensureActiveTarget(); }}
|
||||
int metric(QPaintDevice::PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 518); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 518, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QOpenGLPaintDevice::metric(x1); } return ret; }
|
||||
void ensureActiveTarget() { quint64 id = LObjects::override_id(unique, 527); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 527, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QOpenGLPaintDevice::ensureActiveTarget(); }}
|
||||
int metric(QPaintDevice::PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 528); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 528, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QOpenGLPaintDevice::metric(x1); } return ret; }
|
||||
};
|
||||
|
||||
class LOpenGLTexture : public QOpenGLTexture {
|
||||
|
|
@ -1550,7 +1550,7 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
void setData(const char* x1, uint x2) { quint64 id = LObjects::override_id(unique, 519); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 519, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPicture::setData(x1, x2); }}
|
||||
void setData(const char* x1, uint x2) { quint64 id = LObjects::override_id(unique, 529); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 529, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPicture::setData(x1, x2); }}
|
||||
int metric(PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 45); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 45, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QPicture::metric(x1); } return ret; }
|
||||
};
|
||||
|
||||
|
|
@ -1586,8 +1586,8 @@ public:
|
|||
uint unique;
|
||||
|
||||
bool newPage() { quint64 id = LObjects::override_id(unique, 314); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 314, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QPrinter::newPage(); } return ret; }
|
||||
void setPageSize(PageSize x1) { quint64 id = LObjects::override_id(unique, 520); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 520, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPrinter::setPageSize(x1); }}
|
||||
void setPageSizeMM(const QSizeF& x1) { quint64 id = LObjects::override_id(unique, 521); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 521, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPrinter::setPageSizeMM(x1); }}
|
||||
void setPageSize(PageSize x1) { quint64 id = LObjects::override_id(unique, 530); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 530, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPrinter::setPageSize(x1); }}
|
||||
void setPageSizeMM(const QSizeF& x1) { quint64 id = LObjects::override_id(unique, 531); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 531, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QPrinter::setPageSizeMM(x1); }}
|
||||
};
|
||||
|
||||
class LPrinterInfo : public QPrinterInfo {
|
||||
|
|
@ -1697,7 +1697,7 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
void run() { quint64 id = LObjects::override_id(unique, 535); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 535, 0, id); }}
|
||||
void run() { quint64 id = LObjects::override_id(unique, 545); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 545, 0, id); }}
|
||||
};
|
||||
|
||||
class LScrollEvent : public QScrollEvent {
|
||||
|
|
@ -1770,14 +1770,14 @@ public:
|
|||
QSize minimumSize() const { quint64 id = LObjects::override_id(unique, 170); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 170, 0, id).value<QSize>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::minimumSize(); } return ret; }
|
||||
void setGeometry(const QRect& x1) { quint64 id = LObjects::override_id(unique, 171); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 171, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSpacerItem::setGeometry(x1); }}
|
||||
QSize sizeHint() const { quint64 id = LObjects::override_id(unique, 25); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 25, 0, id).value<QSize>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::sizeHint(); } return ret; }
|
||||
QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 511); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 511, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::spacerItem(); } return ret; }
|
||||
QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 521); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 521, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::spacerItem(); } return ret; }
|
||||
QSizePolicy::ControlTypes controlTypes() const { quint64 id = LObjects::override_id(unique, 174); void* fun = LObjects::overrideFun(id); QSizePolicy::ControlTypes ret = (QSizePolicy::ControlTypes)0; if(fun && (LObjects::calling != id)) { ret = (QSizePolicy::ControlTypes)callOverrideFun(fun, 174, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::controlTypes(); } return ret; }
|
||||
bool hasHeightForWidth() const { quint64 id = LObjects::override_id(unique, 21); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 21, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::hasHeightForWidth(); } return ret; }
|
||||
int heightForWidth(int x1) const { quint64 id = LObjects::override_id(unique, 22); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 22, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::heightForWidth(x1); } return ret; }
|
||||
void invalidate() { quint64 id = LObjects::override_id(unique, 166); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 166, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSpacerItem::invalidate(); }}
|
||||
QLayout* layout() { quint64 id = LObjects::override_id(unique, 177); void* fun = LObjects::overrideFun(id); QLayout* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QLayout*)callOverrideFun(fun, 177, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::layout(); } return ret; }
|
||||
int minimumHeightForWidth(int x1) const { quint64 id = LObjects::override_id(unique, 169); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 169, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::minimumHeightForWidth(x1); } return ret; }
|
||||
QWidget* widget() { quint64 id = LObjects::override_id(unique, 512); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 512, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::widget(); } return ret; }
|
||||
QWidget* widget() { quint64 id = LObjects::override_id(unique, 522); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 522, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSpacerItem::widget(); } return ret; }
|
||||
};
|
||||
|
||||
class LStandardItem : public QStandardItem {
|
||||
|
|
@ -1791,9 +1791,9 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QStandardItem* clone() const { quint64 id = LObjects::override_id(unique, 513); void* fun = LObjects::overrideFun(id); QStandardItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QStandardItem*)callOverrideFun(fun, 513, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QStandardItem::clone(); } return ret; }
|
||||
QVariant data(int x1 = Qt::UserRole+1) const { quint64 id = LObjects::override_id(unique, 514); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 514, args, id).value<QVariant>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QStandardItem::data(x1); } return ret; }
|
||||
void setData(const QVariant& x1, int x2 = Qt::UserRole+1) { quint64 id = LObjects::override_id(unique, 559); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 559, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QStandardItem::setData(x1, x2); }}
|
||||
QStandardItem* clone() const { quint64 id = LObjects::override_id(unique, 523); void* fun = LObjects::overrideFun(id); QStandardItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QStandardItem*)callOverrideFun(fun, 523, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QStandardItem::clone(); } return ret; }
|
||||
QVariant data(int x1 = Qt::UserRole+1) const { quint64 id = LObjects::override_id(unique, 524); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 524, args, id).value<QVariant>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QStandardItem::data(x1); } return ret; }
|
||||
void setData(const QVariant& x1, int x2 = Qt::UserRole+1) { quint64 id = LObjects::override_id(unique, 569); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 569, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QStandardItem::setData(x1, x2); }}
|
||||
int type() const { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 234, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QStandardItem::type(); } return ret; }
|
||||
};
|
||||
|
||||
|
|
@ -1869,9 +1869,9 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QTableWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 513); void* fun = LObjects::overrideFun(id); QTableWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QTableWidgetItem*)callOverrideFun(fun, 513, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTableWidgetItem::clone(); } return ret; }
|
||||
QVariant data(int x1) const { quint64 id = LObjects::override_id(unique, 514); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 514, args, id).value<QVariant>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTableWidgetItem::data(x1); } return ret; }
|
||||
void setData(int x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 515); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 515, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTableWidgetItem::setData(x1, x2); }}
|
||||
QTableWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 523); void* fun = LObjects::overrideFun(id); QTableWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QTableWidgetItem*)callOverrideFun(fun, 523, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTableWidgetItem::clone(); } return ret; }
|
||||
QVariant data(int x1) const { quint64 id = LObjects::override_id(unique, 524); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 524, args, id).value<QVariant>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTableWidgetItem::data(x1); } return ret; }
|
||||
void setData(int x1, const QVariant& x2) { quint64 id = LObjects::override_id(unique, 525); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 525, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTableWidgetItem::setData(x1, x2); }}
|
||||
};
|
||||
|
||||
class LTableWidgetSelectionRange : public QTableWidgetSelectionRange {
|
||||
|
|
@ -1948,11 +1948,11 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QList<QByteArray> aliases() const { quint64 id = LObjects::override_id(unique, 560); void* fun = LObjects::overrideFun(id); QList<QByteArray> ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 560, 0, id).value<QList<QByteArray> >(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTextCodec::aliases(); } return ret; }
|
||||
int mibEnum() const { quint64 id = LObjects::override_id(unique, 561); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 561, 0, id).toInt(); } return ret; }
|
||||
QByteArray name() const { quint64 id = LObjects::override_id(unique, 562); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 562, 0, id).value<QByteArray>(); } return ret; }
|
||||
QByteArray convertFromUnicode(const QChar* x1, int x2, ConverterState* x3) const { quint64 id = LObjects::override_id(unique, 563); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 563, args, id).value<QByteArray>(); } return ret; }
|
||||
QString convertToUnicode(const char* x1, int x2, ConverterState* x3) const { quint64 id = LObjects::override_id(unique, 564); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 564, args, id).value<QString>(); } return ret; }
|
||||
QList<QByteArray> aliases() const { quint64 id = LObjects::override_id(unique, 570); void* fun = LObjects::overrideFun(id); QList<QByteArray> ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 570, 0, id).value<QList<QByteArray> >(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTextCodec::aliases(); } return ret; }
|
||||
int mibEnum() const { quint64 id = LObjects::override_id(unique, 571); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 571, 0, id).toInt(); } return ret; }
|
||||
QByteArray name() const { quint64 id = LObjects::override_id(unique, 572); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 572, 0, id).value<QByteArray>(); } return ret; }
|
||||
QByteArray convertFromUnicode(const QChar* x1, int x2, ConverterState* x3) const { quint64 id = LObjects::override_id(unique, 573); void* fun = LObjects::overrideFun(id); QByteArray ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 573, args, id).value<QByteArray>(); } return ret; }
|
||||
QString convertToUnicode(const char* x1, int x2, ConverterState* x3) const { quint64 id = LObjects::override_id(unique, 574); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 574, args, id).value<QString>(); } return ret; }
|
||||
};
|
||||
|
||||
class LTextCursor : public QTextCursor {
|
||||
|
|
@ -2213,9 +2213,9 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QTreeWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 513); void* fun = LObjects::overrideFun(id); QTreeWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QTreeWidgetItem*)callOverrideFun(fun, 513, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTreeWidgetItem::clone(); } return ret; }
|
||||
QVariant data(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 565); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 565, args, id).value<QVariant>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTreeWidgetItem::data(x1, x2); } return ret; }
|
||||
void setData(int x1, int x2, const QVariant& x3) { quint64 id = LObjects::override_id(unique, 566); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 566, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTreeWidgetItem::setData(x1, x2, x3); }}
|
||||
QTreeWidgetItem* clone() const { quint64 id = LObjects::override_id(unique, 523); void* fun = LObjects::overrideFun(id); QTreeWidgetItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QTreeWidgetItem*)callOverrideFun(fun, 523, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTreeWidgetItem::clone(); } return ret; }
|
||||
QVariant data(int x1, int x2) const { quint64 id = LObjects::override_id(unique, 575); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 575, args, id).value<QVariant>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QTreeWidgetItem::data(x1, x2); } return ret; }
|
||||
void setData(int x1, int x2, const QVariant& x3) { quint64 id = LObjects::override_id(unique, 576); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 576, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QTreeWidgetItem::setData(x1, x2, x3); }}
|
||||
};
|
||||
|
||||
class LUndoCommand : public QUndoCommand {
|
||||
|
|
@ -2227,10 +2227,10 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
int id() const { quint64 id = LObjects::override_id(unique, 567); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 567, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QUndoCommand::id(); } return ret; }
|
||||
bool mergeWith(const QUndoCommand* x1) { quint64 id = LObjects::override_id(unique, 568); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 568, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QUndoCommand::mergeWith(x1); } return ret; }
|
||||
void redo() { quint64 id = LObjects::override_id(unique, 569); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 569, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QUndoCommand::redo(); }}
|
||||
void undo() { quint64 id = LObjects::override_id(unique, 570); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 570, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QUndoCommand::undo(); }}
|
||||
int id() const { quint64 id = LObjects::override_id(unique, 577); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 577, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QUndoCommand::id(); } return ret; }
|
||||
bool mergeWith(const QUndoCommand* x1) { quint64 id = LObjects::override_id(unique, 578); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 578, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QUndoCommand::mergeWith(x1); } return ret; }
|
||||
void redo() { quint64 id = LObjects::override_id(unique, 579); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 579, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QUndoCommand::redo(); }}
|
||||
void undo() { quint64 id = LObjects::override_id(unique, 580); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 580, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QUndoCommand::undo(); }}
|
||||
};
|
||||
|
||||
class LUrl : public QUrl {
|
||||
|
|
@ -2351,7 +2351,7 @@ public:
|
|||
};
|
||||
|
||||
class LWhatsThis : public QWhatsThis {
|
||||
friend class N272;
|
||||
friend class N276;
|
||||
public:
|
||||
|
||||
static NumList overrideIds;
|
||||
|
|
@ -2359,7 +2359,7 @@ public:
|
|||
};
|
||||
|
||||
class LWhatsThisClickedEvent : public QWhatsThisClickedEvent {
|
||||
friend class N273;
|
||||
friend class N277;
|
||||
public:
|
||||
LWhatsThisClickedEvent(uint u, const QString& x1) : QWhatsThisClickedEvent(x1), unique(u) {}
|
||||
|
||||
|
|
@ -2368,7 +2368,7 @@ public:
|
|||
};
|
||||
|
||||
class LWheelEvent : public QWheelEvent {
|
||||
friend class N274;
|
||||
friend class N278;
|
||||
public:
|
||||
LWheelEvent(uint u, const QPointF& x1, const QPointF& x2, QPoint x3, QPoint x4, int x5, Qt::Orientation x6, Qt::MouseButtons x7, Qt::KeyboardModifiers x8) : QWheelEvent(x1, x2, x3, x4, x5, x6, x7, x8), unique(u) {}
|
||||
LWheelEvent(uint u, const QPointF& x1, const QPointF& x2, QPoint x3, QPoint x4, int x5, Qt::Orientation x6, Qt::MouseButtons x7, Qt::KeyboardModifiers x8, Qt::ScrollPhase x9) : QWheelEvent(x1, x2, x3, x4, x5, x6, x7, x8, x9), unique(u) {}
|
||||
|
|
@ -2379,7 +2379,7 @@ public:
|
|||
};
|
||||
|
||||
class LWidgetItem : public QWidgetItem {
|
||||
friend class N275;
|
||||
friend class N279;
|
||||
public:
|
||||
LWidgetItem(uint u, QWidget* x1) : QWidgetItem(x1), unique(u) {}
|
||||
|
||||
|
|
@ -2396,15 +2396,15 @@ public:
|
|||
QSize minimumSize() const { quint64 id = LObjects::override_id(unique, 170); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 170, 0, id).value<QSize>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::minimumSize(); } return ret; }
|
||||
void setGeometry(const QRect& x1) { quint64 id = LObjects::override_id(unique, 171); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 171, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWidgetItem::setGeometry(x1); }}
|
||||
QSize sizeHint() const { quint64 id = LObjects::override_id(unique, 25); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 25, 0, id).value<QSize>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::sizeHint(); } return ret; }
|
||||
QWidget* widget() { quint64 id = LObjects::override_id(unique, 512); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 512, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::widget(); } return ret; }
|
||||
QWidget* widget() { quint64 id = LObjects::override_id(unique, 522); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 522, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::widget(); } return ret; }
|
||||
void invalidate() { quint64 id = LObjects::override_id(unique, 166); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 166, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWidgetItem::invalidate(); }}
|
||||
QLayout* layout() { quint64 id = LObjects::override_id(unique, 177); void* fun = LObjects::overrideFun(id); QLayout* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QLayout*)callOverrideFun(fun, 177, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::layout(); } return ret; }
|
||||
int minimumHeightForWidth(int x1) const { quint64 id = LObjects::override_id(unique, 169); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 169, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::minimumHeightForWidth(x1); } return ret; }
|
||||
QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 511); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 511, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::spacerItem(); } return ret; }
|
||||
QSpacerItem* spacerItem() { quint64 id = LObjects::override_id(unique, 521); void* fun = LObjects::overrideFun(id); QSpacerItem* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSpacerItem*)callOverrideFun(fun, 521, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetItem::spacerItem(); } return ret; }
|
||||
};
|
||||
|
||||
class LWindowStateChangeEvent : public QWindowStateChangeEvent {
|
||||
friend class N276;
|
||||
friend class N280;
|
||||
public:
|
||||
|
||||
static NumList overrideIds;
|
||||
|
|
|
|||
|
|
@ -3494,7 +3494,7 @@ public:
|
|||
Q_INVOKABLE float SdotProduct(const QVector4D& x1, const QVector4D& x2) { return QVector4D::dotProduct(x1, x2); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT N272 : public QObject { // QWhatsThis
|
||||
class EQL_EXPORT N276 : public QObject { // QWhatsThis
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE QAction* ScreateAction(QObject* x1 = 0) { return QWhatsThis::createAction(x1); }
|
||||
|
|
@ -4694,14 +4694,14 @@ public:
|
|||
Q_INVOKABLE QWindow* Mwindow(QTouchEvent* o) const { return o->window(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT N273 : public N49 { // QWhatsThisClickedEvent
|
||||
class EQL_EXPORT N277 : public N49 { // QWhatsThisClickedEvent
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, const QString& x1) { return new LWhatsThisClickedEvent(u, x1); }
|
||||
Q_INVOKABLE QString Mhref(QWhatsThisClickedEvent* o) const { return o->href(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT N274 : public N98 { // QWheelEvent
|
||||
class EQL_EXPORT N278 : public N98 { // QWheelEvent
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, const QPointF& x1, const QPointF& x2, QPoint x3, QPoint x4, int x5, Qt::Orientation x6, Qt::MouseButtons x7, Qt::KeyboardModifiers x8) { return new LWheelEvent(u, x1, x2, x3, x4, x5, x6, x7, x8); }
|
||||
|
|
@ -4722,7 +4722,7 @@ public:
|
|||
Q_INVOKABLE int My(QWheelEvent* o) const { return o->y(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT N275 : public N108 { // QWidgetItem
|
||||
class EQL_EXPORT N279 : public N108 { // QWidgetItem
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LWidgetItem(u, x1); }
|
||||
|
|
@ -4739,7 +4739,7 @@ public:
|
|||
Q_INVOKABLE QWidget* Mwidget(QWidgetItem* o) { return o->widget(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT N276 : public N49 { // QWindowStateChangeEvent
|
||||
class EQL_EXPORT N280 : public N49 { // QWindowStateChangeEvent
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE int MoldState(QWindowStateChangeEvent* o) const { return o->oldState(); }
|
||||
|
|
|
|||
|
|
@ -6622,7 +6622,7 @@ public:
|
|||
|
||||
class LWidget : public QWidget {
|
||||
Q_OBJECT
|
||||
friend class Q271;
|
||||
friend class Q279;
|
||||
public:
|
||||
LWidget(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QWidget(x1, x2), unique(u) {}
|
||||
|
||||
|
|
@ -6671,15 +6671,15 @@ public:
|
|||
|
||||
class LWidgetAction : public QWidgetAction {
|
||||
Q_OBJECT
|
||||
friend class Q272;
|
||||
friend class Q280;
|
||||
public:
|
||||
LWidgetAction(uint u, QObject* x1) : QWidgetAction(x1), unique(u) {}
|
||||
|
||||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QWidget* createWidget(QWidget* x1) { quint64 id = LObjects::override_id(unique, 451); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWidget*)callOverrideFun(fun, 451, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetAction::createWidget(x1); } return ret; }
|
||||
void deleteWidget(QWidget* x1) { quint64 id = LObjects::override_id(unique, 452); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 452, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWidgetAction::deleteWidget(x1); }}
|
||||
QWidget* createWidget(QWidget* x1) { quint64 id = LObjects::override_id(unique, 461); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWidget*)callOverrideFun(fun, 461, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetAction::createWidget(x1); } return ret; }
|
||||
void deleteWidget(QWidget* x1) { quint64 id = LObjects::override_id(unique, 462); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 462, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWidgetAction::deleteWidget(x1); }}
|
||||
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWidgetAction::eventFilter(x1, x2); } return ret; }
|
||||
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWidgetAction::childEvent(x1); }}
|
||||
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWidgetAction::customEvent(x1); }}
|
||||
|
|
@ -6688,7 +6688,7 @@ public:
|
|||
|
||||
class LWindow : public QWindow {
|
||||
Q_OBJECT
|
||||
friend class Q273;
|
||||
friend class Q281;
|
||||
public:
|
||||
LWindow(uint u, QScreen* x1 = 0) : QWindow(x1), unique(u) {}
|
||||
LWindow(uint u, QWindow* x1) : QWindow(x1), unique(u) {}
|
||||
|
|
@ -6724,17 +6724,17 @@ public:
|
|||
|
||||
class LWizard : public QWizard {
|
||||
Q_OBJECT
|
||||
friend class Q274;
|
||||
friend class Q282;
|
||||
public:
|
||||
LWizard(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) : QWizard(x1, x2), unique(u) {}
|
||||
|
||||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
int nextId() const { quint64 id = LObjects::override_id(unique, 453); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 453, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizard::nextId(); } return ret; }
|
||||
bool validateCurrentPage() { quint64 id = LObjects::override_id(unique, 454); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 454, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizard::validateCurrentPage(); } return ret; }
|
||||
void cleanupPage(int x1) { quint64 id = LObjects::override_id(unique, 455); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 455, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizard::cleanupPage(x1); }}
|
||||
void initializePage(int x1) { quint64 id = LObjects::override_id(unique, 456); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 456, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizard::initializePage(x1); }}
|
||||
int nextId() const { quint64 id = LObjects::override_id(unique, 463); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 463, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizard::nextId(); } return ret; }
|
||||
bool validateCurrentPage() { quint64 id = LObjects::override_id(unique, 464); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 464, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizard::validateCurrentPage(); } return ret; }
|
||||
void cleanupPage(int x1) { quint64 id = LObjects::override_id(unique, 465); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 465, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizard::cleanupPage(x1); }}
|
||||
void initializePage(int x1) { quint64 id = LObjects::override_id(unique, 466); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 466, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizard::initializePage(x1); }}
|
||||
void setVisible(bool x1) { quint64 id = LObjects::override_id(unique, 109); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 109, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizard::setVisible(x1); }}
|
||||
QSize sizeHint() const { quint64 id = LObjects::override_id(unique, 25); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 25, 0, id).value<QSize>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizard::sizeHint(); } return ret; }
|
||||
void done(int x1) { quint64 id = LObjects::override_id(unique, 185); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 185, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizard::done(x1); }}
|
||||
|
|
@ -6779,18 +6779,18 @@ public:
|
|||
|
||||
class LWizardPage : public QWizardPage {
|
||||
Q_OBJECT
|
||||
friend class Q275;
|
||||
friend class Q283;
|
||||
public:
|
||||
LWizardPage(uint u, QWidget* x1 = 0) : QWizardPage(x1), unique(u) {}
|
||||
|
||||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
void cleanupPage() { quint64 id = LObjects::override_id(unique, 457); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 457, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizardPage::cleanupPage(); }}
|
||||
void initializePage() { quint64 id = LObjects::override_id(unique, 458); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 458, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizardPage::initializePage(); }}
|
||||
bool isComplete() const { quint64 id = LObjects::override_id(unique, 459); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 459, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizardPage::isComplete(); } return ret; }
|
||||
int nextId() const { quint64 id = LObjects::override_id(unique, 453); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 453, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizardPage::nextId(); } return ret; }
|
||||
bool validatePage() { quint64 id = LObjects::override_id(unique, 460); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 460, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizardPage::validatePage(); } return ret; }
|
||||
void cleanupPage() { quint64 id = LObjects::override_id(unique, 467); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 467, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizardPage::cleanupPage(); }}
|
||||
void initializePage() { quint64 id = LObjects::override_id(unique, 468); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 468, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWizardPage::initializePage(); }}
|
||||
bool isComplete() const { quint64 id = LObjects::override_id(unique, 469); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 469, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizardPage::isComplete(); } return ret; }
|
||||
int nextId() const { quint64 id = LObjects::override_id(unique, 463); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 463, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizardPage::nextId(); } return ret; }
|
||||
bool validatePage() { quint64 id = LObjects::override_id(unique, 470); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 470, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizardPage::validatePage(); } return ret; }
|
||||
bool hasHeightForWidth() const { quint64 id = LObjects::override_id(unique, 21); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 21, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizardPage::hasHeightForWidth(); } return ret; }
|
||||
int heightForWidth(int x1) const { quint64 id = LObjects::override_id(unique, 22); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 22, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizardPage::heightForWidth(x1); } return ret; }
|
||||
QVariant inputMethodQuery(Qt::InputMethodQuery x1) const { quint64 id = LObjects::override_id(unique, 23); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 23, args, id).value<QVariant>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWizardPage::inputMethodQuery(x1); } return ret; }
|
||||
|
|
|
|||
|
|
@ -2189,7 +2189,7 @@ public:
|
|||
Q_INVOKABLE int Mduration(QVariantAnimation* o) const { return o->duration(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q271 : public Q142 { // QWidget
|
||||
class EQL_EXPORT Q279 : public Q142 { // QWidget
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LWidget(u, x1, x2); }
|
||||
|
|
@ -2409,7 +2409,7 @@ public:
|
|||
Q_INVOKABLE void SsetTabOrder(QWidget* x1, QWidget* x2) { QWidget::setTabOrder(x1, x2); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q272 : public Q19 { // QWidgetAction
|
||||
class EQL_EXPORT Q280 : public Q19 { // QWidgetAction
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QObject* x1) { return new LWidgetAction(u, x1); }
|
||||
|
|
@ -2420,7 +2420,7 @@ public:
|
|||
Q_INVOKABLE QList<QWidget*> McreatedWidgets(QWidgetAction* o) const { return ((LWidgetAction*)o)->createdWidgets(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q273 : public Q142 { // QWindow
|
||||
class EQL_EXPORT Q281 : public Q142 { // QWindow
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QScreen* x1 = 0) { return new LWindow(u, x1); }
|
||||
|
|
@ -2506,7 +2506,7 @@ public:
|
|||
Q_INVOKABLE QWindow* SfromWinId(WId x1) { return QWindow::fromWinId(x1); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q275 : public Q271 { // QWizardPage
|
||||
class EQL_EXPORT Q283 : public Q279 { // QWizardPage
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LWizardPage(u, x1); }
|
||||
|
|
@ -2533,7 +2533,7 @@ public:
|
|||
Q_INVOKABLE QWizard* Mwizard(QWizardPage* o) const { return ((LWizardPage*)o)->wizard(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q2 : public Q271 { // QAbstractButton
|
||||
class EQL_EXPORT Q2 : public Q279 { // QAbstractButton
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LAbstractButton(u, x1); }
|
||||
|
|
@ -2560,7 +2560,7 @@ public:
|
|||
Q_INVOKABLE QString Mtext(QAbstractButton* o) const { return o->text(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q11 : public Q271 { // QAbstractSlider
|
||||
class EQL_EXPORT Q11 : public Q279 { // QAbstractSlider
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LAbstractSlider(u, x1); }
|
||||
|
|
@ -2589,7 +2589,7 @@ public:
|
|||
Q_INVOKABLE void MsetRepeatAction(QAbstractSlider* o, QAbstractSlider::SliderAction x1, int x2 = 500, int x3 = 50) { ((LAbstractSlider*)o)->setRepeatAction(x1, x2, x3); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q13 : public Q271 { // QAbstractSpinBox
|
||||
class EQL_EXPORT Q13 : public Q279 { // QAbstractSpinBox
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LAbstractSpinBox(u, x1); }
|
||||
|
|
@ -2738,7 +2738,7 @@ public:
|
|||
Q_INVOKABLE qlonglong Msize(QBuffer* o) const { return o->size(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q28 : public Q271 { // QCalendarWidget
|
||||
class EQL_EXPORT Q28 : public Q279 { // QCalendarWidget
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LCalendarWidget(u, x1); }
|
||||
|
|
@ -2789,7 +2789,7 @@ public:
|
|||
Q_INVOKABLE QSize MsizeHint(QCheckBox* o) const { return o->sizeHint(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q39 : public Q271 { // QComboBox
|
||||
class EQL_EXPORT Q39 : public Q279 { // QComboBox
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LComboBox(u, x1); }
|
||||
|
|
@ -2934,7 +2934,7 @@ public:
|
|||
Q_INVOKABLE void MstepBy(QDateTimeEdit* o, int x1) { o->stepBy(x1); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q47 : public Q271 { // QDesktopWidget
|
||||
class EQL_EXPORT Q47 : public Q279 { // QDesktopWidget
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE const QRect MavailableGeometry(QDesktopWidget* o, int x1 = -1) const { return o->availableGeometry(x1); }
|
||||
|
|
@ -2965,7 +2965,7 @@ public:
|
|||
Q_INVOKABLE QSize MsizeHint(QDial* o) const { return o->sizeHint(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q49 : public Q271 { // QDialog
|
||||
class EQL_EXPORT Q49 : public Q279 { // QDialog
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LDialog(u, x1, x2); }
|
||||
|
|
@ -2979,7 +2979,7 @@ public:
|
|||
Q_INVOKABLE QSize MsizeHint(QDialog* o) const { return o->sizeHint(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q50 : public Q271 { // QDialogButtonBox
|
||||
class EQL_EXPORT Q50 : public Q279 { // QDialogButtonBox
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LDialogButtonBox(u, x1); }
|
||||
|
|
@ -3003,7 +3003,7 @@ public:
|
|||
Q_INVOKABLE int MstandardButtons(QDialogButtonBox* o) const { return o->standardButtons(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q52 : public Q271 { // QDockWidget
|
||||
class EQL_EXPORT Q52 : public Q279 { // QDockWidget
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, const QString& x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) { return new LDockWidget(u, x1, x2, x3); }
|
||||
|
|
@ -3152,7 +3152,7 @@ public:
|
|||
Q_INVOKABLE QUrl SgetSaveFileUrl(QWidget* x1 = 0, const QString& x2 = QString(), const QUrl& x3 = QUrl(), const QString& x4 = QString(), QString* x5 = 0, QFileDialog::Options x6 = 0, const QStringList& x7 = QStringList()) { return QFileDialog::getSaveFileUrl(x1, x2, x3, x4, x5, x6, x7); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q66 : public Q271 { // QFocusFrame
|
||||
class EQL_EXPORT Q66 : public Q279 { // QFocusFrame
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LFocusFrame(u, x1); }
|
||||
|
|
@ -3241,7 +3241,7 @@ public:
|
|||
Q_INVOKABLE QLayoutItem* MtakeAt(QFormLayout* o, int x1) { return o->takeAt(x1); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q70 : public Q271 { // QFrame
|
||||
class EQL_EXPORT Q70 : public Q279 { // QFrame
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LFrame(u, x1, x2); }
|
||||
|
|
@ -3375,7 +3375,7 @@ public:
|
|||
Q_INVOKABLE QLayoutItem* MtakeAt(QGridLayout* o, int x1) { return o->takeAt(x1); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q91 : public Q271 { // QGroupBox
|
||||
class EQL_EXPORT Q91 : public Q279 { // QGroupBox
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LGroupBox(u, x1); }
|
||||
|
|
@ -3523,7 +3523,7 @@ public:
|
|||
Q_INVOKABLE QSize MsizeHint(QLabel* o) const { return o->sizeHint(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q118 : public Q271 { // QLineEdit
|
||||
class EQL_EXPORT Q118 : public Q279 { // QLineEdit
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LLineEdit(u, x1); }
|
||||
|
|
@ -3588,7 +3588,7 @@ public:
|
|||
Q_INVOKABLE QSize MsizeHint(QLineEdit* o) const { return o->sizeHint(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q123 : public Q271 { // QMainWindow
|
||||
class EQL_EXPORT Q123 : public Q279 { // QMainWindow
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LMainWindow(u, x1, x2); }
|
||||
|
|
@ -3641,7 +3641,7 @@ public:
|
|||
Q_INVOKABLE bool MunifiedTitleAndToolBarOnMac(QMainWindow* o) const { return o->unifiedTitleAndToolBarOnMac(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q125 : public Q271 { // QMdiSubWindow
|
||||
class EQL_EXPORT Q125 : public Q279 { // QMdiSubWindow
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LMdiSubWindow(u, x1, x2); }
|
||||
|
|
@ -3661,7 +3661,7 @@ public:
|
|||
Q_INVOKABLE QSize MsizeHint(QMdiSubWindow* o) const { return o->sizeHint(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q132 : public Q271 { // QMenu
|
||||
class EQL_EXPORT Q132 : public Q279 { // QMenu
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LMenu(u, x1); }
|
||||
|
|
@ -3708,7 +3708,7 @@ public:
|
|||
Q_INVOKABLE QAction* Sexec(const QList<QAction*>& x1, const QPoint& x2, QAction* x3 = 0, QWidget* x4 = 0) { return QMenu::exec(x1, x2, x3, x4); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q133 : public Q271 { // QMenuBar
|
||||
class EQL_EXPORT Q133 : public Q279 { // QMenuBar
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LMenuBar(u, x1); }
|
||||
|
|
@ -3787,7 +3787,7 @@ public:
|
|||
Q_INVOKABLE int Swarning(QWidget* x1, const QString& x2, const QString& x3, QMessageBox::StandardButtons x4 = QMessageBox::Ok, QMessageBox::StandardButton x5 = QMessageBox::NoButton) { return QMessageBox::warning(x1, x2, x3, x4, x5); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q147 : public Q271 { // QOpenGLWidget
|
||||
class EQL_EXPORT Q147 : public Q279 { // QOpenGLWidget
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LOpenGLWidget(u, x1, x2); }
|
||||
|
|
@ -3815,7 +3815,7 @@ public:
|
|||
Q_INVOKABLE void MsetVisible(QPageSetupDialog* o, bool x1) { o->setVisible(x1); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q150 : public Q273 { // QPaintDeviceWindow
|
||||
class EQL_EXPORT Q150 : public Q281 { // QPaintDeviceWindow
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void Mupdate(QPaintDeviceWindow* o, const QRect& x1) { o->update(x1); }
|
||||
|
|
@ -3833,7 +3833,7 @@ public:
|
|||
Q_INVOKABLE void MsetVisible(QPrintPreviewDialog* o, bool x1) { o->setVisible(x1); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q161 : public Q271 { // QPrintPreviewWidget
|
||||
class EQL_EXPORT Q161 : public Q279 { // QPrintPreviewWidget
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QPrinter* x1, QWidget* x2 = 0, Qt::WindowFlags x3 = 0) { return new LPrintPreviewWidget(u, x1, x2, x3); }
|
||||
|
|
@ -3847,7 +3847,7 @@ public:
|
|||
Q_INVOKABLE void MsetVisible(QPrintPreviewWidget* o, bool x1) { o->setVisible(x1); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q163 : public Q271 { // QProgressBar
|
||||
class EQL_EXPORT Q163 : public Q279 { // QProgressBar
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LProgressBar(u, x1); }
|
||||
|
|
@ -3976,7 +3976,7 @@ public:
|
|||
Q_INVOKABLE int Mvalidate(QRegExpValidator* o, QString& x1, int& x2) const { return o->validate(x1, x2); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q189 : public Q271 { // QRubberBand
|
||||
class EQL_EXPORT Q189 : public Q279 { // QRubberBand
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QRubberBand::Shape x1, QWidget* x2 = 0) { return new LRubberBand(u, x1, x2); }
|
||||
|
|
@ -4000,7 +4000,7 @@ public:
|
|||
Q_INVOKABLE QSize MsizeHint(QScrollBar* o) const { return o->sizeHint(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q204 : public Q271 { // QSizeGrip
|
||||
class EQL_EXPORT Q204 : public Q279 { // QSizeGrip
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LSizeGrip(u, x1); }
|
||||
|
|
@ -4044,7 +4044,7 @@ public:
|
|||
Q_INVOKABLE int Mvalue(QSpinBox* o) const { return o->value(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q208 : public Q271 { // QSplashScreen
|
||||
class EQL_EXPORT Q208 : public Q279 { // QSplashScreen
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, const QPixmap& x1 = QPixmap(), Qt::WindowFlags x2 = 0) { return new LSplashScreen(u, x1, x2); }
|
||||
|
|
@ -4088,7 +4088,7 @@ public:
|
|||
Q_INVOKABLE QSize MsizeHint(QSplitter* o) const { return o->sizeHint(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q210 : public Q271 { // QSplitterHandle
|
||||
class EQL_EXPORT Q210 : public Q279 { // QSplitterHandle
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE bool MopaqueResize(QSplitterHandle* o) const { return o->opaqueResize(); }
|
||||
|
|
@ -4114,7 +4114,7 @@ public:
|
|||
Q_INVOKABLE QWidget* Mwidget(QStackedWidget* o, int x1) const { return o->widget(x1); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q221 : public Q271 { // QStatusBar
|
||||
class EQL_EXPORT Q221 : public Q279 { // QStatusBar
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LStatusBar(u, x1); }
|
||||
|
|
@ -4130,7 +4130,7 @@ public:
|
|||
Q_INVOKABLE void Mreformat(QStatusBar* o) { ((LStatusBar*)o)->reformat(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q231 : public Q271 { // QTabBar
|
||||
class EQL_EXPORT Q231 : public Q279 { // QTabBar
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTabBar(u, x1); }
|
||||
|
|
@ -4189,7 +4189,7 @@ public:
|
|||
Q_INVOKABLE QSize MsizeHint(QTabBar* o) const { return o->sizeHint(); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q232 : public Q271 { // QTabWidget
|
||||
class EQL_EXPORT Q232 : public Q279 { // QTabWidget
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LTabWidget(u, x1); }
|
||||
|
|
@ -4308,7 +4308,7 @@ public:
|
|||
Q_INVOKABLE void* C(uint u, const QTime& x1, QWidget* x2 = 0) { return new LTimeEdit(u, x1, x2); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q250 : public Q271 { // QToolBar
|
||||
class EQL_EXPORT Q250 : public Q279 { // QToolBar
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, const QString& x1, QWidget* x2 = 0) { return new LToolBar(u, x1, x2); }
|
||||
|
|
@ -4389,7 +4389,7 @@ public:
|
|||
Q_INVOKABLE void* C(uint u, QWidget* x1) { return new LVBoxLayout(u, x1); }
|
||||
};
|
||||
|
||||
class EQL_EXPORT Q274 : public Q49 { // QWizard
|
||||
class EQL_EXPORT Q282 : public Q49 { // QWizard
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0, Qt::WindowFlags x2 = 0) { return new LWizard(u, x1, x2); }
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ public:
|
|||
Q_INVOKABLE bool MisCreatingIndex(QHelpIndexModel* o) const { return o->isCreatingIndex(); }
|
||||
};
|
||||
|
||||
class Q101 : public Q271 { // QHelpSearchQueryWidget
|
||||
class Q101 : public Q279 { // QHelpSearchQueryWidget
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LHelpSearchQueryWidget(u, x1); }
|
||||
|
|
@ -86,7 +86,7 @@ public:
|
|||
Q_INVOKABLE void MsetQuery(QHelpSearchQueryWidget* o, const QList<QHelpSearchQuery>& x1) { o->setQuery(x1); }
|
||||
};
|
||||
|
||||
class Q102 : public Q271 { // QHelpSearchResultWidget
|
||||
class Q102 : public Q279 { // QHelpSearchResultWidget
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE QUrl MlinkAt(QHelpSearchResultWidget* o, const QPoint& x1) { return o->linkAt(x1); }
|
||||
|
|
|
|||
|
|
@ -366,7 +366,7 @@ public:
|
|||
Q_INVOKABLE int Mavailability(QCamera* o) const { return o->availability(); }
|
||||
};
|
||||
|
||||
class Q263 : public Q271 { // QVideoWidget
|
||||
class Q263 : public Q279 { // QVideoWidget
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LVideoWidget(u, x1); }
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ NumList LNetworkConfiguration::overrideIds = NumList();
|
|||
NumList LNetworkCookie::overrideIds = NumList();
|
||||
NumList LNetworkInterface::overrideIds = NumList();
|
||||
NumList LNetworkProxy::overrideIds = NumList();
|
||||
NumList LNetworkProxyFactory::overrideIds = NumList() << 516;
|
||||
NumList LNetworkProxyFactory::overrideIds = NumList() << 526;
|
||||
NumList LNetworkProxyQuery::overrideIds = NumList();
|
||||
NumList LNetworkRequest::overrideIds = NumList();
|
||||
NumList LSslCertificate::overrideIds = NumList();
|
||||
|
|
|
|||
|
|
@ -123,7 +123,7 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QList<QNetworkProxy> queryProxy(const QNetworkProxyQuery& x1 = QNetworkProxyQuery()) { quint64 id = LObjects::override_id(unique, 516); void* fun = LObjects::overrideFun(id); QList<QNetworkProxy> ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 516, args, id).value<QList<QNetworkProxy> >(); } return ret; }
|
||||
QList<QNetworkProxy> queryProxy(const QNetworkProxyQuery& x1 = QNetworkProxyQuery()) { quint64 id = LObjects::override_id(unique, 526); void* fun = LObjects::overrideFun(id); QList<QNetworkProxy> ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 526, args, id).value<QList<QNetworkProxy> >(); } return ret; }
|
||||
};
|
||||
|
||||
class LNetworkProxyQuery : public QNetworkProxyQuery {
|
||||
|
|
|
|||
|
|
@ -31,25 +31,25 @@ NumList LSGTexture::overrideIds = NumList() << 349 << 350 << 351 << 352 << 353 <
|
|||
NumList LSGTextureProvider::overrideIds = NumList() << 356;
|
||||
NumList LJSValue::overrideIds = NumList();
|
||||
NumList LJSValueIterator::overrideIds = NumList();
|
||||
NumList LQmlAbstractUrlInterceptor::overrideIds = NumList() << 522;
|
||||
NumList LQmlAbstractUrlInterceptor::overrideIds = NumList() << 532;
|
||||
NumList LQmlError::overrideIds = NumList();
|
||||
NumList LQmlImageProviderBase::overrideIds = NumList() << 523 << 524;
|
||||
NumList LQmlIncubationController::overrideIds = NumList() << 525;
|
||||
NumList LQmlIncubator::overrideIds = NumList() << 526 << 527;
|
||||
NumList LQmlNetworkAccessManagerFactory::overrideIds = NumList() << 528;
|
||||
NumList LQmlParserStatus::overrideIds = NumList() << 529 << 530;
|
||||
NumList LQmlImageProviderBase::overrideIds = NumList() << 533 << 534;
|
||||
NumList LQmlIncubationController::overrideIds = NumList() << 535;
|
||||
NumList LQmlIncubator::overrideIds = NumList() << 536 << 537;
|
||||
NumList LQmlNetworkAccessManagerFactory::overrideIds = NumList() << 538;
|
||||
NumList LQmlParserStatus::overrideIds = NumList() << 539 << 540;
|
||||
NumList LQmlProperty::overrideIds = NumList();
|
||||
NumList LQmlPropertyValueSource::overrideIds = NumList() << 531;
|
||||
NumList LQmlPropertyValueSource::overrideIds = NumList() << 541;
|
||||
NumList LQmlScriptString::overrideIds = NumList();
|
||||
NumList LQuickImageProvider::overrideIds = NumList() << 532 << 533 << 534;
|
||||
NumList LQuickImageProvider::overrideIds = NumList() << 542 << 543 << 544;
|
||||
NumList LSGBasicGeometryNode::overrideIds = NumList();
|
||||
NumList LSGClipNode::overrideIds = NumList();
|
||||
NumList LSGFlatColorMaterial::overrideIds = NumList();
|
||||
NumList LSGGeometry::overrideIds = NumList();
|
||||
NumList LSGGeometryNode::overrideIds = NumList();
|
||||
NumList LSGMaterial::overrideIds = NumList() << 538 << 539 << 234;
|
||||
NumList LSGMaterial::overrideIds = NumList() << 548 << 549 << 234;
|
||||
NumList LSGMaterialType::overrideIds = NumList();
|
||||
NumList LSGNode::overrideIds = NumList() << 536 << 537;
|
||||
NumList LSGNode::overrideIds = NumList() << 546 << 547;
|
||||
NumList LSGOpacityNode::overrideIds = NumList();
|
||||
NumList LSGOpaqueTextureMaterial::overrideIds = NumList();
|
||||
NumList LSGSimpleRectNode::overrideIds = NumList();
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QUrl intercept(const QUrl& x1, DataType x2) { quint64 id = LObjects::override_id(unique, 522); void* fun = LObjects::overrideFun(id); QUrl ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 522, args, id).value<QUrl>(); } return ret; }
|
||||
QUrl intercept(const QUrl& x1, DataType x2) { quint64 id = LObjects::override_id(unique, 532); void* fun = LObjects::overrideFun(id); QUrl ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 532, args, id).value<QUrl>(); } return ret; }
|
||||
};
|
||||
|
||||
class LQmlError : public QQmlError {
|
||||
|
|
@ -65,8 +65,8 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
Flags flags() const { quint64 id = LObjects::override_id(unique, 523); void* fun = LObjects::overrideFun(id); Flags ret = (Flags)0; if(fun && (LObjects::calling != id)) { ret = (Flags)callOverrideFun(fun, 523, 0, id).toInt(); } return ret; }
|
||||
ImageType imageType() const { quint64 id = LObjects::override_id(unique, 524); void* fun = LObjects::overrideFun(id); ImageType ret = (ImageType)0; if(fun && (LObjects::calling != id)) { ret = (ImageType)callOverrideFun(fun, 524, 0, id).toInt(); } return ret; }
|
||||
Flags flags() const { quint64 id = LObjects::override_id(unique, 533); void* fun = LObjects::overrideFun(id); Flags ret = (Flags)0; if(fun && (LObjects::calling != id)) { ret = (Flags)callOverrideFun(fun, 533, 0, id).toInt(); } return ret; }
|
||||
ImageType imageType() const { quint64 id = LObjects::override_id(unique, 534); void* fun = LObjects::overrideFun(id); ImageType ret = (ImageType)0; if(fun && (LObjects::calling != id)) { ret = (ImageType)callOverrideFun(fun, 534, 0, id).toInt(); } return ret; }
|
||||
};
|
||||
|
||||
class LQmlIncubationController : public QQmlIncubationController {
|
||||
|
|
@ -77,7 +77,7 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
void incubatingObjectCountChanged(int x1) { quint64 id = LObjects::override_id(unique, 525); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 525, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQmlIncubationController::incubatingObjectCountChanged(x1); }}
|
||||
void incubatingObjectCountChanged(int x1) { quint64 id = LObjects::override_id(unique, 535); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 535, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQmlIncubationController::incubatingObjectCountChanged(x1); }}
|
||||
};
|
||||
|
||||
class LQmlIncubator : public QQmlIncubator {
|
||||
|
|
@ -88,8 +88,8 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
void setInitialState(QObject* x1) { quint64 id = LObjects::override_id(unique, 526); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 526, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQmlIncubator::setInitialState(x1); }}
|
||||
void statusChanged(Status x1) { quint64 id = LObjects::override_id(unique, 527); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 527, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQmlIncubator::statusChanged(x1); }}
|
||||
void setInitialState(QObject* x1) { quint64 id = LObjects::override_id(unique, 536); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 536, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQmlIncubator::setInitialState(x1); }}
|
||||
void statusChanged(Status x1) { quint64 id = LObjects::override_id(unique, 537); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 537, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQmlIncubator::statusChanged(x1); }}
|
||||
};
|
||||
|
||||
class LQmlNetworkAccessManagerFactory : public QQmlNetworkAccessManagerFactory {
|
||||
|
|
@ -99,7 +99,7 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QNetworkAccessManager* create(QObject* x1) { quint64 id = LObjects::override_id(unique, 528); void* fun = LObjects::overrideFun(id); QNetworkAccessManager* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QNetworkAccessManager*)callOverrideFun(fun, 528, args, id).value<void*>(); } return ret; }
|
||||
QNetworkAccessManager* create(QObject* x1) { quint64 id = LObjects::override_id(unique, 538); void* fun = LObjects::overrideFun(id); QNetworkAccessManager* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QNetworkAccessManager*)callOverrideFun(fun, 538, args, id).value<void*>(); } return ret; }
|
||||
};
|
||||
|
||||
class LQmlParserStatus : public QQmlParserStatus {
|
||||
|
|
@ -109,8 +109,8 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
void classBegin() { quint64 id = LObjects::override_id(unique, 529); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 529, 0, id); }}
|
||||
void componentComplete() { quint64 id = LObjects::override_id(unique, 530); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 530, 0, id); }}
|
||||
void classBegin() { quint64 id = LObjects::override_id(unique, 539); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 539, 0, id); }}
|
||||
void componentComplete() { quint64 id = LObjects::override_id(unique, 540); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 540, 0, id); }}
|
||||
};
|
||||
|
||||
class LQmlProperty : public QQmlProperty {
|
||||
|
|
@ -137,7 +137,7 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
void setTarget(const QQmlProperty& x1) { quint64 id = LObjects::override_id(unique, 531); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 531, args, id); }}
|
||||
void setTarget(const QQmlProperty& x1) { quint64 id = LObjects::override_id(unique, 541); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 541, args, id); }}
|
||||
};
|
||||
|
||||
class LQmlScriptString : public QQmlScriptString {
|
||||
|
|
@ -158,11 +158,11 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QImage requestImage(const QString& x1, QSize* x2, const QSize& x3) { quint64 id = LObjects::override_id(unique, 532); void* fun = LObjects::overrideFun(id); QImage ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 532, args, id).value<QImage>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickImageProvider::requestImage(x1, x2, x3); } return ret; }
|
||||
QPixmap requestPixmap(const QString& x1, QSize* x2, const QSize& x3) { quint64 id = LObjects::override_id(unique, 533); void* fun = LObjects::overrideFun(id); QPixmap ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 533, args, id).value<QPixmap>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickImageProvider::requestPixmap(x1, x2, x3); } return ret; }
|
||||
QQuickTextureFactory* requestTexture(const QString& x1, QSize* x2, const QSize& x3) { quint64 id = LObjects::override_id(unique, 534); void* fun = LObjects::overrideFun(id); QQuickTextureFactory* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = (QQuickTextureFactory*)callOverrideFun(fun, 534, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickImageProvider::requestTexture(x1, x2, x3); } return ret; }
|
||||
Flags flags() const { quint64 id = LObjects::override_id(unique, 523); void* fun = LObjects::overrideFun(id); Flags ret = (Flags)0; if(fun && (LObjects::calling != id)) { ret = (Flags)callOverrideFun(fun, 523, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickImageProvider::flags(); } return ret; }
|
||||
ImageType imageType() const { quint64 id = LObjects::override_id(unique, 524); void* fun = LObjects::overrideFun(id); ImageType ret = (ImageType)0; if(fun && (LObjects::calling != id)) { ret = (ImageType)callOverrideFun(fun, 524, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickImageProvider::imageType(); } return ret; }
|
||||
QImage requestImage(const QString& x1, QSize* x2, const QSize& x3) { quint64 id = LObjects::override_id(unique, 542); void* fun = LObjects::overrideFun(id); QImage ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 542, args, id).value<QImage>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickImageProvider::requestImage(x1, x2, x3); } return ret; }
|
||||
QPixmap requestPixmap(const QString& x1, QSize* x2, const QSize& x3) { quint64 id = LObjects::override_id(unique, 543); void* fun = LObjects::overrideFun(id); QPixmap ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 543, args, id).value<QPixmap>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickImageProvider::requestPixmap(x1, x2, x3); } return ret; }
|
||||
QQuickTextureFactory* requestTexture(const QString& x1, QSize* x2, const QSize& x3) { quint64 id = LObjects::override_id(unique, 544); void* fun = LObjects::overrideFun(id); QQuickTextureFactory* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = (QQuickTextureFactory*)callOverrideFun(fun, 544, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickImageProvider::requestTexture(x1, x2, x3); } return ret; }
|
||||
Flags flags() const { quint64 id = LObjects::override_id(unique, 533); void* fun = LObjects::overrideFun(id); Flags ret = (Flags)0; if(fun && (LObjects::calling != id)) { ret = (Flags)callOverrideFun(fun, 533, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickImageProvider::flags(); } return ret; }
|
||||
ImageType imageType() const { quint64 id = LObjects::override_id(unique, 534); void* fun = LObjects::overrideFun(id); ImageType ret = (ImageType)0; if(fun && (LObjects::calling != id)) { ret = (ImageType)callOverrideFun(fun, 534, 0, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickImageProvider::imageType(); } return ret; }
|
||||
};
|
||||
|
||||
class LSGBasicGeometryNode : public QSGBasicGeometryNode {
|
||||
|
|
@ -172,8 +172,8 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
bool isSubtreeBlocked() const { quint64 id = LObjects::override_id(unique, 536); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 536, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGBasicGeometryNode::isSubtreeBlocked(); } return ret; }
|
||||
void preprocess() { quint64 id = LObjects::override_id(unique, 537); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 537, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSGBasicGeometryNode::preprocess(); }}
|
||||
bool isSubtreeBlocked() const { quint64 id = LObjects::override_id(unique, 546); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 546, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGBasicGeometryNode::isSubtreeBlocked(); } return ret; }
|
||||
void preprocess() { quint64 id = LObjects::override_id(unique, 547); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 547, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSGBasicGeometryNode::preprocess(); }}
|
||||
};
|
||||
|
||||
class LSGClipNode : public QSGClipNode {
|
||||
|
|
@ -193,8 +193,8 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
int compare(const QSGMaterial* x1) const { quint64 id = LObjects::override_id(unique, 538); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 538, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGFlatColorMaterial::compare(x1); } return ret; }
|
||||
QSGMaterialShader* createShader() const { quint64 id = LObjects::override_id(unique, 539); void* fun = LObjects::overrideFun(id); QSGMaterialShader* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialShader*)callOverrideFun(fun, 539, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGFlatColorMaterial::createShader(); } return ret; }
|
||||
int compare(const QSGMaterial* x1) const { quint64 id = LObjects::override_id(unique, 548); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 548, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGFlatColorMaterial::compare(x1); } return ret; }
|
||||
QSGMaterialShader* createShader() const { quint64 id = LObjects::override_id(unique, 549); void* fun = LObjects::overrideFun(id); QSGMaterialShader* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialShader*)callOverrideFun(fun, 549, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGFlatColorMaterial::createShader(); } return ret; }
|
||||
QSGMaterialType* type() const { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); QSGMaterialType* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialType*)callOverrideFun(fun, 234, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGFlatColorMaterial::type(); } return ret; }
|
||||
};
|
||||
|
||||
|
|
@ -222,8 +222,8 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
int compare(const QSGMaterial* x1) const { quint64 id = LObjects::override_id(unique, 538); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 538, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGMaterial::compare(x1); } return ret; }
|
||||
QSGMaterialShader* createShader() const { quint64 id = LObjects::override_id(unique, 539); void* fun = LObjects::overrideFun(id); QSGMaterialShader* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialShader*)callOverrideFun(fun, 539, 0, id).value<void*>(); } return ret; }
|
||||
int compare(const QSGMaterial* x1) const { quint64 id = LObjects::override_id(unique, 548); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 548, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGMaterial::compare(x1); } return ret; }
|
||||
QSGMaterialShader* createShader() const { quint64 id = LObjects::override_id(unique, 549); void* fun = LObjects::overrideFun(id); QSGMaterialShader* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialShader*)callOverrideFun(fun, 549, 0, id).value<void*>(); } return ret; }
|
||||
QSGMaterialType* type() const { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); QSGMaterialType* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialType*)callOverrideFun(fun, 234, 0, id).value<void*>(); } return ret; }
|
||||
};
|
||||
|
||||
|
|
@ -243,8 +243,8 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
bool isSubtreeBlocked() const { quint64 id = LObjects::override_id(unique, 536); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 536, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGNode::isSubtreeBlocked(); } return ret; }
|
||||
void preprocess() { quint64 id = LObjects::override_id(unique, 537); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 537, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSGNode::preprocess(); }}
|
||||
bool isSubtreeBlocked() const { quint64 id = LObjects::override_id(unique, 546); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 546, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGNode::isSubtreeBlocked(); } return ret; }
|
||||
void preprocess() { quint64 id = LObjects::override_id(unique, 547); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 547, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSGNode::preprocess(); }}
|
||||
};
|
||||
|
||||
class LSGOpacityNode : public QSGOpacityNode {
|
||||
|
|
@ -255,8 +255,8 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
bool isSubtreeBlocked() const { quint64 id = LObjects::override_id(unique, 536); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 536, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGOpacityNode::isSubtreeBlocked(); } return ret; }
|
||||
void preprocess() { quint64 id = LObjects::override_id(unique, 537); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 537, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSGOpacityNode::preprocess(); }}
|
||||
bool isSubtreeBlocked() const { quint64 id = LObjects::override_id(unique, 546); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 546, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGOpacityNode::isSubtreeBlocked(); } return ret; }
|
||||
void preprocess() { quint64 id = LObjects::override_id(unique, 547); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 547, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSGOpacityNode::preprocess(); }}
|
||||
};
|
||||
|
||||
class LSGOpaqueTextureMaterial : public QSGOpaqueTextureMaterial {
|
||||
|
|
@ -267,8 +267,8 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
int compare(const QSGMaterial* x1) const { quint64 id = LObjects::override_id(unique, 538); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 538, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGOpaqueTextureMaterial::compare(x1); } return ret; }
|
||||
QSGMaterialShader* createShader() const { quint64 id = LObjects::override_id(unique, 539); void* fun = LObjects::overrideFun(id); QSGMaterialShader* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialShader*)callOverrideFun(fun, 539, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGOpaqueTextureMaterial::createShader(); } return ret; }
|
||||
int compare(const QSGMaterial* x1) const { quint64 id = LObjects::override_id(unique, 548); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 548, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGOpaqueTextureMaterial::compare(x1); } return ret; }
|
||||
QSGMaterialShader* createShader() const { quint64 id = LObjects::override_id(unique, 549); void* fun = LObjects::overrideFun(id); QSGMaterialShader* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialShader*)callOverrideFun(fun, 549, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGOpaqueTextureMaterial::createShader(); } return ret; }
|
||||
QSGMaterialType* type() const { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); QSGMaterialType* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialType*)callOverrideFun(fun, 234, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGOpaqueTextureMaterial::type(); } return ret; }
|
||||
};
|
||||
|
||||
|
|
@ -307,8 +307,8 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
bool isSubtreeBlocked() const { quint64 id = LObjects::override_id(unique, 536); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 536, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGTransformNode::isSubtreeBlocked(); } return ret; }
|
||||
void preprocess() { quint64 id = LObjects::override_id(unique, 537); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 537, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSGTransformNode::preprocess(); }}
|
||||
bool isSubtreeBlocked() const { quint64 id = LObjects::override_id(unique, 546); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 546, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGTransformNode::isSubtreeBlocked(); } return ret; }
|
||||
void preprocess() { quint64 id = LObjects::override_id(unique, 547); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 547, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSGTransformNode::preprocess(); }}
|
||||
};
|
||||
|
||||
class LSGVertexColorMaterial : public QSGVertexColorMaterial {
|
||||
|
|
@ -319,8 +319,8 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
int compare(const QSGMaterial* x1) const { quint64 id = LObjects::override_id(unique, 538); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 538, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGVertexColorMaterial::compare(x1); } return ret; }
|
||||
QSGMaterialShader* createShader() const { quint64 id = LObjects::override_id(unique, 539); void* fun = LObjects::overrideFun(id); QSGMaterialShader* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialShader*)callOverrideFun(fun, 539, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGVertexColorMaterial::createShader(); } return ret; }
|
||||
int compare(const QSGMaterial* x1) const { quint64 id = LObjects::override_id(unique, 548); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 548, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGVertexColorMaterial::compare(x1); } return ret; }
|
||||
QSGMaterialShader* createShader() const { quint64 id = LObjects::override_id(unique, 549); void* fun = LObjects::overrideFun(id); QSGMaterialShader* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialShader*)callOverrideFun(fun, 549, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGVertexColorMaterial::createShader(); } return ret; }
|
||||
QSGMaterialType* type() const { quint64 id = LObjects::override_id(unique, 234); void* fun = LObjects::overrideFun(id); QSGMaterialType* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QSGMaterialType*)callOverrideFun(fun, 234, 0, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSGVertexColorMaterial::type(); } return ret; }
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -408,7 +408,7 @@ public:
|
|||
Q_INVOKABLE QSGTextureProvider* MtextureProvider(QQuickFramebufferObject* o) const { return o->textureProvider(); }
|
||||
};
|
||||
|
||||
class Q184 : public Q271 { // QQuickWidget
|
||||
class Q184 : public Q279 { // QQuickWidget
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LQuickWidget(u, x1); }
|
||||
|
|
@ -431,7 +431,7 @@ public:
|
|||
Q_INVOKABLE bool Mevent(QQuickWidget* o, QEvent* x1) { return ((LQuickWidget*)o)->event(x1); }
|
||||
};
|
||||
|
||||
class Q185 : public Q273 { // QQuickWindow
|
||||
class Q185 : public Q281 { // QQuickWindow
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWindow* x1 = 0) { return new LQuickWindow(u, x1); }
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ NumList LSqlIndex::overrideIds = NumList();
|
|||
NumList LSqlQuery::overrideIds = NumList();
|
||||
NumList LSqlRecord::overrideIds = NumList();
|
||||
NumList LSqlRelation::overrideIds = NumList();
|
||||
NumList LSqlResult::overrideIds = NumList() << 367 << 540 << 541 << 514 << 108 << 542 << 543 << 544 << 545 << 546 << 547 << 548 << 549 << 550 << 551 << 552 << 553 << 554 << 555 << 556 << 381 << 557 << 558 << 142;
|
||||
NumList LSqlResult::overrideIds = NumList() << 367 << 550 << 551 << 524 << 108 << 552 << 553 << 554 << 555 << 556 << 557 << 558 << 559 << 560 << 561 << 562 << 563 << 564 << 565 << 566 << 381 << 567 << 568 << 142;
|
||||
|
||||
void ini() {
|
||||
static bool _ = false; if(_) return; _ = true;
|
||||
|
|
|
|||
|
|
@ -91,27 +91,27 @@ public:
|
|||
uint unique;
|
||||
|
||||
QVariant handle() const { quint64 id = LObjects::override_id(unique, 367); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 367, 0, id).value<QVariant>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::handle(); } return ret; }
|
||||
void bindValue(int x1, const QVariant& x2, QSql::ParamType x3) { quint64 id = LObjects::override_id(unique, 540); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 540, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::bindValue(x1, x2, x3); }}
|
||||
QVariant data(int x1) { quint64 id = LObjects::override_id(unique, 514); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 514, args, id).value<QVariant>(); } return ret; }
|
||||
void bindValue(int x1, const QVariant& x2, QSql::ParamType x3) { quint64 id = LObjects::override_id(unique, 550); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 550, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::bindValue(x1, x2, x3); }}
|
||||
QVariant data(int x1) { quint64 id = LObjects::override_id(unique, 524); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 524, args, id).value<QVariant>(); } return ret; }
|
||||
bool exec() { quint64 id = LObjects::override_id(unique, 108); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 108, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::exec(); } return ret; }
|
||||
bool fetch(int x1) { quint64 id = LObjects::override_id(unique, 542); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 542, args, id).toBool(); } return ret; }
|
||||
bool fetchFirst() { quint64 id = LObjects::override_id(unique, 543); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 543, 0, id).toBool(); } return ret; }
|
||||
bool fetchLast() { quint64 id = LObjects::override_id(unique, 544); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 544, 0, id).toBool(); } return ret; }
|
||||
bool fetchNext() { quint64 id = LObjects::override_id(unique, 545); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 545, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::fetchNext(); } return ret; }
|
||||
bool fetchPrevious() { quint64 id = LObjects::override_id(unique, 546); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 546, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::fetchPrevious(); } return ret; }
|
||||
bool isNull(int x1) { quint64 id = LObjects::override_id(unique, 547); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 547, args, id).toBool(); } return ret; }
|
||||
QVariant lastInsertId() const { quint64 id = LObjects::override_id(unique, 548); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 548, 0, id).value<QVariant>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::lastInsertId(); } return ret; }
|
||||
int numRowsAffected() { quint64 id = LObjects::override_id(unique, 549); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 549, 0, id).toInt(); } return ret; }
|
||||
bool prepare(const QString& x1) { quint64 id = LObjects::override_id(unique, 550); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 550, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::prepare(x1); } return ret; }
|
||||
QSqlRecord record() const { quint64 id = LObjects::override_id(unique, 551); void* fun = LObjects::overrideFun(id); QSqlRecord ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 551, 0, id).value<QSqlRecord>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::record(); } return ret; }
|
||||
bool reset(const QString& x1) { quint64 id = LObjects::override_id(unique, 552); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 552, args, id).toBool(); } return ret; }
|
||||
bool savePrepare(const QString& x1) { quint64 id = LObjects::override_id(unique, 553); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 553, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::savePrepare(x1); } return ret; }
|
||||
void setActive(bool x1) { quint64 id = LObjects::override_id(unique, 554); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 554, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setActive(x1); }}
|
||||
void setAt(int x1) { quint64 id = LObjects::override_id(unique, 555); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 555, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setAt(x1); }}
|
||||
void setForwardOnly(bool x1) { quint64 id = LObjects::override_id(unique, 556); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 556, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setForwardOnly(x1); }}
|
||||
bool fetch(int x1) { quint64 id = LObjects::override_id(unique, 552); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 552, args, id).toBool(); } return ret; }
|
||||
bool fetchFirst() { quint64 id = LObjects::override_id(unique, 553); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 553, 0, id).toBool(); } return ret; }
|
||||
bool fetchLast() { quint64 id = LObjects::override_id(unique, 554); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 554, 0, id).toBool(); } return ret; }
|
||||
bool fetchNext() { quint64 id = LObjects::override_id(unique, 555); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 555, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::fetchNext(); } return ret; }
|
||||
bool fetchPrevious() { quint64 id = LObjects::override_id(unique, 556); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 556, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::fetchPrevious(); } return ret; }
|
||||
bool isNull(int x1) { quint64 id = LObjects::override_id(unique, 557); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 557, args, id).toBool(); } return ret; }
|
||||
QVariant lastInsertId() const { quint64 id = LObjects::override_id(unique, 558); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 558, 0, id).value<QVariant>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::lastInsertId(); } return ret; }
|
||||
int numRowsAffected() { quint64 id = LObjects::override_id(unique, 559); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 559, 0, id).toInt(); } return ret; }
|
||||
bool prepare(const QString& x1) { quint64 id = LObjects::override_id(unique, 560); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 560, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::prepare(x1); } return ret; }
|
||||
QSqlRecord record() const { quint64 id = LObjects::override_id(unique, 561); void* fun = LObjects::overrideFun(id); QSqlRecord ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 561, 0, id).value<QSqlRecord>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::record(); } return ret; }
|
||||
bool reset(const QString& x1) { quint64 id = LObjects::override_id(unique, 562); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 562, args, id).toBool(); } return ret; }
|
||||
bool savePrepare(const QString& x1) { quint64 id = LObjects::override_id(unique, 563); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 563, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSqlResult::savePrepare(x1); } return ret; }
|
||||
void setActive(bool x1) { quint64 id = LObjects::override_id(unique, 564); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 564, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setActive(x1); }}
|
||||
void setAt(int x1) { quint64 id = LObjects::override_id(unique, 565); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 565, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setAt(x1); }}
|
||||
void setForwardOnly(bool x1) { quint64 id = LObjects::override_id(unique, 566); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 566, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setForwardOnly(x1); }}
|
||||
void setLastError(const QSqlError& x1) { quint64 id = LObjects::override_id(unique, 381); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 381, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setLastError(x1); }}
|
||||
void setQuery(const QString& x1) { quint64 id = LObjects::override_id(unique, 557); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 557, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setQuery(x1); }}
|
||||
void setSelect(bool x1) { quint64 id = LObjects::override_id(unique, 558); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 558, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setSelect(x1); }}
|
||||
void setQuery(const QString& x1) { quint64 id = LObjects::override_id(unique, 567); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 567, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setQuery(x1); }}
|
||||
void setSelect(bool x1) { quint64 id = LObjects::override_id(unique, 568); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 568, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QSqlResult::setSelect(x1); }}
|
||||
int size() { quint64 id = LObjects::override_id(unique, 142); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 142, 0, id).toInt(); } return ret; }
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ QT_BEGIN_NAMESPACE
|
|||
NumList LGraphicsSvgItem::overrideIds = NumList() << 261 << 232 << 234;
|
||||
NumList LSvgRenderer::overrideIds = NumList();
|
||||
NumList LSvgWidget::overrideIds = NumList() << 25 << 20;
|
||||
NumList LSvgGenerator::overrideIds = NumList() << 518;
|
||||
NumList LSvgGenerator::overrideIds = NumList() << 528;
|
||||
|
||||
void ini() {
|
||||
static bool _ = false; if(_) return; _ = true;
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ public:
|
|||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
int metric(QPaintDevice::PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 518); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 518, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSvgGenerator::metric(x1); } return ret; }
|
||||
int metric(QPaintDevice::PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 528); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 528, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QSvgGenerator::metric(x1); } return ret; }
|
||||
};
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ public:
|
|||
Q_INVOKABLE QRectF MviewBoxF(QSvgRenderer* o) const { return o->viewBoxF(); }
|
||||
};
|
||||
|
||||
class Q227 : public Q271 { // QSvgWidget
|
||||
class Q227 : public Q279 { // QSvgWidget
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LSvgWidget(u, x1); }
|
||||
|
|
|
|||
80
src/gen/webengine/_ini.cpp
Normal file
80
src/gen/webengine/_ini.cpp
Normal file
|
|
@ -0,0 +1,80 @@
|
|||
// THIS FILE IS GENERATED (see helper/)
|
||||
|
||||
#include "_q_methods.h"
|
||||
#include "_n_methods.h"
|
||||
#include "_ini2.h"
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
NumList LWebEngineCookieStore::overrideIds = NumList();
|
||||
NumList LWebEngineDownloadItem::overrideIds = NumList();
|
||||
NumList LWebEnginePage::overrideIds = NumList() << 432 << 433 << 434 << 435 << 436 << 437 << 438 << 439 << 440;
|
||||
NumList LWebEngineProfile::overrideIds = NumList();
|
||||
NumList LWebEngineUrlRequestInterceptor::overrideIds = NumList() << 441;
|
||||
NumList LWebEngineUrlRequestJob::overrideIds = NumList();
|
||||
NumList LWebEngineUrlSchemeHandler::overrideIds = NumList() << 442;
|
||||
NumList LWebEngineView::overrideIds = NumList() << 443 << 25 << 28 << 29 << 30 << 31 << 32 << 35 << 41;
|
||||
NumList LWebEngineCertificateError::overrideIds = NumList();
|
||||
NumList LWebEngineFullScreenRequest::overrideIds = NumList();
|
||||
NumList LWebEngineScript::overrideIds = NumList();
|
||||
|
||||
void ini() {
|
||||
static bool _ = false; if(_) return; _ = true;
|
||||
ini2();
|
||||
LObjects::Q[264] = new Q265;
|
||||
LObjects::Q[265] = new Q266;
|
||||
LObjects::Q[266] = new Q267;
|
||||
LObjects::Q[267] = new Q268;
|
||||
LObjects::Q[268] = new Q269;
|
||||
LObjects::Q[269] = new Q270;
|
||||
LObjects::Q[270] = new Q271;
|
||||
LObjects::Q[271] = new Q272;
|
||||
LObjects::N[266] = new N267;
|
||||
LObjects::N[267] = new N268;
|
||||
LObjects::N[268] = new N269;
|
||||
LObjects::N[269] = new N270;
|
||||
LObjects::N[270] = new N271;
|
||||
LObjects::N[271] = new N272; }
|
||||
|
||||
const QMetaObject* staticMetaObject(int n) {
|
||||
const QMetaObject* m = 0;
|
||||
switch(n) {
|
||||
case -268: m = &QWebEngineFullScreenRequest::staticMetaObject; break;
|
||||
case 265: m = &QWebEngineCookieStore::staticMetaObject; break;
|
||||
case 266: m = &QWebEngineDownloadItem::staticMetaObject; break;
|
||||
case 267: m = &QWebEnginePage::staticMetaObject; break;
|
||||
case 268: m = &QWebEngineProfile::staticMetaObject; break;
|
||||
case 269: m = &QWebEngineUrlRequestInterceptor::staticMetaObject; break;
|
||||
case 270: m = &QWebEngineUrlRequestJob::staticMetaObject; break;
|
||||
case 271: m = &QWebEngineUrlSchemeHandler::staticMetaObject; break;
|
||||
case 272: m = &QWebEngineView::staticMetaObject; break; }
|
||||
return m; }
|
||||
|
||||
void deleteNObject(int n, void* p, int gc) {
|
||||
switch(n) {
|
||||
case 267: if(gc) delete (QWebEngineCertificateError*)p; else delete (LWebEngineCertificateError*)p; break;
|
||||
case 268: if(gc) delete (QWebEngineFullScreenRequest*)p; else delete (LWebEngineFullScreenRequest*)p; break;
|
||||
case 269: if(gc) delete (QWebEngineScript*)p; else delete (LWebEngineScript*)p; break; }}
|
||||
|
||||
NumList* overrideFunctions(const QByteArray& name) {
|
||||
NumList* ids = 0;
|
||||
int n = LObjects::q_names.value(name, -1);
|
||||
if(n != -1) {
|
||||
switch(n) {
|
||||
case 265: ids = &LWebEngineCookieStore::overrideIds; break;
|
||||
case 266: ids = &LWebEngineDownloadItem::overrideIds; break;
|
||||
case 267: ids = &LWebEnginePage::overrideIds; break;
|
||||
case 268: ids = &LWebEngineProfile::overrideIds; break;
|
||||
case 269: ids = &LWebEngineUrlRequestInterceptor::overrideIds; break;
|
||||
case 270: ids = &LWebEngineUrlRequestJob::overrideIds; break;
|
||||
case 271: ids = &LWebEngineUrlSchemeHandler::overrideIds; break;
|
||||
case 272: ids = &LWebEngineView::overrideIds; break; }}
|
||||
else {
|
||||
n = LObjects::n_names.value(name);
|
||||
switch(n) {
|
||||
case 267: ids = &LWebEngineCertificateError::overrideIds; break;
|
||||
case 268: ids = &LWebEngineFullScreenRequest::overrideIds; break;
|
||||
case 269: ids = &LWebEngineScript::overrideIds; break; }}
|
||||
return ids; }
|
||||
|
||||
QT_END_NAMESPACE
|
||||
27
src/gen/webengine/_ini.h
Normal file
27
src/gen/webengine/_ini.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
#ifndef INI_H
|
||||
#define INI_H
|
||||
|
||||
#include "../../ecl_fun.h"
|
||||
#include <QtWebEngineWidgets>
|
||||
|
||||
#ifdef Q_CC_MSVC
|
||||
#define LIB_EXPORT __declspec(dllexport)
|
||||
#else
|
||||
#define LIB_EXPORT
|
||||
#endif
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
typedef QList<int> NumList;
|
||||
|
||||
extern "C" {
|
||||
LIB_EXPORT void ini();
|
||||
LIB_EXPORT const QMetaObject* staticMetaObject(int);
|
||||
LIB_EXPORT void deleteNObject(int, void*, int);
|
||||
LIB_EXPORT NumList* overrideFunctions(const QByteArray&);
|
||||
LIB_EXPORT void* toMetaArg(int, cl_object, bool*);
|
||||
LIB_EXPORT cl_object to_lisp_arg(int, void*, bool*); }
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif
|
||||
46
src/gen/webengine/_ini2.h
Normal file
46
src/gen/webengine/_ini2.h
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
#ifndef INI2_H
|
||||
#define INI2_H
|
||||
|
||||
#include "_ini.h"
|
||||
#include "../_lobjects.h"
|
||||
#include "../../eql.h"
|
||||
#include <QtGui>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
TO_QT_TYPE_PTR2 (QWebEngineScript, qwebenginescript)
|
||||
|
||||
TO_QT_LIST_VAL (QWebEngineScript)
|
||||
|
||||
TO_CL_LIST_VAL (QWebEngineScript, qwebenginescript)
|
||||
|
||||
#define META_TYPE_(var, type) var = qRegisterMetaType< type >(#type);
|
||||
|
||||
void ini2() {
|
||||
// note: QWebEngineHistoryItem can't be registered as QMetaType, lacking a public default constructor
|
||||
META_TYPE_(LObjects::T_QWebEngineScript, QWebEngineScript)
|
||||
META_TYPE_(LObjects::T_QList_QWebEngineScript, QList<QWebEngineScript>) }
|
||||
|
||||
void* toMetaArg(int n, cl_object l_arg, bool* found) {
|
||||
void* p = 0;
|
||||
bool _found = true;
|
||||
if(LObjects::T_QWebEngineScript == n) { p = new QWebEngineScript(*toQWebEngineScriptPointer(l_arg)); }
|
||||
else if(LObjects::T_QList_QWebEngineScript == n) { p = new QList<QWebEngineScript>(toQWebEngineScriptList(l_arg)); }
|
||||
else { _found = false; }
|
||||
if(_found) {
|
||||
*found = true; }
|
||||
return p; }
|
||||
|
||||
cl_object to_lisp_arg(int n, void* p, bool* found) {
|
||||
cl_object l_ret = Cnil;
|
||||
bool _found = true;
|
||||
if(LObjects::T_QWebEngineScript == n) { l_ret = from_qwebenginescript(*(QWebEngineScript*)p); }
|
||||
else if(LObjects::T_QList_QWebEngineScript == n) { l_ret = from_qwebenginescriptlist(*(QList<QWebEngineScript>*)p); }
|
||||
else { _found = false; }
|
||||
if(_found) {
|
||||
*found = true; }
|
||||
return l_ret; }
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif
|
||||
42
src/gen/webengine/_n_classes.h
Normal file
42
src/gen/webengine/_n_classes.h
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
// THIS FILE IS GENERATED (see helper/)
|
||||
|
||||
#ifndef N_CLASSES_H
|
||||
#define N_CLASSES_H
|
||||
|
||||
#include "_ini.h"
|
||||
#include "../../ecl_fun.h"
|
||||
#include "../_lobjects.h"
|
||||
#include <QtWidgets>
|
||||
#include <QtPrintSupport>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
class LWebEngineCertificateError : public QWebEngineCertificateError {
|
||||
friend class N267;
|
||||
public:
|
||||
|
||||
static NumList overrideIds;
|
||||
uint unique;
|
||||
};
|
||||
|
||||
class LWebEngineFullScreenRequest : public QWebEngineFullScreenRequest {
|
||||
friend class N268;
|
||||
public:
|
||||
|
||||
static NumList overrideIds;
|
||||
uint unique;
|
||||
};
|
||||
|
||||
class LWebEngineScript : public QWebEngineScript {
|
||||
friend class N269;
|
||||
public:
|
||||
LWebEngineScript(uint u) : unique(u) {}
|
||||
LWebEngineScript(uint u, const QWebEngineScript& x1) : QWebEngineScript(x1), unique(u) {}
|
||||
|
||||
static NumList overrideIds;
|
||||
uint unique;
|
||||
};
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif
|
||||
100
src/gen/webengine/_n_methods.h
Normal file
100
src/gen/webengine/_n_methods.h
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
// THIS FILE IS GENERATED (see helper/)
|
||||
|
||||
#ifndef N_METHODS_H
|
||||
#define N_METHODS_H
|
||||
|
||||
#include "_n_classes.h"
|
||||
#include "../_main_n_methods.h"
|
||||
#include <QtWidgets>
|
||||
#include <QtPrintSupport>
|
||||
#include <QtWebEngineWidgets>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
class N267 : public QObject { // QWebEngineCertificateError
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE int Merror(QWebEngineCertificateError* o) const { return o->error(); }
|
||||
Q_INVOKABLE QString MerrorDescription(QWebEngineCertificateError* o) const { return o->errorDescription(); }
|
||||
Q_INVOKABLE bool MisOverridable(QWebEngineCertificateError* o) const { return o->isOverridable(); }
|
||||
Q_INVOKABLE QUrl Murl(QWebEngineCertificateError* o) const { return o->url(); }
|
||||
};
|
||||
|
||||
class N268 : public QObject { // QWebEngineFullScreenRequest
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void Maccept(QWebEngineFullScreenRequest* o) { o->accept(); }
|
||||
Q_INVOKABLE QUrl Morigin(QWebEngineFullScreenRequest* o) const { return o->origin(); }
|
||||
Q_INVOKABLE void Mreject(QWebEngineFullScreenRequest* o) { o->reject(); }
|
||||
Q_INVOKABLE bool MtoggleOn(QWebEngineFullScreenRequest* o) const { return o->toggleOn(); }
|
||||
};
|
||||
|
||||
class N269 : public QObject { // QWebEngineScript
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u) { return new LWebEngineScript(u); }
|
||||
Q_INVOKABLE void* C(uint u, const QWebEngineScript& x1) { return new LWebEngineScript(u, x1); }
|
||||
Q_INVOKABLE int MinjectionPoint(QWebEngineScript* o) const { return o->injectionPoint(); }
|
||||
Q_INVOKABLE bool MisNull(QWebEngineScript* o) const { return o->isNull(); }
|
||||
Q_INVOKABLE QString Mname(QWebEngineScript* o) const { return o->name(); }
|
||||
Q_INVOKABLE bool MrunsOnSubFrames(QWebEngineScript* o) const { return o->runsOnSubFrames(); }
|
||||
Q_INVOKABLE void MsetInjectionPoint(QWebEngineScript* o, QWebEngineScript::InjectionPoint x1) { o->setInjectionPoint(x1); }
|
||||
Q_INVOKABLE void MsetName(QWebEngineScript* o, const QString& x1) { o->setName(x1); }
|
||||
Q_INVOKABLE void MsetRunsOnSubFrames(QWebEngineScript* o, bool x1) { o->setRunsOnSubFrames(x1); }
|
||||
Q_INVOKABLE void MsetSourceCode(QWebEngineScript* o, const QString& x1) { o->setSourceCode(x1); }
|
||||
Q_INVOKABLE void MsetWorldId(QWebEngineScript* o, quint32 x1) { o->setWorldId(x1); }
|
||||
Q_INVOKABLE QString MsourceCode(QWebEngineScript* o) const { return o->sourceCode(); }
|
||||
Q_INVOKABLE void Mswap(QWebEngineScript* o, QWebEngineScript& x1) { o->swap(x1); }
|
||||
Q_INVOKABLE quint32 MworldId(QWebEngineScript* o) const { return o->worldId(); }
|
||||
};
|
||||
|
||||
class N270 : public QObject { // QWebEngineScriptCollection
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void Mclear(QWebEngineScriptCollection* o) { o->clear(); }
|
||||
Q_INVOKABLE bool Mcontains(QWebEngineScriptCollection* o, const QWebEngineScript& x1) const { return o->contains(x1); }
|
||||
Q_INVOKABLE int Mcount(QWebEngineScriptCollection* o) const { return o->count(); }
|
||||
Q_INVOKABLE QWebEngineScript MfindScript(QWebEngineScriptCollection* o, const QString& x1) const { return o->findScript(x1); }
|
||||
Q_INVOKABLE QList<QWebEngineScript> MfindScripts(QWebEngineScriptCollection* o, const QString& x1) const { return o->findScripts(x1); }
|
||||
Q_INVOKABLE void Minsert(QWebEngineScriptCollection* o, const QWebEngineScript& x1) { o->insert(x1); }
|
||||
Q_INVOKABLE void Minsert(QWebEngineScriptCollection* o, const QList<QWebEngineScript>& x1) { o->insert(x1); }
|
||||
Q_INVOKABLE bool MisEmpty(QWebEngineScriptCollection* o) const { return o->isEmpty(); }
|
||||
Q_INVOKABLE bool Mremove(QWebEngineScriptCollection* o, const QWebEngineScript& x1) { return o->remove(x1); }
|
||||
Q_INVOKABLE int Msize(QWebEngineScriptCollection* o) const { return o->size(); }
|
||||
Q_INVOKABLE QList<QWebEngineScript> MtoList(QWebEngineScriptCollection* o) const { return o->toList(); }
|
||||
};
|
||||
|
||||
class N271 : public QObject { // QWebEngineSettings
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE QString MdefaultTextEncoding(QWebEngineSettings* o) const { return o->defaultTextEncoding(); }
|
||||
Q_INVOKABLE QString MfontFamily(QWebEngineSettings* o, QWebEngineSettings::FontFamily x1) const { return o->fontFamily(x1); }
|
||||
Q_INVOKABLE int MfontSize(QWebEngineSettings* o, QWebEngineSettings::FontSize x1) const { return o->fontSize(x1); }
|
||||
Q_INVOKABLE void MresetAttribute(QWebEngineSettings* o, QWebEngineSettings::WebAttribute x1) { o->resetAttribute(x1); }
|
||||
Q_INVOKABLE void MresetFontFamily(QWebEngineSettings* o, QWebEngineSettings::FontFamily x1) { o->resetFontFamily(x1); }
|
||||
Q_INVOKABLE void MresetFontSize(QWebEngineSettings* o, QWebEngineSettings::FontSize x1) { o->resetFontSize(x1); }
|
||||
Q_INVOKABLE void MsetAttribute(QWebEngineSettings* o, QWebEngineSettings::WebAttribute x1, bool x2) { o->setAttribute(x1, x2); }
|
||||
Q_INVOKABLE void MsetDefaultTextEncoding(QWebEngineSettings* o, const QString& x1) { o->setDefaultTextEncoding(x1); }
|
||||
Q_INVOKABLE void MsetFontFamily(QWebEngineSettings* o, QWebEngineSettings::FontFamily x1, const QString& x2) { o->setFontFamily(x1, x2); }
|
||||
Q_INVOKABLE void MsetFontSize(QWebEngineSettings* o, QWebEngineSettings::FontSize x1, int x2) { o->setFontSize(x1, x2); }
|
||||
Q_INVOKABLE bool MtestAttribute(QWebEngineSettings* o, QWebEngineSettings::WebAttribute x1) const { return o->testAttribute(x1); }
|
||||
Q_INVOKABLE QWebEngineSettings* SdefaultSettings() { return QWebEngineSettings::defaultSettings(); }
|
||||
Q_INVOKABLE QWebEngineSettings* SglobalSettings() { return QWebEngineSettings::globalSettings(); }
|
||||
};
|
||||
|
||||
class N272 : public QObject { // QWebEngineUrlRequestInfo
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void Mblock(QWebEngineUrlRequestInfo* o, bool x1) { o->block(x1); }
|
||||
Q_INVOKABLE QUrl MfirstPartyUrl(QWebEngineUrlRequestInfo* o) const { return o->firstPartyUrl(); }
|
||||
Q_INVOKABLE int MnavigationType(QWebEngineUrlRequestInfo* o) const { return o->navigationType(); }
|
||||
Q_INVOKABLE void Mredirect(QWebEngineUrlRequestInfo* o, const QUrl& x1) { o->redirect(x1); }
|
||||
Q_INVOKABLE QByteArray MrequestMethod(QWebEngineUrlRequestInfo* o) const { return o->requestMethod(); }
|
||||
Q_INVOKABLE QUrl MrequestUrl(QWebEngineUrlRequestInfo* o) const { return o->requestUrl(); }
|
||||
Q_INVOKABLE int MresourceType(QWebEngineUrlRequestInfo* o) const { return o->resourceType(); }
|
||||
Q_INVOKABLE void MsetHttpHeader(QWebEngineUrlRequestInfo* o, const QByteArray& x1, const QByteArray& x2) { o->setHttpHeader(x1, x2); }
|
||||
};
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif
|
||||
180
src/gen/webengine/_q_classes.h
Normal file
180
src/gen/webengine/_q_classes.h
Normal file
|
|
@ -0,0 +1,180 @@
|
|||
// THIS FILE IS GENERATED (see helper/)
|
||||
|
||||
#ifndef Q_CLASSES_H
|
||||
#define Q_CLASSES_H
|
||||
|
||||
#include "_ini.h"
|
||||
#include "../../ecl_fun.h"
|
||||
#include "../_lobjects.h"
|
||||
#include <QtWidgets>
|
||||
#include <QtPrintSupport>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
class LWebEngineCookieStore : public QWebEngineCookieStore {
|
||||
Q_OBJECT
|
||||
friend class Q265;
|
||||
public:
|
||||
|
||||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEngineCookieStore::eventFilter(x1, x2); } return ret; }
|
||||
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineCookieStore::childEvent(x1); }}
|
||||
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineCookieStore::customEvent(x1); }}
|
||||
void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineCookieStore::timerEvent(x1); }}
|
||||
};
|
||||
|
||||
class LWebEngineDownloadItem : public QWebEngineDownloadItem {
|
||||
Q_OBJECT
|
||||
friend class Q266;
|
||||
public:
|
||||
|
||||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEngineDownloadItem::eventFilter(x1, x2); } return ret; }
|
||||
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineDownloadItem::childEvent(x1); }}
|
||||
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineDownloadItem::customEvent(x1); }}
|
||||
void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineDownloadItem::timerEvent(x1); }}
|
||||
};
|
||||
|
||||
class LWebEnginePage : public QWebEnginePage {
|
||||
Q_OBJECT
|
||||
friend class Q267;
|
||||
public:
|
||||
LWebEnginePage(uint u, QObject* x1 = 0) : QWebEnginePage(x1), unique(u) {}
|
||||
LWebEnginePage(uint u, QWebEngineProfile* x1, QObject* x2 = 0) : QWebEnginePage(x1, x2), unique(u) {}
|
||||
|
||||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
void triggerAction(WebAction x1, bool x2 = false) { quint64 id = LObjects::override_id(unique, 432); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 432, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEnginePage::triggerAction(x1, x2); }}
|
||||
bool acceptNavigationRequest(const QUrl& x1, NavigationType x2, bool x3) { quint64 id = LObjects::override_id(unique, 433); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 433, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEnginePage::acceptNavigationRequest(x1, x2, x3); } return ret; }
|
||||
bool certificateError(const QWebEngineCertificateError& x1) { quint64 id = LObjects::override_id(unique, 434); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 434, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEnginePage::certificateError(x1); } return ret; }
|
||||
QStringList chooseFiles(FileSelectionMode x1, const QStringList& x2, const QStringList& x3) { quint64 id = LObjects::override_id(unique, 435); void* fun = LObjects::overrideFun(id); QStringList ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 435, args, id).value<QStringList>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEnginePage::chooseFiles(x1, x2, x3); } return ret; }
|
||||
QWebEnginePage* createWindow(WebWindowType x1) { quint64 id = LObjects::override_id(unique, 436); void* fun = LObjects::overrideFun(id); QWebEnginePage* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWebEnginePage*)callOverrideFun(fun, 436, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEnginePage::createWindow(x1); } return ret; }
|
||||
void javaScriptAlert(const QUrl& x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 437); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 437, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEnginePage::javaScriptAlert(x1, x2); }}
|
||||
bool javaScriptConfirm(const QUrl& x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 438); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 438, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEnginePage::javaScriptConfirm(x1, x2); } return ret; }
|
||||
void javaScriptConsoleMessage(JavaScriptConsoleMessageLevel x1, const QString& x2, int x3, const QString& x4) { quint64 id = LObjects::override_id(unique, 439); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; callOverrideFun(fun, 439, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEnginePage::javaScriptConsoleMessage(x1, x2, x3, x4); }}
|
||||
bool javaScriptPrompt(const QUrl& x1, const QString& x2, const QString& x3, QString* x4) { quint64 id = LObjects::override_id(unique, 440); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = callOverrideFun(fun, 440, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEnginePage::javaScriptPrompt(x1, x2, x3, x4); } return ret; }
|
||||
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEnginePage::eventFilter(x1, x2); } return ret; }
|
||||
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEnginePage::childEvent(x1); }}
|
||||
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEnginePage::customEvent(x1); }}
|
||||
void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEnginePage::timerEvent(x1); }}
|
||||
};
|
||||
|
||||
class LWebEngineProfile : public QWebEngineProfile {
|
||||
Q_OBJECT
|
||||
friend class Q268;
|
||||
public:
|
||||
LWebEngineProfile(uint u, QObject* x1 = 0) : QWebEngineProfile(x1), unique(u) {}
|
||||
LWebEngineProfile(uint u, const QString& x1, QObject* x2 = 0) : QWebEngineProfile(x1, x2), unique(u) {}
|
||||
|
||||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEngineProfile::eventFilter(x1, x2); } return ret; }
|
||||
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineProfile::childEvent(x1); }}
|
||||
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineProfile::customEvent(x1); }}
|
||||
void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineProfile::timerEvent(x1); }}
|
||||
};
|
||||
|
||||
class LWebEngineUrlRequestInterceptor : public QWebEngineUrlRequestInterceptor {
|
||||
Q_OBJECT
|
||||
friend class Q269;
|
||||
public:
|
||||
LWebEngineUrlRequestInterceptor(uint u, QObject* x1 = 0) : QWebEngineUrlRequestInterceptor(x1), unique(u) {}
|
||||
|
||||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
void interceptRequest(QWebEngineUrlRequestInfo& x1) { quint64 id = LObjects::override_id(unique, 441); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 441, args, id); }}
|
||||
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEngineUrlRequestInterceptor::eventFilter(x1, x2); } return ret; }
|
||||
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineUrlRequestInterceptor::childEvent(x1); }}
|
||||
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineUrlRequestInterceptor::customEvent(x1); }}
|
||||
void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineUrlRequestInterceptor::timerEvent(x1); }}
|
||||
};
|
||||
|
||||
class LWebEngineUrlRequestJob : public QWebEngineUrlRequestJob {
|
||||
Q_OBJECT
|
||||
friend class Q270;
|
||||
public:
|
||||
|
||||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEngineUrlRequestJob::eventFilter(x1, x2); } return ret; }
|
||||
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineUrlRequestJob::childEvent(x1); }}
|
||||
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineUrlRequestJob::customEvent(x1); }}
|
||||
void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineUrlRequestJob::timerEvent(x1); }}
|
||||
};
|
||||
|
||||
class LWebEngineUrlSchemeHandler : public QWebEngineUrlSchemeHandler {
|
||||
Q_OBJECT
|
||||
friend class Q271;
|
||||
public:
|
||||
|
||||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
void requestStarted(QWebEngineUrlRequestJob* x1) { quint64 id = LObjects::override_id(unique, 442); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 442, args, id); }}
|
||||
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEngineUrlSchemeHandler::eventFilter(x1, x2); } return ret; }
|
||||
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineUrlSchemeHandler::childEvent(x1); }}
|
||||
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineUrlSchemeHandler::customEvent(x1); }}
|
||||
void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineUrlSchemeHandler::timerEvent(x1); }}
|
||||
};
|
||||
|
||||
class LWebEngineView : public QWebEngineView {
|
||||
Q_OBJECT
|
||||
friend class Q272;
|
||||
public:
|
||||
LWebEngineView(uint u, QWidget* x1 = 0) : QWebEngineView(x1), unique(u) {}
|
||||
|
||||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QWebEngineView* createWindow(QWebEnginePage::WebWindowType x1) { quint64 id = LObjects::override_id(unique, 443); void* fun = LObjects::overrideFun(id); QWebEngineView* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWebEngineView*)callOverrideFun(fun, 443, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEngineView::createWindow(x1); } return ret; }
|
||||
QSize sizeHint() const { quint64 id = LObjects::override_id(unique, 25); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 25, 0, id).value<QSize>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEngineView::sizeHint(); } return ret; }
|
||||
void contextMenuEvent(QContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 28); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 28, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::contextMenuEvent(x1); }}
|
||||
void dragEnterEvent(QDragEnterEvent* x1) { quint64 id = LObjects::override_id(unique, 29); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 29, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::dragEnterEvent(x1); }}
|
||||
void dragLeaveEvent(QDragLeaveEvent* x1) { quint64 id = LObjects::override_id(unique, 30); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 30, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::dragLeaveEvent(x1); }}
|
||||
void dragMoveEvent(QDragMoveEvent* x1) { quint64 id = LObjects::override_id(unique, 31); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 31, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::dragMoveEvent(x1); }}
|
||||
void dropEvent(QDropEvent* x1) { quint64 id = LObjects::override_id(unique, 32); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 32, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::dropEvent(x1); }}
|
||||
void hideEvent(QHideEvent* x1) { quint64 id = LObjects::override_id(unique, 35); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 35, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::hideEvent(x1); }}
|
||||
void showEvent(QShowEvent* x1) { quint64 id = LObjects::override_id(unique, 41); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 41, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::showEvent(x1); }}
|
||||
bool hasHeightForWidth() const { quint64 id = LObjects::override_id(unique, 21); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 21, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEngineView::hasHeightForWidth(); } return ret; }
|
||||
int heightForWidth(int x1) const { quint64 id = LObjects::override_id(unique, 22); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 22, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEngineView::heightForWidth(x1); } return ret; }
|
||||
QVariant inputMethodQuery(Qt::InputMethodQuery x1) const { quint64 id = LObjects::override_id(unique, 23); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 23, args, id).value<QVariant>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEngineView::inputMethodQuery(x1); } return ret; }
|
||||
QSize minimumSizeHint() const { quint64 id = LObjects::override_id(unique, 24); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 24, 0, id).value<QSize>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEngineView::minimumSizeHint(); } return ret; }
|
||||
void actionEvent(QActionEvent* x1) { quint64 id = LObjects::override_id(unique, 26); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 26, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::actionEvent(x1); }}
|
||||
void changeEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 12); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 12, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::changeEvent(x1); }}
|
||||
void closeEvent(QCloseEvent* x1) { quint64 id = LObjects::override_id(unique, 27); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 27, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::closeEvent(x1); }}
|
||||
void enterEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 33); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 33, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::enterEvent(x1); }}
|
||||
void focusInEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 13); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 13, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::focusInEvent(x1); }}
|
||||
bool focusNextPrevChild(bool x1) { quint64 id = LObjects::override_id(unique, 34); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 34, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEngineView::focusNextPrevChild(x1); } return ret; }
|
||||
void focusOutEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 14); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 14, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::focusOutEvent(x1); }}
|
||||
void inputMethodEvent(QInputMethodEvent* x1) { quint64 id = LObjects::override_id(unique, 36); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 36, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::inputMethodEvent(x1); }}
|
||||
void keyPressEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 15); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 15, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::keyPressEvent(x1); }}
|
||||
void keyReleaseEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 16); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 16, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::keyReleaseEvent(x1); }}
|
||||
void leaveEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 37); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 37, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::leaveEvent(x1); }}
|
||||
void mouseDoubleClickEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 38); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 38, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::mouseDoubleClickEvent(x1); }}
|
||||
void mouseMoveEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 17); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 17, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::mouseMoveEvent(x1); }}
|
||||
void mousePressEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 18); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 18, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::mousePressEvent(x1); }}
|
||||
void mouseReleaseEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 19); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 19, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::mouseReleaseEvent(x1); }}
|
||||
void moveEvent(QMoveEvent* x1) { quint64 id = LObjects::override_id(unique, 39); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 39, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::moveEvent(x1); }}
|
||||
void paintEvent(QPaintEvent* x1) { quint64 id = LObjects::override_id(unique, 20); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 20, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::paintEvent(x1); }}
|
||||
void resizeEvent(QResizeEvent* x1) { quint64 id = LObjects::override_id(unique, 40); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 40, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::resizeEvent(x1); }}
|
||||
void tabletEvent(QTabletEvent* x1) { quint64 id = LObjects::override_id(unique, 42); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 42, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::tabletEvent(x1); }}
|
||||
void wheelEvent(QWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 43); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 43, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::wheelEvent(x1); }}
|
||||
void initPainter(QPainter* x1) const { quint64 id = LObjects::override_id(unique, 44); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 44, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::initPainter(x1); }}
|
||||
int metric(PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 45); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 45, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEngineView::metric(x1); } return ret; }
|
||||
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebEngineView::eventFilter(x1, x2); } return ret; }
|
||||
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::childEvent(x1); }}
|
||||
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::customEvent(x1); }}
|
||||
void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebEngineView::timerEvent(x1); }}
|
||||
};
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif
|
||||
173
src/gen/webengine/_q_methods.h
Normal file
173
src/gen/webengine/_q_methods.h
Normal file
|
|
@ -0,0 +1,173 @@
|
|||
// THIS FILE IS GENERATED (see helper/)
|
||||
|
||||
#ifndef Q_METHODS_H
|
||||
#define Q_METHODS_H
|
||||
|
||||
#include "_q_classes.h"
|
||||
#include "../_main_q_methods.h"
|
||||
#include <QtWidgets>
|
||||
#include <QtPrintSupport>
|
||||
#include <QtWebEngineWidgets>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
class Q265 : public Q142 { // QWebEngineCookieStore
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void MdeleteAllCookies(QWebEngineCookieStore* o) { o->deleteAllCookies(); }
|
||||
Q_INVOKABLE void MdeleteCookie(QWebEngineCookieStore* o, const QNetworkCookie& x1, const QUrl& x2 = QUrl()) { o->deleteCookie(x1, x2); }
|
||||
Q_INVOKABLE void MdeleteSessionCookies(QWebEngineCookieStore* o) { o->deleteSessionCookies(); }
|
||||
Q_INVOKABLE void MloadAllCookies(QWebEngineCookieStore* o) { o->loadAllCookies(); }
|
||||
Q_INVOKABLE void MsetCookie(QWebEngineCookieStore* o, const QNetworkCookie& x1, const QUrl& x2 = QUrl()) { o->setCookie(x1, x2); }
|
||||
};
|
||||
|
||||
class Q266 : public Q142 { // QWebEngineDownloadItem
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE quint32 Mid(QWebEngineDownloadItem* o) const { return o->id(); }
|
||||
Q_INVOKABLE bool MisFinished(QWebEngineDownloadItem* o) const { return o->isFinished(); }
|
||||
Q_INVOKABLE QString MmimeType(QWebEngineDownloadItem* o) const { return o->mimeType(); }
|
||||
Q_INVOKABLE QString Mpath(QWebEngineDownloadItem* o) const { return o->path(); }
|
||||
Q_INVOKABLE qlonglong MreceivedBytes(QWebEngineDownloadItem* o) const { return o->receivedBytes(); }
|
||||
Q_INVOKABLE int MsavePageFormat(QWebEngineDownloadItem* o) const { return o->savePageFormat(); }
|
||||
Q_INVOKABLE void MsetPath(QWebEngineDownloadItem* o, QString x1) { o->setPath(x1); }
|
||||
Q_INVOKABLE void MsetSavePageFormat(QWebEngineDownloadItem* o, QWebEngineDownloadItem::SavePageFormat x1) { o->setSavePageFormat(x1); }
|
||||
Q_INVOKABLE int Mstate(QWebEngineDownloadItem* o) const { return o->state(); }
|
||||
Q_INVOKABLE qlonglong MtotalBytes(QWebEngineDownloadItem* o) const { return o->totalBytes(); }
|
||||
Q_INVOKABLE int Mtype(QWebEngineDownloadItem* o) const { return o->type(); }
|
||||
Q_INVOKABLE QUrl Murl(QWebEngineDownloadItem* o) const { return o->url(); }
|
||||
};
|
||||
|
||||
class Q267 : public Q142 { // QWebEnginePage
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LWebEnginePage(u, x1); }
|
||||
Q_INVOKABLE void* C(uint u, QWebEngineProfile* x1, QObject* x2 = 0) { return new LWebEnginePage(u, x1, x2); }
|
||||
Q_INVOKABLE QAction* Maction(QWebEnginePage* o, QWebEnginePage::WebAction x1) const { return o->action(x1); }
|
||||
Q_INVOKABLE QColor MbackgroundColor(QWebEnginePage* o) const { return o->backgroundColor(); }
|
||||
Q_INVOKABLE QSizeF McontentsSize(QWebEnginePage* o) const { return o->contentsSize(); }
|
||||
Q_INVOKABLE QWebEngineContextMenuData McontextMenuData(QWebEnginePage* o) const { return o->contextMenuData(); }
|
||||
Q_INVOKABLE QMenu* McreateStandardContextMenu(QWebEnginePage* o) { return o->createStandardContextMenu(); }
|
||||
Q_INVOKABLE void MfindText(QWebEnginePage* o, const QString& x1, QWebEnginePage::FindFlags x2 = QWebEnginePage::FindFlags()) { o->findText(x1, x2); }
|
||||
Q_INVOKABLE bool MhasSelection(QWebEnginePage* o) const { return o->hasSelection(); }
|
||||
Q_INVOKABLE QIcon Micon(QWebEnginePage* o) const { return o->icon(); }
|
||||
Q_INVOKABLE QUrl MiconUrl(QWebEnginePage* o) const { return o->iconUrl(); }
|
||||
Q_INVOKABLE bool MisAudioMuted(QWebEnginePage* o) const { return o->isAudioMuted(); }
|
||||
Q_INVOKABLE void Mload(QWebEnginePage* o, const QUrl& x1) { o->load(x1); }
|
||||
Q_INVOKABLE void MprintToPdf(QWebEnginePage* o, const QString& x1, const QPageLayout& x2 = QPageLayout_DEFAULT) { o->printToPdf(x1, x2); }
|
||||
Q_INVOKABLE QWebEngineProfile* Mprofile(QWebEnginePage* o) const { return o->profile(); }
|
||||
Q_INVOKABLE bool MrecentlyAudible(QWebEnginePage* o) const { return o->recentlyAudible(); }
|
||||
Q_INVOKABLE void MreplaceMisspelledWord(QWebEnginePage* o, const QString& x1) { o->replaceMisspelledWord(x1); }
|
||||
Q_INVOKABLE QUrl MrequestedUrl(QWebEnginePage* o) const { return o->requestedUrl(); }
|
||||
Q_INVOKABLE void MrunJavaScript(QWebEnginePage* o, const QString& x1, quint32 x2) { o->runJavaScript(x1, x2); }
|
||||
Q_INVOKABLE void MrunJavaScript(QWebEnginePage* o, const QString& x1) { o->runJavaScript(x1); }
|
||||
Q_INVOKABLE void Msave(QWebEnginePage* o, const QString& x1, QWebEngineDownloadItem::SavePageFormat x2 = QWebEngineDownloadItem::MimeHtmlSaveFormat) const { o->save(x1, x2); }
|
||||
Q_INVOKABLE QPointF MscrollPosition(QWebEnginePage* o) const { return o->scrollPosition(); }
|
||||
Q_INVOKABLE QString MselectedText(QWebEnginePage* o) const { return o->selectedText(); }
|
||||
Q_INVOKABLE void MsetAudioMuted(QWebEnginePage* o, bool x1) { o->setAudioMuted(x1); }
|
||||
Q_INVOKABLE void MsetBackgroundColor(QWebEnginePage* o, const QColor& x1) { o->setBackgroundColor(x1); }
|
||||
Q_INVOKABLE void MsetContent(QWebEnginePage* o, const QByteArray& x1, const QString& x2 = QString(), const QUrl& x3 = QUrl()) { o->setContent(x1, x2, x3); }
|
||||
Q_INVOKABLE void MsetFeaturePermission(QWebEnginePage* o, const QUrl& x1, QWebEnginePage::Feature x2, QWebEnginePage::PermissionPolicy x3) { o->setFeaturePermission(x1, x2, x3); }
|
||||
Q_INVOKABLE void MsetHtml(QWebEnginePage* o, const QString& x1, const QUrl& x2 = QUrl()) { o->setHtml(x1, x2); }
|
||||
Q_INVOKABLE void MsetUrl(QWebEnginePage* o, const QUrl& x1) { o->setUrl(x1); }
|
||||
Q_INVOKABLE void MsetView(QWebEnginePage* o, QWidget* x1) { o->setView(x1); }
|
||||
Q_INVOKABLE void MsetWebChannel(QWebEnginePage* o, QWebChannel* x1, uint x2) { o->setWebChannel(x1, x2); }
|
||||
Q_INVOKABLE void MsetWebChannel(QWebEnginePage* o, QWebChannel* x1) { o->setWebChannel(x1); }
|
||||
Q_INVOKABLE void MsetZoomFactor(QWebEnginePage* o, qreal x1) { o->setZoomFactor(x1); }
|
||||
Q_INVOKABLE QWebEngineSettings* Msettings(QWebEnginePage* o) const { return o->settings(); }
|
||||
Q_INVOKABLE QString Mtitle(QWebEnginePage* o) const { return o->title(); }
|
||||
Q_INVOKABLE void MtriggerAction(QWebEnginePage* o, QWebEnginePage::WebAction x1, bool x2 = false) { o->triggerAction(x1, x2); }
|
||||
Q_INVOKABLE QUrl Murl(QWebEnginePage* o) const { return o->url(); }
|
||||
Q_INVOKABLE QWidget* Mview(QWebEnginePage* o) const { return o->view(); }
|
||||
Q_INVOKABLE QWebChannel* MwebChannel(QWebEnginePage* o) const { return o->webChannel(); }
|
||||
Q_INVOKABLE qreal MzoomFactor(QWebEnginePage* o) const { return o->zoomFactor(); }
|
||||
Q_INVOKABLE bool Mevent(QWebEnginePage* o, QEvent* x1) { return o->event(x1); }
|
||||
};
|
||||
|
||||
class Q268 : public Q142 { // QWebEngineProfile
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LWebEngineProfile(u, x1); }
|
||||
Q_INVOKABLE void* C(uint u, const QString& x1, QObject* x2 = 0) { return new LWebEngineProfile(u, x1, x2); }
|
||||
Q_INVOKABLE QString McachePath(QWebEngineProfile* o) const { return o->cachePath(); }
|
||||
Q_INVOKABLE void MclearAllVisitedLinks(QWebEngineProfile* o) { o->clearAllVisitedLinks(); }
|
||||
Q_INVOKABLE void MclearHttpCache(QWebEngineProfile* o) { o->clearHttpCache(); }
|
||||
Q_INVOKABLE void MclearVisitedLinks(QWebEngineProfile* o, const QList<QUrl>& x1) { o->clearVisitedLinks(x1); }
|
||||
Q_INVOKABLE QWebEngineCookieStore* McookieStore(QWebEngineProfile* o) { return o->cookieStore(); }
|
||||
Q_INVOKABLE QString MhttpAcceptLanguage(QWebEngineProfile* o) const { return o->httpAcceptLanguage(); }
|
||||
Q_INVOKABLE int MhttpCacheMaximumSize(QWebEngineProfile* o) const { return o->httpCacheMaximumSize(); }
|
||||
Q_INVOKABLE int MhttpCacheType(QWebEngineProfile* o) const { return o->httpCacheType(); }
|
||||
Q_INVOKABLE QString MhttpUserAgent(QWebEngineProfile* o) const { return o->httpUserAgent(); }
|
||||
Q_INVOKABLE bool MisOffTheRecord(QWebEngineProfile* o) const { return o->isOffTheRecord(); }
|
||||
Q_INVOKABLE bool MisSpellCheckEnabled(QWebEngineProfile* o) const { return o->isSpellCheckEnabled(); }
|
||||
Q_INVOKABLE int MpersistentCookiesPolicy(QWebEngineProfile* o) const { return o->persistentCookiesPolicy(); }
|
||||
Q_INVOKABLE QString MpersistentStoragePath(QWebEngineProfile* o) const { return o->persistentStoragePath(); }
|
||||
Q_INVOKABLE void MremoveUrlScheme(QWebEngineProfile* o, const QByteArray& x1) { o->removeUrlScheme(x1); }
|
||||
Q_INVOKABLE QWebEngineScriptCollection* Mscripts(QWebEngineProfile* o) const { return o->scripts(); }
|
||||
Q_INVOKABLE void MsetCachePath(QWebEngineProfile* o, const QString& x1) { o->setCachePath(x1); }
|
||||
Q_INVOKABLE void MsetHttpAcceptLanguage(QWebEngineProfile* o, const QString& x1) { o->setHttpAcceptLanguage(x1); }
|
||||
Q_INVOKABLE void MsetHttpCacheMaximumSize(QWebEngineProfile* o, int x1) { o->setHttpCacheMaximumSize(x1); }
|
||||
Q_INVOKABLE void MsetHttpCacheType(QWebEngineProfile* o, QWebEngineProfile::HttpCacheType x1) { o->setHttpCacheType(x1); }
|
||||
Q_INVOKABLE void MsetHttpUserAgent(QWebEngineProfile* o, const QString& x1) { o->setHttpUserAgent(x1); }
|
||||
Q_INVOKABLE void MsetPersistentCookiesPolicy(QWebEngineProfile* o, QWebEngineProfile::PersistentCookiesPolicy x1) { o->setPersistentCookiesPolicy(x1); }
|
||||
Q_INVOKABLE void MsetPersistentStoragePath(QWebEngineProfile* o, const QString& x1) { o->setPersistentStoragePath(x1); }
|
||||
Q_INVOKABLE void MsetRequestInterceptor(QWebEngineProfile* o, QWebEngineUrlRequestInterceptor* x1) { o->setRequestInterceptor(x1); }
|
||||
Q_INVOKABLE void MsetSpellCheckEnabled(QWebEngineProfile* o, bool x1) { o->setSpellCheckEnabled(x1); }
|
||||
Q_INVOKABLE void MsetSpellCheckLanguages(QWebEngineProfile* o, const QStringList& x1) { o->setSpellCheckLanguages(x1); }
|
||||
Q_INVOKABLE QWebEngineSettings* Msettings(QWebEngineProfile* o) const { return o->settings(); }
|
||||
Q_INVOKABLE QStringList MspellCheckLanguages(QWebEngineProfile* o) const { return o->spellCheckLanguages(); }
|
||||
Q_INVOKABLE QString MstorageName(QWebEngineProfile* o) const { return o->storageName(); }
|
||||
Q_INVOKABLE bool MvisitedLinksContainsUrl(QWebEngineProfile* o, const QUrl& x1) const { return o->visitedLinksContainsUrl(x1); }
|
||||
Q_INVOKABLE QWebEngineProfile* SdefaultProfile() { return QWebEngineProfile::defaultProfile(); }
|
||||
};
|
||||
|
||||
class Q269 : public Q142 { // QWebEngineUrlRequestInterceptor
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LWebEngineUrlRequestInterceptor(u, x1); }
|
||||
Q_INVOKABLE void MinterceptRequest(QWebEngineUrlRequestInterceptor* o, QWebEngineUrlRequestInfo& x1) { o->interceptRequest(x1); }
|
||||
};
|
||||
|
||||
class Q270 : public Q142 { // QWebEngineUrlRequestJob
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void Mfail(QWebEngineUrlRequestJob* o, QWebEngineUrlRequestJob::Error x1) { o->fail(x1); }
|
||||
Q_INVOKABLE void Mredirect(QWebEngineUrlRequestJob* o, const QUrl& x1) { o->redirect(x1); }
|
||||
Q_INVOKABLE QByteArray MrequestMethod(QWebEngineUrlRequestJob* o) const { return o->requestMethod(); }
|
||||
Q_INVOKABLE QUrl MrequestUrl(QWebEngineUrlRequestJob* o) const { return o->requestUrl(); }
|
||||
};
|
||||
|
||||
class Q271 : public Q142 { // QWebEngineUrlSchemeHandler
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void MrequestStarted(QWebEngineUrlSchemeHandler* o, QWebEngineUrlRequestJob* x1) { o->requestStarted(x1); }
|
||||
};
|
||||
|
||||
class Q272 : public Q279 { // QWebEngineView
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LWebEngineView(u, x1); }
|
||||
Q_INVOKABLE void MfindText(QWebEngineView* o, const QString& x1, QWebEnginePage::FindFlags x2 = QWebEnginePage::FindFlags()) { o->findText(x1, x2); }
|
||||
Q_INVOKABLE bool MhasSelection(QWebEngineView* o) const { return o->hasSelection(); }
|
||||
Q_INVOKABLE QIcon Micon(QWebEngineView* o) const { return o->icon(); }
|
||||
Q_INVOKABLE QUrl MiconUrl(QWebEngineView* o) const { return o->iconUrl(); }
|
||||
Q_INVOKABLE void Mload(QWebEngineView* o, const QUrl& x1) { o->load(x1); }
|
||||
Q_INVOKABLE QWebEnginePage* Mpage(QWebEngineView* o) const { return o->page(); }
|
||||
Q_INVOKABLE QAction* MpageAction(QWebEngineView* o, QWebEnginePage::WebAction x1) const { return o->pageAction(x1); }
|
||||
Q_INVOKABLE QString MselectedText(QWebEngineView* o) const { return o->selectedText(); }
|
||||
Q_INVOKABLE void MsetContent(QWebEngineView* o, const QByteArray& x1, const QString& x2 = QString(), const QUrl& x3 = QUrl()) { o->setContent(x1, x2, x3); }
|
||||
Q_INVOKABLE void MsetHtml(QWebEngineView* o, const QString& x1, const QUrl& x2 = QUrl()) { o->setHtml(x1, x2); }
|
||||
Q_INVOKABLE void MsetPage(QWebEngineView* o, QWebEnginePage* x1) { o->setPage(x1); }
|
||||
Q_INVOKABLE void MsetUrl(QWebEngineView* o, const QUrl& x1) { o->setUrl(x1); }
|
||||
Q_INVOKABLE void MsetZoomFactor(QWebEngineView* o, qreal x1) { o->setZoomFactor(x1); }
|
||||
Q_INVOKABLE QWebEngineSettings* Msettings(QWebEngineView* o) const { return o->settings(); }
|
||||
Q_INVOKABLE QString Mtitle(QWebEngineView* o) const { return o->title(); }
|
||||
Q_INVOKABLE void MtriggerPageAction(QWebEngineView* o, QWebEnginePage::WebAction x1, bool x2 = false) { o->triggerPageAction(x1, x2); }
|
||||
Q_INVOKABLE QUrl Murl(QWebEngineView* o) const { return o->url(); }
|
||||
Q_INVOKABLE qreal MzoomFactor(QWebEngineView* o) const { return o->zoomFactor(); }
|
||||
Q_INVOKABLE QSize MsizeHint(QWebEngineView* o) const { return o->sizeHint(); }
|
||||
};
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif
|
||||
|
|
@ -7,15 +7,14 @@
|
|||
QT_BEGIN_NAMESPACE
|
||||
|
||||
NumList LGraphicsWebView::overrideIds = NumList() << 23 << 244 << 232 << 233 << 250 << 264 << 235 << 236 << 237 << 238 << 239 << 13 << 34 << 14 << 242 << 243 << 36 << 15 << 16 << 245 << 246 << 247 << 248 << 263 << 252;
|
||||
NumList LWebHistoryInterface::overrideIds = NumList() << 432 << 433;
|
||||
NumList LWebHistoryInterface::overrideIds = NumList() << 444 << 445;
|
||||
NumList LWebInspector::overrideIds = NumList() << 25 << 27 << 35 << 40 << 41;
|
||||
NumList LWebPage::overrideIds = NumList() << 434 << 435 << 436 << 437 << 438 << 439 << 440 << 441 << 442 << 443 << 444 << 445 << 446;
|
||||
NumList LWebPluginFactory::overrideIds = NumList() << 447 << 448 << 449;
|
||||
NumList LWebView::overrideIds = NumList() << 450 << 23 << 25 << 12 << 28 << 29 << 30 << 31 << 32 << 13 << 34 << 14 << 36 << 15 << 16 << 38 << 17 << 18 << 19 << 20 << 40 << 43;
|
||||
NumList LWebPage::overrideIds = NumList() << 446 << 447 << 448 << 432 << 449 << 450 << 451 << 436 << 452 << 453 << 454 << 455 << 456;
|
||||
NumList LWebPluginFactory::overrideIds = NumList() << 457 << 458 << 459;
|
||||
NumList LWebView::overrideIds = NumList() << 460 << 23 << 25 << 12 << 28 << 29 << 30 << 31 << 32 << 13 << 34 << 14 << 36 << 15 << 16 << 38 << 17 << 18 << 19 << 20 << 40 << 43;
|
||||
NumList LWebDatabase::overrideIds = NumList();
|
||||
NumList LWebElement::overrideIds = NumList();
|
||||
NumList LWebElementCollection::overrideIds = NumList();
|
||||
NumList LWebHistoryItem::overrideIds = NumList();
|
||||
NumList LWebHitTestResult::overrideIds = NumList();
|
||||
NumList LWebSecurityOrigin::overrideIds = NumList();
|
||||
|
||||
|
|
@ -23,31 +22,29 @@ void ini() {
|
|||
static bool _ = false; if(_) return; _ = true;
|
||||
ini2();
|
||||
LObjects::Q[87] = new Q88;
|
||||
LObjects::Q[264] = new Q265;
|
||||
LObjects::Q[265] = new Q266;
|
||||
LObjects::Q[266] = new Q267;
|
||||
LObjects::Q[267] = new Q268;
|
||||
LObjects::Q[268] = new Q269;
|
||||
LObjects::Q[269] = new Q270;
|
||||
LObjects::Q[272] = new Q273;
|
||||
LObjects::Q[273] = new Q274;
|
||||
LObjects::Q[274] = new Q275;
|
||||
LObjects::Q[275] = new Q276;
|
||||
LObjects::Q[276] = new Q277;
|
||||
LObjects::Q[277] = new Q278;
|
||||
LObjects::N[263] = new N264;
|
||||
LObjects::N[264] = new N265;
|
||||
LObjects::N[265] = new N266;
|
||||
LObjects::N[266] = new N267;
|
||||
LObjects::N[267] = new N268;
|
||||
LObjects::N[268] = new N269;
|
||||
LObjects::N[269] = new N270;
|
||||
LObjects::N[270] = new N271; }
|
||||
LObjects::N[272] = new N273;
|
||||
LObjects::N[273] = new N274;
|
||||
LObjects::N[274] = new N275; }
|
||||
|
||||
const QMetaObject* staticMetaObject(int n) {
|
||||
const QMetaObject* m = 0;
|
||||
switch(n) {
|
||||
case 88: m = &QGraphicsWebView::staticMetaObject; break;
|
||||
case 265: m = &QWebFrame::staticMetaObject; break;
|
||||
case 266: m = &QWebHistoryInterface::staticMetaObject; break;
|
||||
case 267: m = &QWebInspector::staticMetaObject; break;
|
||||
case 268: m = &QWebPage::staticMetaObject; break;
|
||||
case 269: m = &QWebPluginFactory::staticMetaObject; break;
|
||||
case 270: m = &QWebView::staticMetaObject; break; }
|
||||
case 273: m = &QWebFrame::staticMetaObject; break;
|
||||
case 274: m = &QWebHistoryInterface::staticMetaObject; break;
|
||||
case 275: m = &QWebInspector::staticMetaObject; break;
|
||||
case 276: m = &QWebPage::staticMetaObject; break;
|
||||
case 277: m = &QWebPluginFactory::staticMetaObject; break;
|
||||
case 278: m = &QWebView::staticMetaObject; break; }
|
||||
return m; }
|
||||
|
||||
void deleteNObject(int n, void* p, int gc) {
|
||||
|
|
@ -55,9 +52,8 @@ void deleteNObject(int n, void* p, int gc) {
|
|||
case 264: if(gc) delete (QWebDatabase*)p; else delete (LWebDatabase*)p; break;
|
||||
case 265: if(gc) delete (QWebElement*)p; else delete (LWebElement*)p; break;
|
||||
case 266: if(gc) delete (QWebElementCollection*)p; else delete (LWebElementCollection*)p; break;
|
||||
case 268: if(gc) delete (QWebHistoryItem*)p; else delete (LWebHistoryItem*)p; break;
|
||||
case 269: if(gc) delete (QWebHitTestResult*)p; else delete (LWebHitTestResult*)p; break;
|
||||
case 270: if(gc) delete (QWebSecurityOrigin*)p; else delete (LWebSecurityOrigin*)p; break; }}
|
||||
case 273: if(gc) delete (QWebHitTestResult*)p; else delete (LWebHitTestResult*)p; break;
|
||||
case 274: if(gc) delete (QWebSecurityOrigin*)p; else delete (LWebSecurityOrigin*)p; break; }}
|
||||
|
||||
NumList* overrideFunctions(const QByteArray& name) {
|
||||
NumList* ids = 0;
|
||||
|
|
@ -65,20 +61,19 @@ NumList* overrideFunctions(const QByteArray& name) {
|
|||
if(n != -1) {
|
||||
switch(n) {
|
||||
case 88: ids = &LGraphicsWebView::overrideIds; break;
|
||||
case 266: ids = &LWebHistoryInterface::overrideIds; break;
|
||||
case 267: ids = &LWebInspector::overrideIds; break;
|
||||
case 268: ids = &LWebPage::overrideIds; break;
|
||||
case 269: ids = &LWebPluginFactory::overrideIds; break;
|
||||
case 270: ids = &LWebView::overrideIds; break; }}
|
||||
case 274: ids = &LWebHistoryInterface::overrideIds; break;
|
||||
case 275: ids = &LWebInspector::overrideIds; break;
|
||||
case 276: ids = &LWebPage::overrideIds; break;
|
||||
case 277: ids = &LWebPluginFactory::overrideIds; break;
|
||||
case 278: ids = &LWebView::overrideIds; break; }}
|
||||
else {
|
||||
n = LObjects::n_names.value(name);
|
||||
switch(n) {
|
||||
case 264: ids = &LWebDatabase::overrideIds; break;
|
||||
case 265: ids = &LWebElement::overrideIds; break;
|
||||
case 266: ids = &LWebElementCollection::overrideIds; break;
|
||||
case 268: ids = &LWebHistoryItem::overrideIds; break;
|
||||
case 269: ids = &LWebHitTestResult::overrideIds; break;
|
||||
case 270: ids = &LWebSecurityOrigin::overrideIds; break; }}
|
||||
case 273: ids = &LWebHitTestResult::overrideIds; break;
|
||||
case 274: ids = &LWebSecurityOrigin::overrideIds; break; }}
|
||||
return ids; }
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
|
|
|||
|
|
@ -43,17 +43,8 @@ public:
|
|||
uint unique;
|
||||
};
|
||||
|
||||
class LWebHistoryItem : public QWebHistoryItem {
|
||||
friend class N268;
|
||||
public:
|
||||
LWebHistoryItem(uint u, const QWebHistoryItem& x1) : QWebHistoryItem(x1), unique(u) {}
|
||||
|
||||
static NumList overrideIds;
|
||||
uint unique;
|
||||
};
|
||||
|
||||
class LWebHitTestResult : public QWebHitTestResult {
|
||||
friend class N269;
|
||||
friend class N273;
|
||||
public:
|
||||
LWebHitTestResult(uint u) : unique(u) {}
|
||||
LWebHitTestResult(uint u, const QWebHitTestResult& x1) : QWebHitTestResult(x1), unique(u) {}
|
||||
|
|
@ -63,7 +54,7 @@ public:
|
|||
};
|
||||
|
||||
class LWebSecurityOrigin : public QWebSecurityOrigin {
|
||||
friend class N270;
|
||||
friend class N274;
|
||||
public:
|
||||
LWebSecurityOrigin(uint u, const QUrl& x1) : QWebSecurityOrigin(x1), unique(u) {}
|
||||
LWebSecurityOrigin(uint u, const QWebSecurityOrigin& x1) : QWebSecurityOrigin(x1), unique(u) {}
|
||||
|
|
|
|||
|
|
@ -107,43 +107,7 @@ public:
|
|||
Q_INVOKABLE QList<QWebElement> MtoList(QWebElementCollection* o) const { return o->toList(); }
|
||||
};
|
||||
|
||||
class N267 : public QObject { // QWebHistory
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void Mback(QWebHistory* o) { o->back(); }
|
||||
Q_INVOKABLE QWebHistoryItem MbackItem(QWebHistory* o) const { return o->backItem(); }
|
||||
Q_INVOKABLE QList<QWebHistoryItem> MbackItems(QWebHistory* o, int x1) const { return o->backItems(x1); }
|
||||
Q_INVOKABLE bool McanGoBack(QWebHistory* o) const { return o->canGoBack(); }
|
||||
Q_INVOKABLE bool McanGoForward(QWebHistory* o) const { return o->canGoForward(); }
|
||||
Q_INVOKABLE void Mclear(QWebHistory* o) { o->clear(); }
|
||||
Q_INVOKABLE int Mcount(QWebHistory* o) const { return o->count(); }
|
||||
Q_INVOKABLE QWebHistoryItem McurrentItem(QWebHistory* o) const { return o->currentItem(); }
|
||||
Q_INVOKABLE int McurrentItemIndex(QWebHistory* o) const { return o->currentItemIndex(); }
|
||||
Q_INVOKABLE void Mforward(QWebHistory* o) { o->forward(); }
|
||||
Q_INVOKABLE QWebHistoryItem MforwardItem(QWebHistory* o) const { return o->forwardItem(); }
|
||||
Q_INVOKABLE QList<QWebHistoryItem> MforwardItems(QWebHistory* o, int x1) const { return o->forwardItems(x1); }
|
||||
Q_INVOKABLE void MgoToItem(QWebHistory* o, const QWebHistoryItem& x1) { o->goToItem(x1); }
|
||||
Q_INVOKABLE QWebHistoryItem MitemAt(QWebHistory* o, int x1) const { return o->itemAt(x1); }
|
||||
Q_INVOKABLE QList<QWebHistoryItem> Mitems(QWebHistory* o) const { return o->items(); }
|
||||
Q_INVOKABLE int MmaximumItemCount(QWebHistory* o) const { return o->maximumItemCount(); }
|
||||
Q_INVOKABLE void MsetMaximumItemCount(QWebHistory* o, int x1) { o->setMaximumItemCount(x1); }
|
||||
};
|
||||
|
||||
class N268 : public QObject { // QWebHistoryItem
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, const QWebHistoryItem& x1) { return new LWebHistoryItem(u, x1); }
|
||||
Q_INVOKABLE QIcon Micon(QWebHistoryItem* o) const { return o->icon(); }
|
||||
Q_INVOKABLE bool MisValid(QWebHistoryItem* o) const { return o->isValid(); }
|
||||
Q_INVOKABLE QDateTime MlastVisited(QWebHistoryItem* o) const { return o->lastVisited(); }
|
||||
Q_INVOKABLE QUrl MoriginalUrl(QWebHistoryItem* o) const { return o->originalUrl(); }
|
||||
Q_INVOKABLE void MsetUserData(QWebHistoryItem* o, const QVariant& x1) { o->setUserData(x1); }
|
||||
Q_INVOKABLE QString Mtitle(QWebHistoryItem* o) const { return o->title(); }
|
||||
Q_INVOKABLE QUrl Murl(QWebHistoryItem* o) const { return o->url(); }
|
||||
Q_INVOKABLE QVariant MuserData(QWebHistoryItem* o) const { return o->userData(); }
|
||||
};
|
||||
|
||||
class N269 : public QObject { // QWebHitTestResult
|
||||
class N273 : public QObject { // QWebHitTestResult
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u) { return new LWebHitTestResult(u); }
|
||||
|
|
@ -168,7 +132,7 @@ public:
|
|||
Q_INVOKABLE QString Mtitle(QWebHitTestResult* o) const { return o->title(); }
|
||||
};
|
||||
|
||||
class N270 : public QObject { // QWebSecurityOrigin
|
||||
class N274 : public QObject { // QWebSecurityOrigin
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, const QUrl& x1) { return new LWebSecurityOrigin(u, x1); }
|
||||
|
|
@ -189,7 +153,7 @@ public:
|
|||
Q_INVOKABLE void SremoveLocalScheme(const QString& x1) { QWebSecurityOrigin::removeLocalScheme(x1); }
|
||||
};
|
||||
|
||||
class N271 : public QObject { // QWebSettings
|
||||
class N275 : public QObject { // QWebSettings
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE QString McssMediaType(QWebSettings* o) const { return o->cssMediaType(); }
|
||||
|
|
|
|||
|
|
@ -73,15 +73,14 @@ public:
|
|||
|
||||
class LWebHistoryInterface : public QWebHistoryInterface {
|
||||
Q_OBJECT
|
||||
friend class Q266;
|
||||
friend class Q274;
|
||||
public:
|
||||
LWebHistoryInterface(uint u, QObject* x1 = 0) : QWebHistoryInterface(x1), unique(u) {}
|
||||
|
||||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
void addHistoryEntry(const QString& x1) { quint64 id = LObjects::override_id(unique, 432); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 432, args, id); }}
|
||||
bool historyContains(const QString& x1) const { quint64 id = LObjects::override_id(unique, 433); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 433, args, id).toBool(); } return ret; }
|
||||
void addHistoryEntry(const QString& x1) { quint64 id = LObjects::override_id(unique, 444); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 444, args, id); }}
|
||||
bool historyContains(const QString& x1) const { quint64 id = LObjects::override_id(unique, 445); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 445, args, id).toBool(); } return ret; }
|
||||
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebHistoryInterface::eventFilter(x1, x2); } return ret; }
|
||||
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebHistoryInterface::childEvent(x1); }}
|
||||
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebHistoryInterface::customEvent(x1); }}
|
||||
|
|
@ -90,7 +89,7 @@ public:
|
|||
|
||||
class LWebInspector : public QWebInspector {
|
||||
Q_OBJECT
|
||||
friend class Q267;
|
||||
friend class Q275;
|
||||
public:
|
||||
LWebInspector(uint u, QWidget* x1 = 0) : QWebInspector(x1), unique(u) {}
|
||||
|
||||
|
|
@ -139,26 +138,26 @@ public:
|
|||
|
||||
class LWebPage : public QWebPage {
|
||||
Q_OBJECT
|
||||
friend class Q268;
|
||||
friend class Q276;
|
||||
public:
|
||||
LWebPage(uint u, QObject* x1 = 0) : QWebPage(x1), unique(u) {}
|
||||
|
||||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
bool extension(Extension x1, const ExtensionOption* x2 = 0, ExtensionReturn* x3 = 0) { quint64 id = LObjects::override_id(unique, 434); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 434, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::extension(x1, x2, x3); } return ret; }
|
||||
bool shouldInterruptJavaScript() { quint64 id = LObjects::override_id(unique, 435); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 435, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::shouldInterruptJavaScript(); } return ret; }
|
||||
bool supportsExtension(Extension x1) const { quint64 id = LObjects::override_id(unique, 436); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 436, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::supportsExtension(x1); } return ret; }
|
||||
void triggerAction(WebAction x1, bool x2 = false) { quint64 id = LObjects::override_id(unique, 437); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 437, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPage::triggerAction(x1, x2); }}
|
||||
bool acceptNavigationRequest(QWebFrame* x1, const QNetworkRequest& x2, NavigationType x3) { quint64 id = LObjects::override_id(unique, 438); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 438, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::acceptNavigationRequest(x1, x2, x3); } return ret; }
|
||||
QString chooseFile(QWebFrame* x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 439); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 439, args, id).value<QString>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::chooseFile(x1, x2); } return ret; }
|
||||
QObject* createPlugin(const QString& x1, const QUrl& x2, const QStringList& x3, const QStringList& x4) { quint64 id = LObjects::override_id(unique, 440); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = (QObject*)callOverrideFun(fun, 440, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::createPlugin(x1, x2, x3, x4); } return ret; }
|
||||
QWebPage* createWindow(WebWindowType x1) { quint64 id = LObjects::override_id(unique, 441); void* fun = LObjects::overrideFun(id); QWebPage* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWebPage*)callOverrideFun(fun, 441, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::createWindow(x1); } return ret; }
|
||||
void javaScriptAlert(QWebFrame* x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 442); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 442, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPage::javaScriptAlert(x1, x2); }}
|
||||
bool javaScriptConfirm(QWebFrame* x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 443); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 443, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::javaScriptConfirm(x1, x2); } return ret; }
|
||||
void javaScriptConsoleMessage(const QString& x1, int x2, const QString& x3) { quint64 id = LObjects::override_id(unique, 444); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 444, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPage::javaScriptConsoleMessage(x1, x2, x3); }}
|
||||
bool javaScriptPrompt(QWebFrame* x1, const QString& x2, const QString& x3, QString* x4) { quint64 id = LObjects::override_id(unique, 445); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = callOverrideFun(fun, 445, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::javaScriptPrompt(x1, x2, x3, x4); } return ret; }
|
||||
QString userAgentForUrl(const QUrl& x1) const { quint64 id = LObjects::override_id(unique, 446); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 446, args, id).value<QString>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::userAgentForUrl(x1); } return ret; }
|
||||
bool extension(Extension x1, const ExtensionOption* x2 = 0, ExtensionReturn* x3 = 0) { quint64 id = LObjects::override_id(unique, 446); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 446, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::extension(x1, x2, x3); } return ret; }
|
||||
bool shouldInterruptJavaScript() { quint64 id = LObjects::override_id(unique, 447); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 447, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::shouldInterruptJavaScript(); } return ret; }
|
||||
bool supportsExtension(Extension x1) const { quint64 id = LObjects::override_id(unique, 448); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 448, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::supportsExtension(x1); } return ret; }
|
||||
void triggerAction(WebAction x1, bool x2 = false) { quint64 id = LObjects::override_id(unique, 432); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 432, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPage::triggerAction(x1, x2); }}
|
||||
bool acceptNavigationRequest(QWebFrame* x1, const QNetworkRequest& x2, NavigationType x3) { quint64 id = LObjects::override_id(unique, 449); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; ret = callOverrideFun(fun, 449, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::acceptNavigationRequest(x1, x2, x3); } return ret; }
|
||||
QString chooseFile(QWebFrame* x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 450); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 450, args, id).value<QString>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::chooseFile(x1, x2); } return ret; }
|
||||
QObject* createPlugin(const QString& x1, const QUrl& x2, const QStringList& x3, const QStringList& x4) { quint64 id = LObjects::override_id(unique, 451); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = (QObject*)callOverrideFun(fun, 451, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::createPlugin(x1, x2, x3, x4); } return ret; }
|
||||
QWebPage* createWindow(WebWindowType x1) { quint64 id = LObjects::override_id(unique, 436); void* fun = LObjects::overrideFun(id); QWebPage* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWebPage*)callOverrideFun(fun, 436, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::createWindow(x1); } return ret; }
|
||||
void javaScriptAlert(QWebFrame* x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 452); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; callOverrideFun(fun, 452, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPage::javaScriptAlert(x1, x2); }}
|
||||
bool javaScriptConfirm(QWebFrame* x1, const QString& x2) { quint64 id = LObjects::override_id(unique, 453); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 453, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::javaScriptConfirm(x1, x2); } return ret; }
|
||||
void javaScriptConsoleMessage(const QString& x1, int x2, const QString& x3) { quint64 id = LObjects::override_id(unique, 454); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 454, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPage::javaScriptConsoleMessage(x1, x2, x3); }}
|
||||
bool javaScriptPrompt(QWebFrame* x1, const QString& x2, const QString& x3, QString* x4) { quint64 id = LObjects::override_id(unique, 455); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = callOverrideFun(fun, 455, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::javaScriptPrompt(x1, x2, x3, x4); } return ret; }
|
||||
QString userAgentForUrl(const QUrl& x1) const { quint64 id = LObjects::override_id(unique, 456); void* fun = LObjects::overrideFun(id); QString ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 456, args, id).value<QString>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::userAgentForUrl(x1); } return ret; }
|
||||
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPage::eventFilter(x1, x2); } return ret; }
|
||||
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPage::childEvent(x1); }}
|
||||
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPage::customEvent(x1); }}
|
||||
|
|
@ -167,16 +166,16 @@ public:
|
|||
|
||||
class LWebPluginFactory : public QWebPluginFactory {
|
||||
Q_OBJECT
|
||||
friend class Q269;
|
||||
friend class Q277;
|
||||
public:
|
||||
LWebPluginFactory(uint u, QObject* x1 = 0) : QWebPluginFactory(x1), unique(u) {}
|
||||
|
||||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QObject* create(const QString& x1, const QUrl& x2, const QStringList& x3, const QStringList& x4) const { quint64 id = LObjects::override_id(unique, 447); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = (QObject*)callOverrideFun(fun, 447, args, id).value<void*>(); } return ret; }
|
||||
QList<Plugin> plugins() const { quint64 id = LObjects::override_id(unique, 448); void* fun = LObjects::overrideFun(id); QList<Plugin> ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 448, 0, id).value<QList<Plugin> >(); } return ret; }
|
||||
void refreshPlugins() { quint64 id = LObjects::override_id(unique, 449); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 449, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPluginFactory::refreshPlugins(); }}
|
||||
QObject* create(const QString& x1, const QUrl& x2, const QStringList& x3, const QStringList& x4) const { quint64 id = LObjects::override_id(unique, 457); void* fun = LObjects::overrideFun(id); QObject* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3, &x4 }; ret = (QObject*)callOverrideFun(fun, 457, args, id).value<void*>(); } return ret; }
|
||||
QList<Plugin> plugins() const { quint64 id = LObjects::override_id(unique, 458); void* fun = LObjects::overrideFun(id); QList<Plugin> ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 458, 0, id).value<QList<Plugin> >(); } return ret; }
|
||||
void refreshPlugins() { quint64 id = LObjects::override_id(unique, 459); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { callOverrideFun(fun, 459, 0, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPluginFactory::refreshPlugins(); }}
|
||||
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebPluginFactory::eventFilter(x1, x2); } return ret; }
|
||||
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPluginFactory::childEvent(x1); }}
|
||||
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebPluginFactory::customEvent(x1); }}
|
||||
|
|
@ -185,14 +184,14 @@ public:
|
|||
|
||||
class LWebView : public QWebView {
|
||||
Q_OBJECT
|
||||
friend class Q270;
|
||||
friend class Q278;
|
||||
public:
|
||||
LWebView(uint u, QWidget* x1 = 0) : QWebView(x1), unique(u) {}
|
||||
|
||||
static NumList overrideIds;
|
||||
uint unique;
|
||||
|
||||
QWebView* createWindow(QWebPage::WebWindowType x1) { quint64 id = LObjects::override_id(unique, 450); void* fun = LObjects::overrideFun(id); QWebView* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWebView*)callOverrideFun(fun, 450, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebView::createWindow(x1); } return ret; }
|
||||
QWebView* createWindow(QWebPage::WebWindowType x1) { quint64 id = LObjects::override_id(unique, 460); void* fun = LObjects::overrideFun(id); QWebView* ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = (QWebView*)callOverrideFun(fun, 460, args, id).value<void*>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebView::createWindow(x1); } return ret; }
|
||||
QVariant inputMethodQuery(Qt::InputMethodQuery x1) const { quint64 id = LObjects::override_id(unique, 23); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 23, args, id).value<QVariant>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebView::inputMethodQuery(x1); } return ret; }
|
||||
QSize sizeHint() const { quint64 id = LObjects::override_id(unique, 25); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 25, 0, id).value<QSize>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QWebView::sizeHint(); } return ret; }
|
||||
void changeEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 12); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 12, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QWebView::changeEvent(x1); }}
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
class Q265 : public Q142 { // QWebFrame
|
||||
class Q273 : public Q142 { // QWebFrame
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void MaddToJavaScriptWindowObject(QWebFrame* o, const QString& x1, QObject* x2, QWebFrame::ValueOwnership x3 = QWebFrame::QtOwnership) { o->addToJavaScriptWindowObject(x1, x2, x3); }
|
||||
|
|
@ -62,17 +62,14 @@ public:
|
|||
Q_INVOKABLE bool Mevent(QWebFrame* o, QEvent* x1) { return o->event(x1); }
|
||||
};
|
||||
|
||||
class Q266 : public Q142 { // QWebHistoryInterface
|
||||
class Q274 : public Q142 { // QWebHistoryInterface
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LWebHistoryInterface(u, x1); }
|
||||
Q_INVOKABLE void MaddHistoryEntry(QWebHistoryInterface* o, const QString& x1) { o->addHistoryEntry(x1); }
|
||||
Q_INVOKABLE bool MhistoryContains(QWebHistoryInterface* o, const QString& x1) const { return o->historyContains(x1); }
|
||||
Q_INVOKABLE QWebHistoryInterface* SdefaultInterface() { return QWebHistoryInterface::defaultInterface(); }
|
||||
Q_INVOKABLE void SsetDefaultInterface(QWebHistoryInterface* x1) { QWebHistoryInterface::setDefaultInterface(x1); }
|
||||
};
|
||||
|
||||
class Q268 : public Q142 { // QWebPage
|
||||
class Q276 : public Q142 { // QWebPage
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LWebPage(u, x1); }
|
||||
|
|
@ -86,7 +83,6 @@ public:
|
|||
Q_INVOKABLE bool MforwardUnsupportedContent(QWebPage* o) const { return o->forwardUnsupportedContent(); }
|
||||
Q_INVOKABLE QWebFrame* MframeAt(QWebPage* o, const QPoint& x1) const { return o->frameAt(x1); }
|
||||
Q_INVOKABLE bool MhasSelection(QWebPage* o) const { return o->hasSelection(); }
|
||||
Q_INVOKABLE QWebHistory* Mhistory(QWebPage* o) const { return o->history(); }
|
||||
Q_INVOKABLE QVariant MinputMethodQuery(QWebPage* o, Qt::InputMethodQuery x1) const { return o->inputMethodQuery(x1); }
|
||||
Q_INVOKABLE bool MisContentEditable(QWebPage* o) const { return o->isContentEditable(); }
|
||||
Q_INVOKABLE bool MisModified(QWebPage* o) const { return o->isModified(); }
|
||||
|
|
@ -126,7 +122,7 @@ public:
|
|||
Q_INVOKABLE bool Mevent(QWebPage* o, QEvent* x1) { return o->event(x1); }
|
||||
};
|
||||
|
||||
class Q269 : public Q142 { // QWebPluginFactory
|
||||
class Q277 : public Q142 { // QWebPluginFactory
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QObject* x1 = 0) { return new LWebPluginFactory(u, x1); }
|
||||
|
|
@ -140,7 +136,6 @@ class Q88 : public Q89 { // QGraphicsWebView
|
|||
public:
|
||||
Q_INVOKABLE void* C(uint u, QGraphicsItem* x1 = 0) { return new LGraphicsWebView(u, x1); }
|
||||
Q_INVOKABLE bool MfindText(QGraphicsWebView* o, const QString& x1, QWebPage::FindFlags x2 = 0) { return o->findText(x1, x2); }
|
||||
Q_INVOKABLE QWebHistory* Mhistory(QGraphicsWebView* o) const { return o->history(); }
|
||||
Q_INVOKABLE QIcon Micon(QGraphicsWebView* o) const { return o->icon(); }
|
||||
Q_INVOKABLE bool MisModified(QGraphicsWebView* o) const { return o->isModified(); }
|
||||
Q_INVOKABLE bool MisTiledBackingStoreFrozen(QGraphicsWebView* o) const { return o->isTiledBackingStoreFrozen(); }
|
||||
|
|
@ -173,7 +168,7 @@ public:
|
|||
Q_INVOKABLE void MupdateGeometry(QGraphicsWebView* o) { o->updateGeometry(); }
|
||||
};
|
||||
|
||||
class Q267 : public Q271 { // QWebInspector
|
||||
class Q275 : public Q279 { // QWebInspector
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LWebInspector(u, x1); }
|
||||
|
|
@ -183,13 +178,12 @@ public:
|
|||
Q_INVOKABLE QSize MsizeHint(QWebInspector* o) const { return o->sizeHint(); }
|
||||
};
|
||||
|
||||
class Q270 : public Q271 { // QWebView
|
||||
class Q278 : public Q279 { // QWebView
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LWebView(u, x1); }
|
||||
Q_INVOKABLE bool MfindText(QWebView* o, const QString& x1, QWebPage::FindFlags x2 = 0) { return o->findText(x1, x2); }
|
||||
Q_INVOKABLE bool MhasSelection(QWebView* o) const { return o->hasSelection(); }
|
||||
Q_INVOKABLE QWebHistory* Mhistory(QWebView* o) const { return o->history(); }
|
||||
Q_INVOKABLE QIcon Micon(QWebView* o) const { return o->icon(); }
|
||||
Q_INVOKABLE bool MisModified(QWebView* o) const { return o->isModified(); }
|
||||
Q_INVOKABLE void Mload(QWebView* o, const QUrl& x1) { o->load(x1); }
|
||||
|
|
|
|||
|
|
@ -5,7 +5,8 @@
|
|||
#+msvc
|
||||
(setf c::*compile-in-constants* t)
|
||||
|
||||
(defparameter *all-wrappers* (loop :for i :from 1 :to 12 :collect (format nil "all-wrappers-~D" i)))
|
||||
(defparameter *all-wrappers* (append (loop :for i :from 1 :to 12 :collect (format nil "all-wrappers-~D" i))
|
||||
(loop :for i :from 1 :to 2 :collect (format nil "all-wrappers-webengine-~D" i))))
|
||||
|
||||
(defparameter *lisp-files* (append '("x" "package" "ini"
|
||||
"enums1" "enums2" "enums3" "enums4" "enums5"
|
||||
|
|
|
|||
|
|
@ -329,7 +329,6 @@
|
|||
#:|audioInputs|
|
||||
#:|audioInput|
|
||||
#:|audioRoleChanged|
|
||||
#:|audioRole|
|
||||
#:|audioSettings|
|
||||
#:|authenticationMethod|
|
||||
#:|authenticationRequired|
|
||||
|
|
@ -379,8 +378,6 @@
|
|||
#:|averageCharWidth|
|
||||
#:|axisChanged|
|
||||
#:|axis|
|
||||
#:|backItems|
|
||||
#:|backItem|
|
||||
#:|backgroundBrush|
|
||||
#:|backgroundColor|
|
||||
#:|backgroundMode|
|
||||
|
|
@ -586,8 +583,6 @@
|
|||
#:|canEncode(QString)|
|
||||
#:|canEncode|
|
||||
#:|canFetchMore|
|
||||
#:|canGoBack|
|
||||
#:|canGoForward|
|
||||
#:|canPaste|
|
||||
#:|canReadLine|
|
||||
#:|canRedoChanged|
|
||||
|
|
@ -1022,7 +1017,6 @@
|
|||
#:|currentIndexChanged|
|
||||
#:|currentIndex|
|
||||
#:|currentItemChanged|
|
||||
#:|currentItemIndex|
|
||||
#:|currentItem|
|
||||
#:|currentList|
|
||||
#:|currentLoopChanged|
|
||||
|
|
@ -1139,7 +1133,6 @@
|
|||
#:|defaultFramebufferObject|
|
||||
#:|defaultInnerTessellationLevels|
|
||||
#:|defaultInputDevice.QAudioDeviceInfo|
|
||||
#:|defaultInterface.QWebHistoryInterface|
|
||||
#:|defaultOuterTessellationLevels|
|
||||
#:|defaultOutputDevice.QAudioDeviceInfo|
|
||||
#:|defaultPageSize|
|
||||
|
|
@ -1199,7 +1192,14 @@
|
|||
#:|dirName|
|
||||
#:|directionChanged|
|
||||
#:|direction|
|
||||
#:|directories|))
|
||||
#:|directories|
|
||||
#:|directoryChanged|
|
||||
#:|directoryEntered|
|
||||
#:|directoryLoaded|
|
||||
#:|directoryUrlEntered|
|
||||
#:|directoryUrl|
|
||||
#:|directory|
|
||||
#:|dirtyRegionOffset|))
|
||||
|
||||
(in-package :eql)
|
||||
|
||||
|
|
|
|||
|
|
@ -1,50 +1,5 @@
|
|||
(in-package :eql)
|
||||
|
||||
(defun |relation| (object &rest arguments)
|
||||
(%qinvoke-method object nil "relation" arguments))
|
||||
|
||||
(defun |relativeFilePath| (object &rest arguments)
|
||||
(%qinvoke-method object nil "relativeFilePath" arguments))
|
||||
|
||||
(defun |releaseControl| (object &rest arguments)
|
||||
(%qinvoke-method object nil "releaseControl" arguments))
|
||||
|
||||
(defun |releaseKeyboard| (object &rest arguments)
|
||||
(%qinvoke-method object nil "releaseKeyboard" arguments))
|
||||
|
||||
(defun |releaseMouse| (object &rest arguments)
|
||||
(%qinvoke-method object nil "releaseMouse" arguments))
|
||||
|
||||
(defun |releaseResources| (object &rest arguments)
|
||||
(%qinvoke-method object nil "releaseResources" arguments))
|
||||
|
||||
(defun |releaseShortcut| (object &rest arguments)
|
||||
(%qinvoke-method object nil "releaseShortcut" arguments))
|
||||
|
||||
(defun |releaseWidget| (object &rest arguments)
|
||||
(%qinvoke-method object nil "releaseWidget" arguments))
|
||||
|
||||
(defun |released| (object &rest arguments)
|
||||
(%qinvoke-method object nil "released" arguments))
|
||||
|
||||
(defun |release| (object &rest arguments)
|
||||
(%qinvoke-method object nil "release" arguments))
|
||||
|
||||
(defun |reload| (object &rest arguments)
|
||||
(%qinvoke-method object nil "reload" arguments))
|
||||
|
||||
(defun |remainingTime| (object &rest arguments)
|
||||
(%qinvoke-method object nil "remainingTime" arguments))
|
||||
|
||||
(defun |remove.QFile| (&rest arguments)
|
||||
(%qinvoke-method "QFile" nil "remove" arguments))
|
||||
|
||||
(defun |remove.QPixmapCache| (&rest arguments)
|
||||
(%qinvoke-method "QPixmapCache" nil "remove" arguments))
|
||||
|
||||
(defun |removeAccessWhitelistEntry| (object &rest arguments)
|
||||
(%qinvoke-method object nil "removeAccessWhitelistEntry" arguments))
|
||||
|
||||
(defun |removeAction| (object &rest arguments)
|
||||
(%qinvoke-method object nil "removeAction" arguments))
|
||||
|
||||
|
|
@ -330,9 +285,6 @@
|
|||
(defun |requestControl| (object &rest arguments)
|
||||
(%qinvoke-method object nil "requestControl" arguments))
|
||||
|
||||
(defun |requestImageResponse| (object &rest arguments)
|
||||
(%qinvoke-method object nil "requestImageResponse" arguments))
|
||||
|
||||
(defun |requestImage| (object &rest arguments)
|
||||
(%qinvoke-method object nil "requestImage" arguments))
|
||||
|
||||
|
|
@ -1533,9 +1485,6 @@
|
|||
(defun |setAudioInput| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setAudioInput" arguments))
|
||||
|
||||
(defun |setAudioRole| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setAudioRole" arguments))
|
||||
|
||||
(defun |setAudioSettings| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setAudioSettings" arguments))
|
||||
|
||||
|
|
@ -2367,9 +2316,6 @@
|
|||
(defun |setDefaultInnerTessellationLevels| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setDefaultInnerTessellationLevels" arguments))
|
||||
|
||||
(defun |setDefaultInterface.QWebHistoryInterface| (&rest arguments)
|
||||
(%qinvoke-method "QWebHistoryInterface" nil "setDefaultInterface" arguments))
|
||||
|
||||
(defun |setDefaultOuterTessellationLevels| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setDefaultOuterTessellationLevels" arguments))
|
||||
|
||||
|
|
@ -3599,3 +3545,57 @@
|
|||
|
||||
(defun |setMask(QRegion)| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMask(QRegion)" arguments))
|
||||
|
||||
(defun |setMask| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMask" arguments))
|
||||
|
||||
(defun |setMaterial| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaterial" arguments))
|
||||
|
||||
(defun |setMatrix| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMatrix" arguments))
|
||||
|
||||
(defun |setMaxCount| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaxCount" arguments))
|
||||
|
||||
(defun |setMaxLength| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaxLength" arguments))
|
||||
|
||||
(defun |setMaxPendingConnections| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaxPendingConnections" arguments))
|
||||
|
||||
(defun |setMaxVisibleItems| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaxVisibleItems" arguments))
|
||||
|
||||
(defun |setMaximumAnisotropy| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumAnisotropy" arguments))
|
||||
|
||||
(defun |setMaximumBlockCount| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumBlockCount" arguments))
|
||||
|
||||
(defun |setMaximumCacheSize| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumCacheSize" arguments))
|
||||
|
||||
(defun |setMaximumDateTime| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumDateTime" arguments))
|
||||
|
||||
(defun |setMaximumDate| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumDate" arguments))
|
||||
|
||||
(defun |setMaximumFrameRate| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumFrameRate" arguments))
|
||||
|
||||
(defun |setMaximumHeight| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumHeight" arguments))
|
||||
|
||||
(defun |setMaximumLevelOfDetail| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumLevelOfDetail" arguments))
|
||||
|
||||
(defun |setMaximumPagesInCache.QWebSettings| (&rest arguments)
|
||||
(%qinvoke-method "QWebSettings" nil "setMaximumPagesInCache" arguments))
|
||||
|
||||
(defun |setMaximumSectionSize| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumSectionSize" arguments))
|
||||
|
||||
(defun |setMaximumSize| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumSize" arguments))
|
||||
|
|
|
|||
|
|
@ -1,62 +1,5 @@
|
|||
(in-package :eql)
|
||||
|
||||
(defun |setMask| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMask" arguments))
|
||||
|
||||
(defun |setMaterial| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaterial" arguments))
|
||||
|
||||
(defun |setMatrix| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMatrix" arguments))
|
||||
|
||||
(defun |setMaxCount| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaxCount" arguments))
|
||||
|
||||
(defun |setMaxLength| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaxLength" arguments))
|
||||
|
||||
(defun |setMaxPendingConnections| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaxPendingConnections" arguments))
|
||||
|
||||
(defun |setMaxVisibleItems| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaxVisibleItems" arguments))
|
||||
|
||||
(defun |setMaximumAnisotropy| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumAnisotropy" arguments))
|
||||
|
||||
(defun |setMaximumBlockCount| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumBlockCount" arguments))
|
||||
|
||||
(defun |setMaximumCacheSize| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumCacheSize" arguments))
|
||||
|
||||
(defun |setMaximumDateTime| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumDateTime" arguments))
|
||||
|
||||
(defun |setMaximumDate| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumDate" arguments))
|
||||
|
||||
(defun |setMaximumFrameRate| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumFrameRate" arguments))
|
||||
|
||||
(defun |setMaximumHeight| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumHeight" arguments))
|
||||
|
||||
(defun |setMaximumItemCount| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumItemCount" arguments))
|
||||
|
||||
(defun |setMaximumLevelOfDetail| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumLevelOfDetail" arguments))
|
||||
|
||||
(defun |setMaximumPagesInCache.QWebSettings| (&rest arguments)
|
||||
(%qinvoke-method "QWebSettings" nil "setMaximumPagesInCache" arguments))
|
||||
|
||||
(defun |setMaximumSectionSize| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumSectionSize" arguments))
|
||||
|
||||
(defun |setMaximumSize| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumSize" arguments))
|
||||
|
||||
(defun |setMaximumTime| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setMaximumTime" arguments))
|
||||
|
||||
|
|
@ -2997,9 +2940,6 @@
|
|||
(defun |supportedAudioCodecs| (object &rest arguments)
|
||||
(%qinvoke-method object nil "supportedAudioCodecs" arguments))
|
||||
|
||||
(defun |supportedAudioRoles| (object &rest arguments)
|
||||
(%qinvoke-method object nil "supportedAudioRoles" arguments))
|
||||
|
||||
(defun |supportedAudioSampleRates| (object &rest arguments)
|
||||
(%qinvoke-method object nil "supportedAudioSampleRates" arguments))
|
||||
|
||||
|
|
@ -3513,12 +3453,6 @@
|
|||
(defun |textureCoordinatesTransform| (object &rest arguments)
|
||||
(%qinvoke-method object nil "textureCoordinatesTransform" arguments))
|
||||
|
||||
(defun |textureFactoryForImage.QQuickTextureFactory| (&rest arguments)
|
||||
(%qinvoke-method "QQuickTextureFactory" nil "textureFactoryForImage" arguments))
|
||||
|
||||
(defun |textureFactory| (object &rest arguments)
|
||||
(%qinvoke-method object nil "textureFactory" arguments))
|
||||
|
||||
(defun |textureFollowsItemSizeChanged| (object &rest arguments)
|
||||
(%qinvoke-method object nil "textureFollowsItemSizeChanged" arguments))
|
||||
|
||||
|
|
@ -3599,3 +3533,69 @@
|
|||
|
||||
(defun |timestamp| (object &rest arguments)
|
||||
(%qinvoke-method object nil "timestamp" arguments))
|
||||
|
||||
(defun |time| (object &rest arguments)
|
||||
(%qinvoke-method object nil "time" arguments))
|
||||
|
||||
(defun |tip| (object &rest arguments)
|
||||
(%qinvoke-method object nil "tip" arguments))
|
||||
|
||||
(defun |titleBarWidget| (object &rest arguments)
|
||||
(%qinvoke-method object nil "titleBarWidget" arguments))
|
||||
|
||||
(defun |titleChanged| (object &rest arguments)
|
||||
(%qinvoke-method object nil "titleChanged" arguments))
|
||||
|
||||
(defun |titleFormat| (object &rest arguments)
|
||||
(%qinvoke-method object nil "titleFormat" arguments))
|
||||
|
||||
(defun |title| (object &rest arguments)
|
||||
(%qinvoke-method object nil "title" arguments))
|
||||
|
||||
(defun |toAce.QUrl| (&rest arguments)
|
||||
(%qinvoke-method "QUrl" nil "toAce" arguments))
|
||||
|
||||
(defun |toAffine| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toAffine" arguments))
|
||||
|
||||
(defun |toBitArray| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toBitArray" arguments))
|
||||
|
||||
(defun |toBlockFormat| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toBlockFormat" arguments))
|
||||
|
||||
(defun |toBool| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toBool" arguments))
|
||||
|
||||
(defun |toByteArray| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toByteArray" arguments))
|
||||
|
||||
(defun |toCharFormat| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toCharFormat" arguments))
|
||||
|
||||
(defun |toChar| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toChar" arguments))
|
||||
|
||||
(defun |toCmyk| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toCmyk" arguments))
|
||||
|
||||
(defun |toCubicSpline| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toCubicSpline" arguments))
|
||||
|
||||
(defun |toCurrencyString(double)| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toCurrencyString(double)" arguments))
|
||||
|
||||
(defun |toCurrencyString(double...)| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toCurrencyString(double...)" arguments))
|
||||
|
||||
(defun |toCurrencyString(float)| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toCurrencyString(float)" arguments))
|
||||
|
||||
(defun |toCurrencyString(float...)| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toCurrencyString(float...)" arguments))
|
||||
|
||||
(defun |toCurrencyString(int)| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toCurrencyString(int)" arguments))
|
||||
|
||||
(defun |toCurrencyString(int...)| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toCurrencyString(int...)" arguments))
|
||||
|
|
|
|||
|
|
@ -1,71 +1,5 @@
|
|||
(in-package :eql)
|
||||
|
||||
(defun |time| (object &rest arguments)
|
||||
(%qinvoke-method object nil "time" arguments))
|
||||
|
||||
(defun |tip| (object &rest arguments)
|
||||
(%qinvoke-method object nil "tip" arguments))
|
||||
|
||||
(defun |titleBarWidget| (object &rest arguments)
|
||||
(%qinvoke-method object nil "titleBarWidget" arguments))
|
||||
|
||||
(defun |titleChanged| (object &rest arguments)
|
||||
(%qinvoke-method object nil "titleChanged" arguments))
|
||||
|
||||
(defun |titleFormat| (object &rest arguments)
|
||||
(%qinvoke-method object nil "titleFormat" arguments))
|
||||
|
||||
(defun |title| (object &rest arguments)
|
||||
(%qinvoke-method object nil "title" arguments))
|
||||
|
||||
(defun |toAce.QUrl| (&rest arguments)
|
||||
(%qinvoke-method "QUrl" nil "toAce" arguments))
|
||||
|
||||
(defun |toAffine| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toAffine" arguments))
|
||||
|
||||
(defun |toBitArray| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toBitArray" arguments))
|
||||
|
||||
(defun |toBlockFormat| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toBlockFormat" arguments))
|
||||
|
||||
(defun |toBool| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toBool" arguments))
|
||||
|
||||
(defun |toByteArray| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toByteArray" arguments))
|
||||
|
||||
(defun |toCharFormat| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toCharFormat" arguments))
|
||||
|
||||
(defun |toChar| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toChar" arguments))
|
||||
|
||||
(defun |toCmyk| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toCmyk" arguments))
|
||||
|
||||
(defun |toCubicSpline| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toCubicSpline" arguments))
|
||||
|
||||
(defun |toCurrencyString(double)| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toCurrencyString(double)" arguments))
|
||||
|
||||
(defun |toCurrencyString(double...)| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toCurrencyString(double...)" arguments))
|
||||
|
||||
(defun |toCurrencyString(float)| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toCurrencyString(float)" arguments))
|
||||
|
||||
(defun |toCurrencyString(float...)| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toCurrencyString(float...)" arguments))
|
||||
|
||||
(defun |toCurrencyString(int)| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toCurrencyString(int)" arguments))
|
||||
|
||||
(defun |toCurrencyString(int...)| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toCurrencyString(int...)" arguments))
|
||||
|
||||
(defun |toCurrencyString(qlonglong)| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toCurrencyString(qlonglong)" arguments))
|
||||
|
||||
|
|
|
|||
|
|
@ -1,12 +1,5 @@
|
|||
(defpackage :eql
|
||||
(:export
|
||||
#:|directoryChanged|
|
||||
#:|directoryEntered|
|
||||
#:|directoryLoaded|
|
||||
#:|directoryUrlEntered|
|
||||
#:|directoryUrl|
|
||||
#:|directory|
|
||||
#:|dirtyRegionOffset|
|
||||
#:|dir|
|
||||
#:|disableAttributeArray(const char*)|
|
||||
#:|disableAttributeArray(int)|
|
||||
|
|
@ -543,8 +536,6 @@
|
|||
#:|format|
|
||||
#:|forwardAvailable|
|
||||
#:|forwardHistoryCount|
|
||||
#:|forwardItems|
|
||||
#:|forwardItem|
|
||||
#:|forwardUnsupportedContent|
|
||||
#:|forward|
|
||||
#:|fragment|
|
||||
|
|
@ -684,7 +675,6 @@
|
|||
#:|globalX|
|
||||
#:|globalY|
|
||||
#:|glyphRuns|
|
||||
#:|goToItem|
|
||||
#:|gotFocus|
|
||||
#:|grabFramebuffer|
|
||||
#:|grabGesture|
|
||||
|
|
@ -1198,4 +1188,15 @@
|
|||
#:|isForwardOnly|
|
||||
#:|isFrameFormat|
|
||||
#:|isFullScreen|
|
||||
#:|isGenerated(QString)|))
|
||||
#:|isGenerated(QString)|
|
||||
#:|isGenerated(int)|
|
||||
#:|isGenerated|
|
||||
#:|isGrayscale|
|
||||
#:|isGridVisible|
|
||||
#:|isGroupSeparatorShown|
|
||||
#:|isHeaderHidden|
|
||||
#:|isHidden|
|
||||
#:|isHttpOnly|
|
||||
#:|isIconVisibleInMenu|
|
||||
#:|isIdentifierEscaped|
|
||||
#:|isIdentity|))
|
||||
|
|
|
|||
|
|
@ -1,16 +1,5 @@
|
|||
(defpackage :eql
|
||||
(:export
|
||||
#:|isGenerated(int)|
|
||||
#:|isGenerated|
|
||||
#:|isGrayscale|
|
||||
#:|isGridVisible|
|
||||
#:|isGroupSeparatorShown|
|
||||
#:|isHeaderHidden|
|
||||
#:|isHidden|
|
||||
#:|isHttpOnly|
|
||||
#:|isIconVisibleInMenu|
|
||||
#:|isIdentifierEscaped|
|
||||
#:|isIdentity|
|
||||
#:|isImageFormat|
|
||||
#:|isInSubnet|
|
||||
#:|isInteractive|
|
||||
|
|
@ -278,7 +267,6 @@
|
|||
#:|lastScaleFactor|
|
||||
#:|lastScenePos|
|
||||
#:|lastScreenPos|
|
||||
#:|lastVisited|
|
||||
#:|lastWindowClosed|
|
||||
#:|last|
|
||||
#:|layers|
|
||||
|
|
@ -547,7 +535,6 @@
|
|||
#:|maximumFrameRate|
|
||||
#:|maximumHeightChanged|
|
||||
#:|maximumHeight|
|
||||
#:|maximumItemCount|
|
||||
#:|maximumLevelOfDetail|
|
||||
#:|maximumMargins|
|
||||
#:|maximumMipLevels|
|
||||
|
|
@ -683,7 +670,6 @@
|
|||
#:|moveColumns|
|
||||
#:|moveColumn|
|
||||
#:|moveCursor|
|
||||
#:|moveMedia|
|
||||
#:|movePosition|
|
||||
#:|moveRows|
|
||||
#:|moveRow|
|
||||
|
|
@ -840,7 +826,6 @@
|
|||
#:|orientation|
|
||||
#:|originChanged|
|
||||
#:|originCorner|
|
||||
#:|originalUrl|
|
||||
#:|originatingObject|
|
||||
#:|origin|
|
||||
#:|ortho(QRect)|
|
||||
|
|
@ -1199,4 +1184,19 @@
|
|||
#:|reindexDocumentation|
|
||||
#:|rejected|
|
||||
#:|reject|
|
||||
#:|relationModel|))
|
||||
#:|relationModel|
|
||||
#:|relation|
|
||||
#:|relativeFilePath|
|
||||
#:|releaseControl|
|
||||
#:|releaseKeyboard|
|
||||
#:|releaseMouse|
|
||||
#:|releaseResources|
|
||||
#:|releaseShortcut|
|
||||
#:|releaseWidget|
|
||||
#:|released|
|
||||
#:|release|
|
||||
#:|reload|
|
||||
#:|remainingTime|
|
||||
#:|remove.QFile|
|
||||
#:|remove.QPixmapCache|
|
||||
#:|removeAccessWhitelistEntry|))
|
||||
|
|
|
|||
|
|
@ -1,20 +1,5 @@
|
|||
(defpackage :eql
|
||||
(:export
|
||||
#:|relation|
|
||||
#:|relativeFilePath|
|
||||
#:|releaseControl|
|
||||
#:|releaseKeyboard|
|
||||
#:|releaseMouse|
|
||||
#:|releaseResources|
|
||||
#:|releaseShortcut|
|
||||
#:|releaseWidget|
|
||||
#:|released|
|
||||
#:|release|
|
||||
#:|reload|
|
||||
#:|remainingTime|
|
||||
#:|remove.QFile|
|
||||
#:|remove.QPixmapCache|
|
||||
#:|removeAccessWhitelistEntry|
|
||||
#:|removeAction|
|
||||
#:|removeAllApplicationFonts.QFontDatabase|
|
||||
#:|removeAllChildNodes|
|
||||
|
|
@ -110,7 +95,6 @@
|
|||
#:|reportContentOrientationChange|
|
||||
#:|requestActivate|
|
||||
#:|requestControl|
|
||||
#:|requestImageResponse|
|
||||
#:|requestImage|
|
||||
#:|requestPhase2|
|
||||
#:|requestPixmap|
|
||||
|
|
@ -511,7 +495,6 @@
|
|||
#:|setAudioBitRate|
|
||||
#:|setAudioCodec|
|
||||
#:|setAudioInput|
|
||||
#:|setAudioRole|
|
||||
#:|setAudioSettings|
|
||||
#:|setAuthority|
|
||||
#:|setAutoAperture|
|
||||
|
|
@ -789,7 +772,6 @@
|
|||
#:|setDefaultFormat.QSettings|
|
||||
#:|setDefaultFormat.QSurfaceFormat|
|
||||
#:|setDefaultInnerTessellationLevels|
|
||||
#:|setDefaultInterface.QWebHistoryInterface|
|
||||
#:|setDefaultOuterTessellationLevels|
|
||||
#:|setDefaultProperty|
|
||||
#:|setDefaultSectionSize|
|
||||
|
|
@ -1199,4 +1181,22 @@
|
|||
#:|setMargins|
|
||||
#:|setMargin|
|
||||
#:|setMask(QBitmap)|
|
||||
#:|setMask(QRegion)|))
|
||||
#:|setMask(QRegion)|
|
||||
#:|setMask|
|
||||
#:|setMaterial|
|
||||
#:|setMatrix|
|
||||
#:|setMaxCount|
|
||||
#:|setMaxLength|
|
||||
#:|setMaxPendingConnections|
|
||||
#:|setMaxVisibleItems|
|
||||
#:|setMaximumAnisotropy|
|
||||
#:|setMaximumBlockCount|
|
||||
#:|setMaximumCacheSize|
|
||||
#:|setMaximumDateTime|
|
||||
#:|setMaximumDate|
|
||||
#:|setMaximumFrameRate|
|
||||
#:|setMaximumHeight|
|
||||
#:|setMaximumLevelOfDetail|
|
||||
#:|setMaximumPagesInCache.QWebSettings|
|
||||
#:|setMaximumSectionSize|
|
||||
#:|setMaximumSize|))
|
||||
|
|
|
|||
|
|
@ -1,24 +1,5 @@
|
|||
(defpackage :eql
|
||||
(:export
|
||||
#:|setMask|
|
||||
#:|setMaterial|
|
||||
#:|setMatrix|
|
||||
#:|setMaxCount|
|
||||
#:|setMaxLength|
|
||||
#:|setMaxPendingConnections|
|
||||
#:|setMaxVisibleItems|
|
||||
#:|setMaximumAnisotropy|
|
||||
#:|setMaximumBlockCount|
|
||||
#:|setMaximumCacheSize|
|
||||
#:|setMaximumDateTime|
|
||||
#:|setMaximumDate|
|
||||
#:|setMaximumFrameRate|
|
||||
#:|setMaximumHeight|
|
||||
#:|setMaximumItemCount|
|
||||
#:|setMaximumLevelOfDetail|
|
||||
#:|setMaximumPagesInCache.QWebSettings|
|
||||
#:|setMaximumSectionSize|
|
||||
#:|setMaximumSize|
|
||||
#:|setMaximumTime|
|
||||
#:|setMaximumTouchPoints|
|
||||
#:|setMaximumWidth|
|
||||
|
|
@ -999,7 +980,6 @@
|
|||
#:|supportedActions|
|
||||
#:|supportedApertures|
|
||||
#:|supportedAudioCodecs|
|
||||
#:|supportedAudioRoles|
|
||||
#:|supportedAudioSampleRates|
|
||||
#:|supportedBits|
|
||||
#:|supportedBufferFormats|
|
||||
|
|
@ -1171,8 +1151,6 @@
|
|||
#:|textureByteCount|
|
||||
#:|textureChanged|
|
||||
#:|textureCoordinatesTransform|
|
||||
#:|textureFactoryForImage.QQuickTextureFactory|
|
||||
#:|textureFactory|
|
||||
#:|textureFollowsItemSizeChanged|
|
||||
#:|textureFollowsItemSize|
|
||||
#:|textureId|
|
||||
|
|
@ -1199,4 +1177,26 @@
|
|||
#:|timeout|
|
||||
#:|timerId|
|
||||
#:|timerType|
|
||||
#:|timestamp|))
|
||||
#:|timestamp|
|
||||
#:|time|
|
||||
#:|tip|
|
||||
#:|titleBarWidget|
|
||||
#:|titleChanged|
|
||||
#:|titleFormat|
|
||||
#:|title|
|
||||
#:|toAce.QUrl|
|
||||
#:|toAffine|
|
||||
#:|toBitArray|
|
||||
#:|toBlockFormat|
|
||||
#:|toBool|
|
||||
#:|toByteArray|
|
||||
#:|toCharFormat|
|
||||
#:|toChar|
|
||||
#:|toCmyk|
|
||||
#:|toCubicSpline|
|
||||
#:|toCurrencyString(double)|
|
||||
#:|toCurrencyString(double...)|
|
||||
#:|toCurrencyString(float)|
|
||||
#:|toCurrencyString(float...)|
|
||||
#:|toCurrencyString(int)|
|
||||
#:|toCurrencyString(int...)|))
|
||||
|
|
|
|||
|
|
@ -1,27 +1,5 @@
|
|||
(defpackage :eql
|
||||
(:export
|
||||
#:|time|
|
||||
#:|tip|
|
||||
#:|titleBarWidget|
|
||||
#:|titleChanged|
|
||||
#:|titleFormat|
|
||||
#:|title|
|
||||
#:|toAce.QUrl|
|
||||
#:|toAffine|
|
||||
#:|toBitArray|
|
||||
#:|toBlockFormat|
|
||||
#:|toBool|
|
||||
#:|toByteArray|
|
||||
#:|toCharFormat|
|
||||
#:|toChar|
|
||||
#:|toCmyk|
|
||||
#:|toCubicSpline|
|
||||
#:|toCurrencyString(double)|
|
||||
#:|toCurrencyString(double...)|
|
||||
#:|toCurrencyString(float)|
|
||||
#:|toCurrencyString(float...)|
|
||||
#:|toCurrencyString(int)|
|
||||
#:|toCurrencyString(int...)|
|
||||
#:|toCurrencyString(qlonglong)|
|
||||
#:|toCurrencyString(qlonglong...)|
|
||||
#:|toCurrencyString(qulonglong)|
|
||||
|
|
|
|||
|
|
@ -987,9 +987,6 @@
|
|||
(defun |audioRoleChanged| (object &rest arguments)
|
||||
(%qinvoke-method object nil "audioRoleChanged" arguments))
|
||||
|
||||
(defun |audioRole| (object &rest arguments)
|
||||
(%qinvoke-method object nil "audioRole" arguments))
|
||||
|
||||
(defun |audioSettings| (object &rest arguments)
|
||||
(%qinvoke-method object nil "audioSettings" arguments))
|
||||
|
||||
|
|
@ -1137,12 +1134,6 @@
|
|||
(defun |axis| (object &rest arguments)
|
||||
(%qinvoke-method object nil "axis" arguments))
|
||||
|
||||
(defun |backItems| (object &rest arguments)
|
||||
(%qinvoke-method object nil "backItems" arguments))
|
||||
|
||||
(defun |backItem| (object &rest arguments)
|
||||
(%qinvoke-method object nil "backItem" arguments))
|
||||
|
||||
(defun |backgroundBrush| (object &rest arguments)
|
||||
(%qinvoke-method object nil "backgroundBrush" arguments))
|
||||
|
||||
|
|
@ -1758,12 +1749,6 @@
|
|||
(defun |canFetchMore| (object &rest arguments)
|
||||
(%qinvoke-method object nil "canFetchMore" arguments))
|
||||
|
||||
(defun |canGoBack| (object &rest arguments)
|
||||
(%qinvoke-method object nil "canGoBack" arguments))
|
||||
|
||||
(defun |canGoForward| (object &rest arguments)
|
||||
(%qinvoke-method object nil "canGoForward" arguments))
|
||||
|
||||
(defun |canPaste| (object &rest arguments)
|
||||
(%qinvoke-method object nil "canPaste" arguments))
|
||||
|
||||
|
|
@ -3066,9 +3051,6 @@
|
|||
(defun |currentItemChanged| (object &rest arguments)
|
||||
(%qinvoke-method object nil "currentItemChanged" arguments))
|
||||
|
||||
(defun |currentItemIndex| (object &rest arguments)
|
||||
(%qinvoke-method object nil "currentItemIndex" arguments))
|
||||
|
||||
(defun |currentItem| (object &rest arguments)
|
||||
(%qinvoke-method object nil "currentItem" arguments))
|
||||
|
||||
|
|
@ -3417,9 +3399,6 @@
|
|||
(defun |defaultInputDevice.QAudioDeviceInfo| (&rest arguments)
|
||||
(%qinvoke-method "QAudioDeviceInfo" nil "defaultInputDevice" arguments))
|
||||
|
||||
(defun |defaultInterface.QWebHistoryInterface| (&rest arguments)
|
||||
(%qinvoke-method "QWebHistoryInterface" nil "defaultInterface" arguments))
|
||||
|
||||
(defun |defaultOuterTessellationLevels| (object &rest arguments)
|
||||
(%qinvoke-method object nil "defaultOuterTessellationLevels" arguments))
|
||||
|
||||
|
|
@ -3599,3 +3578,24 @@
|
|||
|
||||
(defun |directories| (object &rest arguments)
|
||||
(%qinvoke-method object nil "directories" arguments))
|
||||
|
||||
(defun |directoryChanged| (object &rest arguments)
|
||||
(%qinvoke-method object nil "directoryChanged" arguments))
|
||||
|
||||
(defun |directoryEntered| (object &rest arguments)
|
||||
(%qinvoke-method object nil "directoryEntered" arguments))
|
||||
|
||||
(defun |directoryLoaded| (object &rest arguments)
|
||||
(%qinvoke-method object nil "directoryLoaded" arguments))
|
||||
|
||||
(defun |directoryUrlEntered| (object &rest arguments)
|
||||
(%qinvoke-method object nil "directoryUrlEntered" arguments))
|
||||
|
||||
(defun |directoryUrl| (object &rest arguments)
|
||||
(%qinvoke-method object nil "directoryUrl" arguments))
|
||||
|
||||
(defun |directory| (object &rest arguments)
|
||||
(%qinvoke-method object nil "directory" arguments))
|
||||
|
||||
(defun |dirtyRegionOffset| (object &rest arguments)
|
||||
(%qinvoke-method object nil "dirtyRegionOffset" arguments))
|
||||
|
|
|
|||
|
|
@ -1,26 +1,5 @@
|
|||
(in-package :eql)
|
||||
|
||||
(defun |directoryChanged| (object &rest arguments)
|
||||
(%qinvoke-method object nil "directoryChanged" arguments))
|
||||
|
||||
(defun |directoryEntered| (object &rest arguments)
|
||||
(%qinvoke-method object nil "directoryEntered" arguments))
|
||||
|
||||
(defun |directoryLoaded| (object &rest arguments)
|
||||
(%qinvoke-method object nil "directoryLoaded" arguments))
|
||||
|
||||
(defun |directoryUrlEntered| (object &rest arguments)
|
||||
(%qinvoke-method object nil "directoryUrlEntered" arguments))
|
||||
|
||||
(defun |directoryUrl| (object &rest arguments)
|
||||
(%qinvoke-method object nil "directoryUrl" arguments))
|
||||
|
||||
(defun |directory| (object &rest arguments)
|
||||
(%qinvoke-method object nil "directory" arguments))
|
||||
|
||||
(defun |dirtyRegionOffset| (object &rest arguments)
|
||||
(%qinvoke-method object nil "dirtyRegionOffset" arguments))
|
||||
|
||||
(defun |dir| (object &rest arguments)
|
||||
(%qinvoke-method object nil "dir" arguments))
|
||||
|
||||
|
|
@ -1629,12 +1608,6 @@
|
|||
(defun |forwardHistoryCount| (object &rest arguments)
|
||||
(%qinvoke-method object nil "forwardHistoryCount" arguments))
|
||||
|
||||
(defun |forwardItems| (object &rest arguments)
|
||||
(%qinvoke-method object nil "forwardItems" arguments))
|
||||
|
||||
(defun |forwardItem| (object &rest arguments)
|
||||
(%qinvoke-method object nil "forwardItem" arguments))
|
||||
|
||||
(defun |forwardUnsupportedContent| (object &rest arguments)
|
||||
(%qinvoke-method object nil "forwardUnsupportedContent" arguments))
|
||||
|
||||
|
|
@ -2052,9 +2025,6 @@
|
|||
(defun |glyphRuns| (object &rest arguments)
|
||||
(%qinvoke-method object nil "glyphRuns" arguments))
|
||||
|
||||
(defun |goToItem| (object &rest arguments)
|
||||
(%qinvoke-method object nil "goToItem" arguments))
|
||||
|
||||
(defun |gotFocus| (object &rest arguments)
|
||||
(%qinvoke-method object nil "gotFocus" arguments))
|
||||
|
||||
|
|
@ -3596,3 +3566,36 @@
|
|||
|
||||
(defun |isGenerated(QString)| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isGenerated(QString)" arguments))
|
||||
|
||||
(defun |isGenerated(int)| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isGenerated(int)" arguments))
|
||||
|
||||
(defun |isGenerated| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isGenerated" arguments))
|
||||
|
||||
(defun |isGrayscale| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isGrayscale" arguments))
|
||||
|
||||
(defun |isGridVisible| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isGridVisible" arguments))
|
||||
|
||||
(defun |isGroupSeparatorShown| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isGroupSeparatorShown" arguments))
|
||||
|
||||
(defun |isHeaderHidden| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isHeaderHidden" arguments))
|
||||
|
||||
(defun |isHidden| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isHidden" arguments))
|
||||
|
||||
(defun |isHttpOnly| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isHttpOnly" arguments))
|
||||
|
||||
(defun |isIconVisibleInMenu| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isIconVisibleInMenu" arguments))
|
||||
|
||||
(defun |isIdentifierEscaped| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isIdentifierEscaped" arguments))
|
||||
|
||||
(defun |isIdentity| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isIdentity" arguments))
|
||||
|
|
|
|||
|
|
@ -1,38 +1,5 @@
|
|||
(in-package :eql)
|
||||
|
||||
(defun |isGenerated(int)| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isGenerated(int)" arguments))
|
||||
|
||||
(defun |isGenerated| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isGenerated" arguments))
|
||||
|
||||
(defun |isGrayscale| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isGrayscale" arguments))
|
||||
|
||||
(defun |isGridVisible| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isGridVisible" arguments))
|
||||
|
||||
(defun |isGroupSeparatorShown| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isGroupSeparatorShown" arguments))
|
||||
|
||||
(defun |isHeaderHidden| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isHeaderHidden" arguments))
|
||||
|
||||
(defun |isHidden| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isHidden" arguments))
|
||||
|
||||
(defun |isHttpOnly| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isHttpOnly" arguments))
|
||||
|
||||
(defun |isIconVisibleInMenu| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isIconVisibleInMenu" arguments))
|
||||
|
||||
(defun |isIdentifierEscaped| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isIdentifierEscaped" arguments))
|
||||
|
||||
(defun |isIdentity| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isIdentity" arguments))
|
||||
|
||||
(defun |isImageFormat| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isImageFormat" arguments))
|
||||
|
||||
|
|
@ -834,9 +801,6 @@
|
|||
(defun |lastScreenPos| (object &rest arguments)
|
||||
(%qinvoke-method object nil "lastScreenPos" arguments))
|
||||
|
||||
(defun |lastVisited| (object &rest arguments)
|
||||
(%qinvoke-method object nil "lastVisited" arguments))
|
||||
|
||||
(defun |lastWindowClosed| (object &rest arguments)
|
||||
(%qinvoke-method object nil "lastWindowClosed" arguments))
|
||||
|
||||
|
|
@ -1641,9 +1605,6 @@
|
|||
(defun |maximumHeight| (object &rest arguments)
|
||||
(%qinvoke-method object nil "maximumHeight" arguments))
|
||||
|
||||
(defun |maximumItemCount| (object &rest arguments)
|
||||
(%qinvoke-method object nil "maximumItemCount" arguments))
|
||||
|
||||
(defun |maximumLevelOfDetail| (object &rest arguments)
|
||||
(%qinvoke-method object nil "maximumLevelOfDetail" arguments))
|
||||
|
||||
|
|
@ -2049,9 +2010,6 @@
|
|||
(defun |moveCursor| (object &rest arguments)
|
||||
(%qinvoke-method object nil "moveCursor" arguments))
|
||||
|
||||
(defun |moveMedia| (object &rest arguments)
|
||||
(%qinvoke-method object nil "moveMedia" arguments))
|
||||
|
||||
(defun |movePosition| (object &rest arguments)
|
||||
(%qinvoke-method object nil "movePosition" arguments))
|
||||
|
||||
|
|
@ -2520,9 +2478,6 @@
|
|||
(defun |originCorner| (object &rest arguments)
|
||||
(%qinvoke-method object nil "originCorner" arguments))
|
||||
|
||||
(defun |originalUrl| (object &rest arguments)
|
||||
(%qinvoke-method object nil "originalUrl" arguments))
|
||||
|
||||
(defun |originatingObject| (object &rest arguments)
|
||||
(%qinvoke-method object nil "originatingObject" arguments))
|
||||
|
||||
|
|
@ -3599,3 +3554,48 @@
|
|||
|
||||
(defun |relationModel| (object &rest arguments)
|
||||
(%qinvoke-method object nil "relationModel" arguments))
|
||||
|
||||
(defun |relation| (object &rest arguments)
|
||||
(%qinvoke-method object nil "relation" arguments))
|
||||
|
||||
(defun |relativeFilePath| (object &rest arguments)
|
||||
(%qinvoke-method object nil "relativeFilePath" arguments))
|
||||
|
||||
(defun |releaseControl| (object &rest arguments)
|
||||
(%qinvoke-method object nil "releaseControl" arguments))
|
||||
|
||||
(defun |releaseKeyboard| (object &rest arguments)
|
||||
(%qinvoke-method object nil "releaseKeyboard" arguments))
|
||||
|
||||
(defun |releaseMouse| (object &rest arguments)
|
||||
(%qinvoke-method object nil "releaseMouse" arguments))
|
||||
|
||||
(defun |releaseResources| (object &rest arguments)
|
||||
(%qinvoke-method object nil "releaseResources" arguments))
|
||||
|
||||
(defun |releaseShortcut| (object &rest arguments)
|
||||
(%qinvoke-method object nil "releaseShortcut" arguments))
|
||||
|
||||
(defun |releaseWidget| (object &rest arguments)
|
||||
(%qinvoke-method object nil "releaseWidget" arguments))
|
||||
|
||||
(defun |released| (object &rest arguments)
|
||||
(%qinvoke-method object nil "released" arguments))
|
||||
|
||||
(defun |release| (object &rest arguments)
|
||||
(%qinvoke-method object nil "release" arguments))
|
||||
|
||||
(defun |reload| (object &rest arguments)
|
||||
(%qinvoke-method object nil "reload" arguments))
|
||||
|
||||
(defun |remainingTime| (object &rest arguments)
|
||||
(%qinvoke-method object nil "remainingTime" arguments))
|
||||
|
||||
(defun |remove.QFile| (&rest arguments)
|
||||
(%qinvoke-method "QFile" nil "remove" arguments))
|
||||
|
||||
(defun |remove.QPixmapCache| (&rest arguments)
|
||||
(%qinvoke-method "QPixmapCache" nil "remove" arguments))
|
||||
|
||||
(defun |removeAccessWhitelistEntry| (object &rest arguments)
|
||||
(%qinvoke-method object nil "removeAccessWhitelistEntry" arguments))
|
||||
|
|
|
|||
147
src/lisp/all-wrappers-webengine-1.lisp
Normal file
147
src/lisp/all-wrappers-webengine-1.lisp
Normal file
|
|
@ -0,0 +1,147 @@
|
|||
(defpackage :eql
|
||||
(:export
|
||||
#:|accept|
|
||||
#:|action|
|
||||
#:|audioMutedChanged|
|
||||
#:|authenticationRequired|
|
||||
#:|backgroundColor|
|
||||
#:|back|
|
||||
#:|cachePath|
|
||||
#:|cancel|
|
||||
#:|clearAllVisitedLinks|
|
||||
#:|clearHttpCache|
|
||||
#:|clearVisitedLinks|
|
||||
#:|contentsSizeChanged|
|
||||
#:|contentsSize|
|
||||
#:|contextMenuData|
|
||||
#:|cookieAdded|
|
||||
#:|cookieRemoved|
|
||||
#:|cookieStore|
|
||||
#:|createStandardContextMenu|
|
||||
#:|defaultProfile.QWebEngineProfile|
|
||||
#:|deleteAllCookies|
|
||||
#:|deleteCookie|
|
||||
#:|deleteSessionCookies|
|
||||
#:|destroyedUrlSchemeHandler|
|
||||
#:|downloadProgress|
|
||||
#:|downloadRequested|
|
||||
#:|errorDescription|
|
||||
#:|error|
|
||||
#:|event|
|
||||
#:|fail|
|
||||
#:|featurePermissionRequestCanceled|
|
||||
#:|featurePermissionRequested|
|
||||
#:|findText|
|
||||
#:|finished|
|
||||
#:|forward|
|
||||
#:|fullScreenRequested|
|
||||
#:|geometryChangeRequested|
|
||||
#:|hasSelection|
|
||||
#:|httpAcceptLanguage|
|
||||
#:|httpCacheMaximumSize|
|
||||
#:|httpCacheType|
|
||||
#:|httpUserAgent|
|
||||
#:|iconChanged|
|
||||
#:|iconUrlChanged|
|
||||
#:|iconUrl|
|
||||
#:|icon|
|
||||
#:|id|
|
||||
#:|injectionPoint|
|
||||
#:|interceptRequest|
|
||||
#:|isAudioMuted|
|
||||
#:|isFinished|
|
||||
#:|isNull|
|
||||
#:|isOffTheRecord|
|
||||
#:|isOverridable|
|
||||
#:|isSpellCheckEnabled|
|
||||
#:|linkHovered|
|
||||
#:|loadAllCookies|
|
||||
#:|loadFinished|
|
||||
#:|loadProgress|
|
||||
#:|loadStarted|
|
||||
#:|load|
|
||||
#:|mimeType|
|
||||
#:|name|
|
||||
#:|origin|
|
||||
#:|pageAction|
|
||||
#:|page|
|
||||
#:|path|
|
||||
#:|persistentCookiesPolicy|
|
||||
#:|persistentStoragePath|
|
||||
#:|printToPdf|
|
||||
#:|profile|
|
||||
#:|proxyAuthenticationRequired|
|
||||
#:|receivedBytes|
|
||||
#:|recentlyAudibleChanged|
|
||||
#:|recentlyAudible|
|
||||
#:|redirect|
|
||||
#:|reject|
|
||||
#:|reload|
|
||||
#:|removeUrlScheme|
|
||||
#:|renderProcessTerminated|
|
||||
#:|replaceMisspelledWord|
|
||||
#:|requestMethod|
|
||||
#:|requestStarted|
|
||||
#:|requestUrl|
|
||||
#:|requestedUrl|
|
||||
#:|runJavaScript|
|
||||
#:|runsOnSubFrames|
|
||||
#:|savePageFormat|
|
||||
#:|save|
|
||||
#:|scripts|
|
||||
#:|scrollPositionChanged|
|
||||
#:|scrollPosition|
|
||||
#:|selectedText|
|
||||
#:|selectionChanged|
|
||||
#:|setAudioMuted|
|
||||
#:|setBackgroundColor|
|
||||
#:|setCachePath|
|
||||
#:|setContent|
|
||||
#:|setCookie|
|
||||
#:|setFeaturePermission|
|
||||
#:|setHtml|
|
||||
#:|setHttpAcceptLanguage|
|
||||
#:|setHttpCacheMaximumSize|
|
||||
#:|setHttpCacheType|
|
||||
#:|setHttpUserAgent|
|
||||
#:|setInjectionPoint|
|
||||
#:|setName|
|
||||
#:|setPage|
|
||||
#:|setPath|
|
||||
#:|setPersistentCookiesPolicy|
|
||||
#:|setPersistentStoragePath|
|
||||
#:|setRequestInterceptor|
|
||||
#:|setRunsOnSubFrames|
|
||||
#:|setSavePageFormat|
|
||||
#:|setSourceCode|
|
||||
#:|setSpellCheckEnabled|
|
||||
#:|setSpellCheckLanguages|
|
||||
#:|setUrl|
|
||||
#:|setView|
|
||||
#:|setWebChannel|
|
||||
#:|setWorldId|
|
||||
#:|setZoomFactor|
|
||||
#:|settings|
|
||||
#:|sizeHint|
|
||||
#:|sourceCode|
|
||||
#:|spellCheckLanguages|
|
||||
#:|stateChanged|
|
||||
#:|state|
|
||||
#:|stop|
|
||||
#:|storageName|
|
||||
#:|swap|
|
||||
#:|titleChanged|
|
||||
#:|title|
|
||||
#:|toggleOn|
|
||||
#:|totalBytes|
|
||||
#:|triggerAction|
|
||||
#:|triggerPageAction|
|
||||
#:|type|
|
||||
#:|urlChanged|
|
||||
#:|url|
|
||||
#:|view|
|
||||
#:|visitedLinksContainsUrl|
|
||||
#:|webChannel|
|
||||
#:|windowCloseRequested|
|
||||
#:|worldId|
|
||||
#:|zoomFactor|))
|
||||
436
src/lisp/all-wrappers-webengine-2.lisp
Normal file
436
src/lisp/all-wrappers-webengine-2.lisp
Normal file
|
|
@ -0,0 +1,436 @@
|
|||
(in-package :eql)
|
||||
|
||||
(defun |accept| (object &rest arguments)
|
||||
(%qinvoke-method object nil "accept" arguments))
|
||||
|
||||
(defun |action| (object &rest arguments)
|
||||
(%qinvoke-method object nil "action" arguments))
|
||||
|
||||
(defun |audioMutedChanged| (object &rest arguments)
|
||||
(%qinvoke-method object nil "audioMutedChanged" arguments))
|
||||
|
||||
(defun |authenticationRequired| (object &rest arguments)
|
||||
(%qinvoke-method object nil "authenticationRequired" arguments))
|
||||
|
||||
(defun |backgroundColor| (object &rest arguments)
|
||||
(%qinvoke-method object nil "backgroundColor" arguments))
|
||||
|
||||
(defun |back| (object &rest arguments)
|
||||
(%qinvoke-method object nil "back" arguments))
|
||||
|
||||
(defun |cachePath| (object &rest arguments)
|
||||
(%qinvoke-method object nil "cachePath" arguments))
|
||||
|
||||
(defun |cancel| (object &rest arguments)
|
||||
(%qinvoke-method object nil "cancel" arguments))
|
||||
|
||||
(defun |clearAllVisitedLinks| (object &rest arguments)
|
||||
(%qinvoke-method object nil "clearAllVisitedLinks" arguments))
|
||||
|
||||
(defun |clearHttpCache| (object &rest arguments)
|
||||
(%qinvoke-method object nil "clearHttpCache" arguments))
|
||||
|
||||
(defun |clearVisitedLinks| (object &rest arguments)
|
||||
(%qinvoke-method object nil "clearVisitedLinks" arguments))
|
||||
|
||||
(defun |contentsSizeChanged| (object &rest arguments)
|
||||
(%qinvoke-method object nil "contentsSizeChanged" arguments))
|
||||
|
||||
(defun |contentsSize| (object &rest arguments)
|
||||
(%qinvoke-method object nil "contentsSize" arguments))
|
||||
|
||||
(defun |contextMenuData| (object &rest arguments)
|
||||
(%qinvoke-method object nil "contextMenuData" arguments))
|
||||
|
||||
(defun |cookieAdded| (object &rest arguments)
|
||||
(%qinvoke-method object nil "cookieAdded" arguments))
|
||||
|
||||
(defun |cookieRemoved| (object &rest arguments)
|
||||
(%qinvoke-method object nil "cookieRemoved" arguments))
|
||||
|
||||
(defun |cookieStore| (object &rest arguments)
|
||||
(%qinvoke-method object nil "cookieStore" arguments))
|
||||
|
||||
(defun |createStandardContextMenu| (object &rest arguments)
|
||||
(%qinvoke-method object nil "createStandardContextMenu" arguments))
|
||||
|
||||
(defun |defaultProfile.QWebEngineProfile| (&rest arguments)
|
||||
(%qinvoke-method "QWebEngineProfile" nil "defaultProfile" arguments))
|
||||
|
||||
(defun |deleteAllCookies| (object &rest arguments)
|
||||
(%qinvoke-method object nil "deleteAllCookies" arguments))
|
||||
|
||||
(defun |deleteCookie| (object &rest arguments)
|
||||
(%qinvoke-method object nil "deleteCookie" arguments))
|
||||
|
||||
(defun |deleteSessionCookies| (object &rest arguments)
|
||||
(%qinvoke-method object nil "deleteSessionCookies" arguments))
|
||||
|
||||
(defun |destroyedUrlSchemeHandler| (object &rest arguments)
|
||||
(%qinvoke-method object nil "destroyedUrlSchemeHandler" arguments))
|
||||
|
||||
(defun |downloadProgress| (object &rest arguments)
|
||||
(%qinvoke-method object nil "downloadProgress" arguments))
|
||||
|
||||
(defun |downloadRequested| (object &rest arguments)
|
||||
(%qinvoke-method object nil "downloadRequested" arguments))
|
||||
|
||||
(defun |errorDescription| (object &rest arguments)
|
||||
(%qinvoke-method object nil "errorDescription" arguments))
|
||||
|
||||
(defun |error| (object &rest arguments)
|
||||
(%qinvoke-method object nil "error" arguments))
|
||||
|
||||
(defun |event| (object &rest arguments)
|
||||
(%qinvoke-method object nil "event" arguments))
|
||||
|
||||
(defun |fail| (object &rest arguments)
|
||||
(%qinvoke-method object nil "fail" arguments))
|
||||
|
||||
(defun |featurePermissionRequestCanceled| (object &rest arguments)
|
||||
(%qinvoke-method object nil "featurePermissionRequestCanceled" arguments))
|
||||
|
||||
(defun |featurePermissionRequested| (object &rest arguments)
|
||||
(%qinvoke-method object nil "featurePermissionRequested" arguments))
|
||||
|
||||
(defun |findText| (object &rest arguments)
|
||||
(%qinvoke-method object nil "findText" arguments))
|
||||
|
||||
(defun |finished| (object &rest arguments)
|
||||
(%qinvoke-method object nil "finished" arguments))
|
||||
|
||||
(defun |forward| (object &rest arguments)
|
||||
(%qinvoke-method object nil "forward" arguments))
|
||||
|
||||
(defun |fullScreenRequested| (object &rest arguments)
|
||||
(%qinvoke-method object nil "fullScreenRequested" arguments))
|
||||
|
||||
(defun |geometryChangeRequested| (object &rest arguments)
|
||||
(%qinvoke-method object nil "geometryChangeRequested" arguments))
|
||||
|
||||
(defun |hasSelection| (object &rest arguments)
|
||||
(%qinvoke-method object nil "hasSelection" arguments))
|
||||
|
||||
(defun |httpAcceptLanguage| (object &rest arguments)
|
||||
(%qinvoke-method object nil "httpAcceptLanguage" arguments))
|
||||
|
||||
(defun |httpCacheMaximumSize| (object &rest arguments)
|
||||
(%qinvoke-method object nil "httpCacheMaximumSize" arguments))
|
||||
|
||||
(defun |httpCacheType| (object &rest arguments)
|
||||
(%qinvoke-method object nil "httpCacheType" arguments))
|
||||
|
||||
(defun |httpUserAgent| (object &rest arguments)
|
||||
(%qinvoke-method object nil "httpUserAgent" arguments))
|
||||
|
||||
(defun |iconChanged| (object &rest arguments)
|
||||
(%qinvoke-method object nil "iconChanged" arguments))
|
||||
|
||||
(defun |iconUrlChanged| (object &rest arguments)
|
||||
(%qinvoke-method object nil "iconUrlChanged" arguments))
|
||||
|
||||
(defun |iconUrl| (object &rest arguments)
|
||||
(%qinvoke-method object nil "iconUrl" arguments))
|
||||
|
||||
(defun |icon| (object &rest arguments)
|
||||
(%qinvoke-method object nil "icon" arguments))
|
||||
|
||||
(defun |id| (object &rest arguments)
|
||||
(%qinvoke-method object nil "id" arguments))
|
||||
|
||||
(defun |injectionPoint| (object &rest arguments)
|
||||
(%qinvoke-method object nil "injectionPoint" arguments))
|
||||
|
||||
(defun |interceptRequest| (object &rest arguments)
|
||||
(%qinvoke-method object nil "interceptRequest" arguments))
|
||||
|
||||
(defun |isAudioMuted| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isAudioMuted" arguments))
|
||||
|
||||
(defun |isFinished| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isFinished" arguments))
|
||||
|
||||
(defun |isNull| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isNull" arguments))
|
||||
|
||||
(defun |isOffTheRecord| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isOffTheRecord" arguments))
|
||||
|
||||
(defun |isOverridable| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isOverridable" arguments))
|
||||
|
||||
(defun |isSpellCheckEnabled| (object &rest arguments)
|
||||
(%qinvoke-method object nil "isSpellCheckEnabled" arguments))
|
||||
|
||||
(defun |linkHovered| (object &rest arguments)
|
||||
(%qinvoke-method object nil "linkHovered" arguments))
|
||||
|
||||
(defun |loadAllCookies| (object &rest arguments)
|
||||
(%qinvoke-method object nil "loadAllCookies" arguments))
|
||||
|
||||
(defun |loadFinished| (object &rest arguments)
|
||||
(%qinvoke-method object nil "loadFinished" arguments))
|
||||
|
||||
(defun |loadProgress| (object &rest arguments)
|
||||
(%qinvoke-method object nil "loadProgress" arguments))
|
||||
|
||||
(defun |loadStarted| (object &rest arguments)
|
||||
(%qinvoke-method object nil "loadStarted" arguments))
|
||||
|
||||
(defun |load| (object &rest arguments)
|
||||
(%qinvoke-method object nil "load" arguments))
|
||||
|
||||
(defun |mimeType| (object &rest arguments)
|
||||
(%qinvoke-method object nil "mimeType" arguments))
|
||||
|
||||
(defun |name| (object &rest arguments)
|
||||
(%qinvoke-method object nil "name" arguments))
|
||||
|
||||
(defun |origin| (object &rest arguments)
|
||||
(%qinvoke-method object nil "origin" arguments))
|
||||
|
||||
(defun |pageAction| (object &rest arguments)
|
||||
(%qinvoke-method object nil "pageAction" arguments))
|
||||
|
||||
(defun |page| (object &rest arguments)
|
||||
(%qinvoke-method object nil "page" arguments))
|
||||
|
||||
(defun |path| (object &rest arguments)
|
||||
(%qinvoke-method object nil "path" arguments))
|
||||
|
||||
(defun |persistentCookiesPolicy| (object &rest arguments)
|
||||
(%qinvoke-method object nil "persistentCookiesPolicy" arguments))
|
||||
|
||||
(defun |persistentStoragePath| (object &rest arguments)
|
||||
(%qinvoke-method object nil "persistentStoragePath" arguments))
|
||||
|
||||
(defun |printToPdf| (object &rest arguments)
|
||||
(%qinvoke-method object nil "printToPdf" arguments))
|
||||
|
||||
(defun |profile| (object &rest arguments)
|
||||
(%qinvoke-method object nil "profile" arguments))
|
||||
|
||||
(defun |proxyAuthenticationRequired| (object &rest arguments)
|
||||
(%qinvoke-method object nil "proxyAuthenticationRequired" arguments))
|
||||
|
||||
(defun |receivedBytes| (object &rest arguments)
|
||||
(%qinvoke-method object nil "receivedBytes" arguments))
|
||||
|
||||
(defun |recentlyAudibleChanged| (object &rest arguments)
|
||||
(%qinvoke-method object nil "recentlyAudibleChanged" arguments))
|
||||
|
||||
(defun |recentlyAudible| (object &rest arguments)
|
||||
(%qinvoke-method object nil "recentlyAudible" arguments))
|
||||
|
||||
(defun |redirect| (object &rest arguments)
|
||||
(%qinvoke-method object nil "redirect" arguments))
|
||||
|
||||
(defun |reject| (object &rest arguments)
|
||||
(%qinvoke-method object nil "reject" arguments))
|
||||
|
||||
(defun |reload| (object &rest arguments)
|
||||
(%qinvoke-method object nil "reload" arguments))
|
||||
|
||||
(defun |removeUrlScheme| (object &rest arguments)
|
||||
(%qinvoke-method object nil "removeUrlScheme" arguments))
|
||||
|
||||
(defun |renderProcessTerminated| (object &rest arguments)
|
||||
(%qinvoke-method object nil "renderProcessTerminated" arguments))
|
||||
|
||||
(defun |replaceMisspelledWord| (object &rest arguments)
|
||||
(%qinvoke-method object nil "replaceMisspelledWord" arguments))
|
||||
|
||||
(defun |requestMethod| (object &rest arguments)
|
||||
(%qinvoke-method object nil "requestMethod" arguments))
|
||||
|
||||
(defun |requestStarted| (object &rest arguments)
|
||||
(%qinvoke-method object nil "requestStarted" arguments))
|
||||
|
||||
(defun |requestUrl| (object &rest arguments)
|
||||
(%qinvoke-method object nil "requestUrl" arguments))
|
||||
|
||||
(defun |requestedUrl| (object &rest arguments)
|
||||
(%qinvoke-method object nil "requestedUrl" arguments))
|
||||
|
||||
(defun |runJavaScript| (object &rest arguments)
|
||||
(%qinvoke-method object nil "runJavaScript" arguments))
|
||||
|
||||
(defun |runsOnSubFrames| (object &rest arguments)
|
||||
(%qinvoke-method object nil "runsOnSubFrames" arguments))
|
||||
|
||||
(defun |savePageFormat| (object &rest arguments)
|
||||
(%qinvoke-method object nil "savePageFormat" arguments))
|
||||
|
||||
(defun |save| (object &rest arguments)
|
||||
(%qinvoke-method object nil "save" arguments))
|
||||
|
||||
(defun |scripts| (object &rest arguments)
|
||||
(%qinvoke-method object nil "scripts" arguments))
|
||||
|
||||
(defun |scrollPositionChanged| (object &rest arguments)
|
||||
(%qinvoke-method object nil "scrollPositionChanged" arguments))
|
||||
|
||||
(defun |scrollPosition| (object &rest arguments)
|
||||
(%qinvoke-method object nil "scrollPosition" arguments))
|
||||
|
||||
(defun |selectedText| (object &rest arguments)
|
||||
(%qinvoke-method object nil "selectedText" arguments))
|
||||
|
||||
(defun |selectionChanged| (object &rest arguments)
|
||||
(%qinvoke-method object nil "selectionChanged" arguments))
|
||||
|
||||
(defun |setAudioMuted| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setAudioMuted" arguments))
|
||||
|
||||
(defun |setBackgroundColor| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setBackgroundColor" arguments))
|
||||
|
||||
(defun |setCachePath| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setCachePath" arguments))
|
||||
|
||||
(defun |setContent| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setContent" arguments))
|
||||
|
||||
(defun |setCookie| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setCookie" arguments))
|
||||
|
||||
(defun |setFeaturePermission| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setFeaturePermission" arguments))
|
||||
|
||||
(defun |setHtml| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setHtml" arguments))
|
||||
|
||||
(defun |setHttpAcceptLanguage| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setHttpAcceptLanguage" arguments))
|
||||
|
||||
(defun |setHttpCacheMaximumSize| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setHttpCacheMaximumSize" arguments))
|
||||
|
||||
(defun |setHttpCacheType| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setHttpCacheType" arguments))
|
||||
|
||||
(defun |setHttpUserAgent| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setHttpUserAgent" arguments))
|
||||
|
||||
(defun |setInjectionPoint| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setInjectionPoint" arguments))
|
||||
|
||||
(defun |setName| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setName" arguments))
|
||||
|
||||
(defun |setPage| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setPage" arguments))
|
||||
|
||||
(defun |setPath| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setPath" arguments))
|
||||
|
||||
(defun |setPersistentCookiesPolicy| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setPersistentCookiesPolicy" arguments))
|
||||
|
||||
(defun |setPersistentStoragePath| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setPersistentStoragePath" arguments))
|
||||
|
||||
(defun |setRequestInterceptor| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setRequestInterceptor" arguments))
|
||||
|
||||
(defun |setRunsOnSubFrames| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setRunsOnSubFrames" arguments))
|
||||
|
||||
(defun |setSavePageFormat| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setSavePageFormat" arguments))
|
||||
|
||||
(defun |setSourceCode| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setSourceCode" arguments))
|
||||
|
||||
(defun |setSpellCheckEnabled| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setSpellCheckEnabled" arguments))
|
||||
|
||||
(defun |setSpellCheckLanguages| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setSpellCheckLanguages" arguments))
|
||||
|
||||
(defun |setUrl| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setUrl" arguments))
|
||||
|
||||
(defun |setView| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setView" arguments))
|
||||
|
||||
(defun |setWebChannel| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setWebChannel" arguments))
|
||||
|
||||
(defun |setWorldId| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setWorldId" arguments))
|
||||
|
||||
(defun |setZoomFactor| (object &rest arguments)
|
||||
(%qinvoke-method object nil "setZoomFactor" arguments))
|
||||
|
||||
(defun |settings| (object &rest arguments)
|
||||
(%qinvoke-method object nil "settings" arguments))
|
||||
|
||||
(defun |sizeHint| (object &rest arguments)
|
||||
(%qinvoke-method object nil "sizeHint" arguments))
|
||||
|
||||
(defun |sourceCode| (object &rest arguments)
|
||||
(%qinvoke-method object nil "sourceCode" arguments))
|
||||
|
||||
(defun |spellCheckLanguages| (object &rest arguments)
|
||||
(%qinvoke-method object nil "spellCheckLanguages" arguments))
|
||||
|
||||
(defun |stateChanged| (object &rest arguments)
|
||||
(%qinvoke-method object nil "stateChanged" arguments))
|
||||
|
||||
(defun |state| (object &rest arguments)
|
||||
(%qinvoke-method object nil "state" arguments))
|
||||
|
||||
(defun |stop| (object &rest arguments)
|
||||
(%qinvoke-method object nil "stop" arguments))
|
||||
|
||||
(defun |storageName| (object &rest arguments)
|
||||
(%qinvoke-method object nil "storageName" arguments))
|
||||
|
||||
(defun |swap| (object &rest arguments)
|
||||
(%qinvoke-method object nil "swap" arguments))
|
||||
|
||||
(defun |titleChanged| (object &rest arguments)
|
||||
(%qinvoke-method object nil "titleChanged" arguments))
|
||||
|
||||
(defun |title| (object &rest arguments)
|
||||
(%qinvoke-method object nil "title" arguments))
|
||||
|
||||
(defun |toggleOn| (object &rest arguments)
|
||||
(%qinvoke-method object nil "toggleOn" arguments))
|
||||
|
||||
(defun |totalBytes| (object &rest arguments)
|
||||
(%qinvoke-method object nil "totalBytes" arguments))
|
||||
|
||||
(defun |triggerAction| (object &rest arguments)
|
||||
(%qinvoke-method object nil "triggerAction" arguments))
|
||||
|
||||
(defun |triggerPageAction| (object &rest arguments)
|
||||
(%qinvoke-method object nil "triggerPageAction" arguments))
|
||||
|
||||
(defun |type| (object &rest arguments)
|
||||
(%qinvoke-method object nil "type" arguments))
|
||||
|
||||
(defun |urlChanged| (object &rest arguments)
|
||||
(%qinvoke-method object nil "urlChanged" arguments))
|
||||
|
||||
(defun |url| (object &rest arguments)
|
||||
(%qinvoke-method object nil "url" arguments))
|
||||
|
||||
(defun |view| (object &rest arguments)
|
||||
(%qinvoke-method object nil "view" arguments))
|
||||
|
||||
(defun |visitedLinksContainsUrl| (object &rest arguments)
|
||||
(%qinvoke-method object nil "visitedLinksContainsUrl" arguments))
|
||||
|
||||
(defun |webChannel| (object &rest arguments)
|
||||
(%qinvoke-method object nil "webChannel" arguments))
|
||||
|
||||
(defun |windowCloseRequested| (object &rest arguments)
|
||||
(%qinvoke-method object nil "windowCloseRequested" arguments))
|
||||
|
||||
(defun |worldId| (object &rest arguments)
|
||||
(%qinvoke-method object nil "worldId" arguments))
|
||||
|
||||
(defun |zoomFactor| (object &rest arguments)
|
||||
(%qinvoke-method object nil "zoomFactor" arguments))
|
||||
|
|
@ -1,3 +1,5 @@
|
|||
(dotimes (i 12)
|
||||
(load (eql:in-home (format nil "src/lisp/all-wrappers-~D" (1+ i)))))
|
||||
|
||||
(progn
|
||||
(dotimes (i 12)
|
||||
(load (eql:in-home (format nil "src/lisp/all-wrappers-~D" (1+ i)))))
|
||||
(dotimes (i 2)
|
||||
(load (eql:in-home (format nil "src/lisp/all-wrappers-webengine-~D" (1+ i))))))
|
||||
|
|
|
|||
163
src/lisp/define-all-wrappers-webengine.lisp
Normal file
163
src/lisp/define-all-wrappers-webengine.lisp
Normal file
|
|
@ -0,0 +1,163 @@
|
|||
;;; Define wrapper functions for all Qt methods/signals/slots using case preserving symbol names.
|
||||
|
||||
(eql:qrequire :webengine)
|
||||
|
||||
(load (in-home "helper/my-class-lists/webengine/n-names"))
|
||||
(load (in-home "helper/my-class-lists/webengine/q-names"))
|
||||
|
||||
(defvar *objects* (qobject-names))
|
||||
(defvar *webengine-objects* (append *webengine-n-names* *webengine-q-names*))
|
||||
(defvar *auto-cast-exceptions* nil)
|
||||
(defvar *functions* nil)
|
||||
(defvar *unambiguous* nil)
|
||||
|
||||
(let (latest)
|
||||
(defun num-args (fun)
|
||||
(let ((num (count #\, fun))
|
||||
(p (position #\( fun)))
|
||||
(setf latest (if (string= "()" (subseq fun p (+ 2 p)))
|
||||
num
|
||||
(1+ num)))))
|
||||
(defun latest-num-args ()
|
||||
latest))
|
||||
|
||||
(defun prepare ()
|
||||
(setf *functions* nil)
|
||||
(dolist (object *objects*)
|
||||
(let ((all-functions (cdar (qapropos* nil object)))
|
||||
functions)
|
||||
(dolist (type (list "Methods:" "Signals:" "Slots:"))
|
||||
(dolist (function (rest (find type all-functions
|
||||
:key 'first :test 'string=)))
|
||||
(let* ((open (position #\( function))
|
||||
(begin (1+ (position #\Space function :from-end t :end open))))
|
||||
(unless (upper-case-p (char function begin))
|
||||
(let ((fun (subseq function begin)))
|
||||
(push (cons fun (num-args fun))
|
||||
functions))))))
|
||||
(push (sort functions 'string< :key 'car)
|
||||
*functions*)))
|
||||
(setf *functions* (nreverse *functions*)))
|
||||
|
||||
(defun resolve-ambiguous ()
|
||||
(setf *unambiguous* nil)
|
||||
(macrolet ((pushnew-ok (arg)
|
||||
`(pushnew ,arg ok :test 'string=)))
|
||||
(flet ((end-pos (fun p)
|
||||
(1+ (or (position #\, fun :start p)
|
||||
(position #\) fun :start p))))
|
||||
(add-points (fun)
|
||||
(if (x:ends-with "," fun)
|
||||
(format nil "~A...)" (subseq fun 0 (1- (length fun))))
|
||||
fun))
|
||||
(simplify (fun)
|
||||
(if (x:ends-with "static" fun)
|
||||
(format nil "_s_~A" (subseq fun 0 (1+ (position #\) fun :from-end t))))
|
||||
fun)))
|
||||
(dolist (functions *functions*)
|
||||
(let (ok todo ex-fun1 ex-diff)
|
||||
(dolist (fun functions)
|
||||
(let ((f (simplify (car fun))))
|
||||
(pushnew-ok (subseq f 0 (position #\( f))))
|
||||
(when (plusp (cdr fun))
|
||||
(setf (car fun) (simplify (car fun)))
|
||||
(push fun todo)))
|
||||
(do ((funs (stable-sort (sort todo 'string< :key 'car) '< :key 'cdr)
|
||||
(rest funs)))
|
||||
((null funs))
|
||||
(let* ((fun1 (first funs))
|
||||
(fun2 (second funs))
|
||||
(fun2* (or fun2 ex-fun1))
|
||||
(f1 (car fun1))
|
||||
(f2 (car fun2*))
|
||||
(n1 (cdr fun1))
|
||||
(n2 (cdr fun2*))
|
||||
(a1 (position #\( f1))
|
||||
(a2 (position #\( f2)))
|
||||
(flet ((ambiguous ()
|
||||
(and (= n1 n2)
|
||||
(= a1 a2)
|
||||
(string= (subseq f1 0 a1)
|
||||
(subseq f2 0 a2)))))
|
||||
(if fun2*
|
||||
(if f2
|
||||
(if (ambiguous)
|
||||
(let ((diff (string-not-equal f1 f2)))
|
||||
(setf ex-diff diff)
|
||||
(pushnew-ok (add-points (subseq f1 0 (end-pos f1 diff))))
|
||||
(pushnew-ok (add-points (subseq f2 0 (end-pos f2 diff)))))
|
||||
(pushnew-ok (subseq f1 0 a1)))
|
||||
(if (ambiguous)
|
||||
(pushnew-ok (add-points (subseq f1 0 (when ex-diff (end-pos f1 ex-diff)))))
|
||||
(pushnew-ok (subseq f1 0 a1))))
|
||||
(pushnew-ok (subseq f1 0 a1)))
|
||||
(setf ex-fun1 fun1))))
|
||||
(push (sort ok 'string<)
|
||||
*unambiguous*)))
|
||||
(setf *unambiguous* (nreverse *unambiguous*)))))
|
||||
|
||||
(defun cast (signature)
|
||||
(dolist (exceptions *auto-cast-exceptions*)
|
||||
(when (find signature exceptions :test 'string=)
|
||||
(return-from cast "(%auto-cast object)")))
|
||||
"nil")
|
||||
|
||||
(let ((num 0))
|
||||
(defun file (file)
|
||||
(format nil "~A-webengine-~D.lisp" file (incf num))))
|
||||
|
||||
(defun define-all-wrappers (&optional (file "all-wrappers"))
|
||||
"Defines Lisp functions for all Qt methods/signals/slots, writing them to a file."
|
||||
(let (lisp-names definitions)
|
||||
(map nil (lambda (object signatures)
|
||||
(when (find object *webengine-objects* :test 'string=)
|
||||
(dolist (signature signatures)
|
||||
(let* ((cast (cast signature))
|
||||
(static (when (x:starts-with "_s_" signature)
|
||||
(setf signature (subseq signature 3))))
|
||||
(lisp-name (if static
|
||||
(format nil "|~A.~A|" signature object)
|
||||
(format nil "|~A|" signature))))
|
||||
(push lisp-name lisp-names)
|
||||
(push (if static
|
||||
(format nil "~%(defun ~A (&rest arguments)~
|
||||
~% (%qinvoke-method ~S nil ~S arguments))~%"
|
||||
lisp-name object signature)
|
||||
(format nil "~%(defun ~A (object &rest arguments)~
|
||||
~% (%qinvoke-method object ~A ~S arguments))~%"
|
||||
lisp-name cast signature))
|
||||
definitions)))))
|
||||
*objects* *unambiguous*)
|
||||
;; splitting into more files needed for Windows (string size limit)
|
||||
(let ((symbols (sort (delete-duplicates lisp-names :test 'string=) 'string<)))
|
||||
(x:while symbols
|
||||
(with-open-file (s (print (file file)) :direction :output :if-exists :supersede)
|
||||
(format s "(defpackage :eql~
|
||||
~% (:export")
|
||||
(loop
|
||||
(format s "~% #:~A" (first symbols))
|
||||
(setf symbols (rest symbols))
|
||||
(unless symbols
|
||||
(return)))
|
||||
(format s "))~%"))))
|
||||
(setf definitions (sort (delete-duplicates definitions :test 'string=) 'string<))
|
||||
(print (length definitions))
|
||||
(x:while definitions
|
||||
(with-open-file (s (print (file file)) :direction :output :if-exists :supersede)
|
||||
(format s "(in-package :eql)~%")
|
||||
(loop
|
||||
(princ (first definitions) s)
|
||||
(setf definitions (rest definitions))
|
||||
(unless definitions
|
||||
(return)))))))
|
||||
|
||||
(progn
|
||||
(let ((*objects* *auto-cast-exceptions*))
|
||||
(prepare)
|
||||
(resolve-ambiguous)
|
||||
(setf *auto-cast-exceptions* *unambiguous*))
|
||||
(prepare)
|
||||
(resolve-ambiguous)
|
||||
(define-all-wrappers)
|
||||
(qq))
|
||||
|
||||
|
|
@ -1,6 +1,4 @@
|
|||
;;; Define wrapper functions for all Qt methods/signals/slots using case
|
||||
;;; preserving symbol names, and resolving type ambiguous argument lists
|
||||
;;; current count: 6007
|
||||
;;; Define wrapper functions for all Qt methods/signals/slots using case preserving symbol names.
|
||||
|
||||
(dolist (module '(:help :multimedia :network :quick :sql :svg :webkit))
|
||||
(eql:qrequire module))
|
||||
|
|
|
|||
|
|
@ -1226,6 +1226,94 @@
|
|||
("|QValidator.Invalid|" . 0)
|
||||
("|QValidator.Intermediate|" . 1)
|
||||
("|QValidator.Acceptable|" . 2)
|
||||
("|QWebEngineDownloadItem.DownloadRequested|" . 0)
|
||||
("|QWebEngineDownloadItem.DownloadInProgress|" . 1)
|
||||
("|QWebEngineDownloadItem.DownloadCompleted|" . 2)
|
||||
("|QWebEngineDownloadItem.DownloadCancelled|" . 3)
|
||||
("|QWebEngineDownloadItem.DownloadInterrupted|" . 4)
|
||||
("|QWebEngineDownloadItem.Attachment|" . 0)
|
||||
("|QWebEngineDownloadItem.DownloadAttribute|" . 1)
|
||||
("|QWebEngineDownloadItem.UserRequested|" . 2)
|
||||
("|QWebEngineDownloadItem.SavePage|" . 3)
|
||||
("|QWebEngineDownloadItem.UnknownSaveFormat|" . -1)
|
||||
("|QWebEngineDownloadItem.SingleHtmlSaveFormat|" . 0)
|
||||
("|QWebEngineDownloadItem.CompleteHtmlSaveFormat|" . 1)
|
||||
("|QWebEngineDownloadItem.MimeHtmlSaveFormat|" . 2)
|
||||
("|QWebEnginePage.Geolocation|" . 1)
|
||||
("|QWebEnginePage.MediaAudioCapture|" . 2)
|
||||
("|QWebEnginePage.MediaVideoCapture|" . 3)
|
||||
("|QWebEnginePage.MediaAudioVideoCapture|" . 4)
|
||||
("|QWebEnginePage.MouseLock|" . 5)
|
||||
("|QWebEnginePage.FileSelectOpen|" . 0)
|
||||
("|QWebEnginePage.FileSelectOpenMultiple|" . 1)
|
||||
("|QWebEnginePage.FindBackward|" . 1)
|
||||
("|QWebEnginePage.FindCaseSensitively|" . 2)
|
||||
("|QWebEnginePage.InfoMessageLevel|" . 0)
|
||||
("|QWebEnginePage.WarningMessageLevel|" . 1)
|
||||
("|QWebEnginePage.ErrorMessageLevel|" . 2)
|
||||
("|QWebEnginePage.NavigationTypeLinkClicked|" . 0)
|
||||
("|QWebEnginePage.NavigationTypeTyped|" . 1)
|
||||
("|QWebEnginePage.NavigationTypeFormSubmitted|" . 2)
|
||||
("|QWebEnginePage.NavigationTypeBackForward|" . 3)
|
||||
("|QWebEnginePage.NavigationTypeReload|" . 4)
|
||||
("|QWebEnginePage.NavigationTypeOther|" . 5)
|
||||
("|QWebEnginePage.PermissionUnknown|" . 0)
|
||||
("|QWebEnginePage.PermissionGrantedByUser|" . 1)
|
||||
("|QWebEnginePage.PermissionDeniedByUser|" . 2)
|
||||
("|QWebEnginePage.NormalTerminationStatus|" . 0)
|
||||
("|QWebEnginePage.AbnormalTerminationStatus|" . 1)
|
||||
("|QWebEnginePage.CrashedTerminationStatus|" . 2)
|
||||
("|QWebEnginePage.KilledTerminationStatus|" . 3)
|
||||
("|QWebEnginePage.NoWebAction|" . -1)
|
||||
("|QWebEnginePage.Back|" . 0)
|
||||
("|QWebEnginePage.Forward|" . 1)
|
||||
("|QWebEnginePage.Stop|" . 2)
|
||||
("|QWebEnginePage.Reload|" . 3)
|
||||
("|QWebEnginePage.ReloadAndBypassCache|" . 10)
|
||||
("|QWebEnginePage.Cut|" . 4)
|
||||
("|QWebEnginePage.Copy|" . 5)
|
||||
("|QWebEnginePage.Paste|" . 6)
|
||||
("|QWebEnginePage.Undo|" . 7)
|
||||
("|QWebEnginePage.Redo|" . 8)
|
||||
("|QWebEnginePage.SelectAll|" . 9)
|
||||
("|QWebEnginePage.PasteAndMatchStyle|" . 11)
|
||||
("|QWebEnginePage.OpenLinkInThisWindow|" . 12)
|
||||
("|QWebEnginePage.OpenLinkInNewWindow|" . 13)
|
||||
("|QWebEnginePage.OpenLinkInNewTab|" . 14)
|
||||
("|QWebEnginePage.OpenLinkInNewBackgroundTab|" . 31)
|
||||
("|QWebEnginePage.CopyLinkToClipboard|" . 15)
|
||||
("|QWebEnginePage.CopyImageToClipboard|" . 17)
|
||||
("|QWebEnginePage.CopyImageUrlToClipboard|" . 18)
|
||||
("|QWebEnginePage.CopyMediaUrlToClipboard|" . 20)
|
||||
("|QWebEnginePage.ToggleMediaControls|" . 21)
|
||||
("|QWebEnginePage.ToggleMediaLoop|" . 22)
|
||||
("|QWebEnginePage.ToggleMediaPlayPause|" . 23)
|
||||
("|QWebEnginePage.ToggleMediaMute|" . 24)
|
||||
("|QWebEnginePage.DownloadLinkToDisk|" . 16)
|
||||
("|QWebEnginePage.DownloadImageToDisk|" . 19)
|
||||
("|QWebEnginePage.DownloadMediaToDisk|" . 25)
|
||||
("|QWebEnginePage.InspectElement|" . 26)
|
||||
("|QWebEnginePage.ExitFullScreen|" . 27)
|
||||
("|QWebEnginePage.RequestClose|" . 28)
|
||||
("|QWebEnginePage.Unselect|" . 29)
|
||||
("|QWebEnginePage.SavePage|" . 30)
|
||||
("|QWebEnginePage.ViewSource|" . 32)
|
||||
("|QWebEnginePage.WebBrowserWindow|" . 0)
|
||||
("|QWebEnginePage.WebBrowserTab|" . 1)
|
||||
("|QWebEnginePage.WebDialog|" . 2)
|
||||
("|QWebEnginePage.WebBrowserBackgroundTab|" . 3)
|
||||
("|QWebEngineProfile.MemoryHttpCache|" . 0)
|
||||
("|QWebEngineProfile.DiskHttpCache|" . 1)
|
||||
("|QWebEngineProfile.NoCache|" . 2)
|
||||
("|QWebEngineProfile.NoPersistentCookies|" . 0)
|
||||
("|QWebEngineProfile.AllowPersistentCookies|" . 1)
|
||||
("|QWebEngineProfile.ForcePersistentCookies|" . 2)
|
||||
("|QWebEngineUrlRequestJob.NoError|" . 0)
|
||||
("|QWebEngineUrlRequestJob.UrlNotFound|" . 1)
|
||||
("|QWebEngineUrlRequestJob.UrlInvalid|" . 2)
|
||||
("|QWebEngineUrlRequestJob.RequestAborted|" . 3)
|
||||
("|QWebEngineUrlRequestJob.RequestDenied|" . 4)
|
||||
("|QWebEngineUrlRequestJob.RequestFailed|" . 5)
|
||||
("|QWebFrame.ContentsLayer|" . #x10)
|
||||
("|QWebFrame.ScrollBarLayer|" . #x20)
|
||||
("|QWebFrame.PanIconLayer|" . #x40)
|
||||
|
|
@ -4365,6 +4453,86 @@
|
|||
("|QWebElement.InlineStyle|" . 0)
|
||||
("|QWebElement.CascadedStyle|" . 1)
|
||||
("|QWebElement.ComputedStyle|" . 2)
|
||||
("|QWebEngineCertificateError.SslPinnedKeyNotInCertificateChain|" . -150)
|
||||
("|QWebEngineCertificateError.CertificateCommonNameInvalid|" . -200)
|
||||
("|QWebEngineCertificateError.CertificateDateInvalid|" . -201)
|
||||
("|QWebEngineCertificateError.CertificateAuthorityInvalid|" . -202)
|
||||
("|QWebEngineCertificateError.CertificateContainsErrors|" . -203)
|
||||
("|QWebEngineCertificateError.CertificateNoRevocationMechanism|" . -204)
|
||||
("|QWebEngineCertificateError.CertificateUnableToCheckRevocation|" . -205)
|
||||
("|QWebEngineCertificateError.CertificateRevoked|" . -206)
|
||||
("|QWebEngineCertificateError.CertificateInvalid|" . -207)
|
||||
("|QWebEngineCertificateError.CertificateWeakSignatureAlgorithm|" . -208)
|
||||
("|QWebEngineCertificateError.CertificateNonUniqueName|" . -210)
|
||||
("|QWebEngineCertificateError.CertificateWeakKey|" . -211)
|
||||
("|QWebEngineCertificateError.CertificateNameConstraintViolation|" . -212)
|
||||
("|QWebEngineCertificateError.CertificateValidityTooLong|" . -213)
|
||||
("|QWebEngineCertificateError.CertificateTransparencyRequired|" . -214)
|
||||
("|QWebEngineScript.DocumentCreation|" . 2)
|
||||
("|QWebEngineScript.DocumentReady|" . 1)
|
||||
("|QWebEngineScript.Deferred|" . 0)
|
||||
("|QWebEngineScript.MainWorld|" . 0)
|
||||
("|QWebEngineScript.ApplicationWorld|" . 1)
|
||||
("|QWebEngineScript.UserWorld|" . 2)
|
||||
("|QWebEngineSettings.StandardFont|" . 0)
|
||||
("|QWebEngineSettings.FixedFont|" . 1)
|
||||
("|QWebEngineSettings.SerifFont|" . 2)
|
||||
("|QWebEngineSettings.SansSerifFont|" . 3)
|
||||
("|QWebEngineSettings.CursiveFont|" . 4)
|
||||
("|QWebEngineSettings.FantasyFont|" . 5)
|
||||
("|QWebEngineSettings.PictographFont|" . 6)
|
||||
("|QWebEngineSettings.MinimumFontSize|" . 0)
|
||||
("|QWebEngineSettings.MinimumLogicalFontSize|" . 1)
|
||||
("|QWebEngineSettings.DefaultFontSize|" . 2)
|
||||
("|QWebEngineSettings.DefaultFixedFontSize|" . 3)
|
||||
("|QWebEngineSettings.AutoLoadImages|" . 0)
|
||||
("|QWebEngineSettings.JavascriptEnabled|" . 1)
|
||||
("|QWebEngineSettings.JavascriptCanOpenWindows|" . 2)
|
||||
("|QWebEngineSettings.JavascriptCanAccessClipboard|" . 3)
|
||||
("|QWebEngineSettings.LinksIncludedInFocusChain|" . 4)
|
||||
("|QWebEngineSettings.LocalStorageEnabled|" . 5)
|
||||
("|QWebEngineSettings.LocalContentCanAccessRemoteUrls|" . 6)
|
||||
("|QWebEngineSettings.XSSAuditingEnabled|" . 7)
|
||||
("|QWebEngineSettings.SpatialNavigationEnabled|" . 8)
|
||||
("|QWebEngineSettings.LocalContentCanAccessFileUrls|" . 9)
|
||||
("|QWebEngineSettings.HyperlinkAuditingEnabled|" . 10)
|
||||
("|QWebEngineSettings.ScrollAnimatorEnabled|" . 11)
|
||||
("|QWebEngineSettings.ErrorPageEnabled|" . 12)
|
||||
("|QWebEngineSettings.PluginsEnabled|" . 13)
|
||||
("|QWebEngineSettings.FullScreenSupportEnabled|" . 14)
|
||||
("|QWebEngineSettings.ScreenCaptureEnabled|" . 15)
|
||||
("|QWebEngineSettings.WebGLEnabled|" . 16)
|
||||
("|QWebEngineSettings.Accelerated2dCanvasEnabled|" . 17)
|
||||
("|QWebEngineSettings.AutoLoadIconsForPage|" . 18)
|
||||
("|QWebEngineSettings.TouchIconsEnabled|" . 19)
|
||||
("|QWebEngineSettings.FocusOnNavigationEnabled|" . 20)
|
||||
("|QWebEngineSettings.PrintElementBackgrounds|" . 21)
|
||||
("|QWebEngineSettings.AllowRunningInsecureContent|" . 22)
|
||||
("|QWebEngineUrlRequestInfo.NavigationTypeLink|" . 0)
|
||||
("|QWebEngineUrlRequestInfo.NavigationTypeTyped|" . 1)
|
||||
("|QWebEngineUrlRequestInfo.NavigationTypeFormSubmitted|" . 2)
|
||||
("|QWebEngineUrlRequestInfo.NavigationTypeBackForward|" . 3)
|
||||
("|QWebEngineUrlRequestInfo.NavigationTypeReload|" . 4)
|
||||
("|QWebEngineUrlRequestInfo.NavigationTypeOther|" . 5)
|
||||
("|QWebEngineUrlRequestInfo.ResourceTypeMainFrame|" . 0)
|
||||
("|QWebEngineUrlRequestInfo.ResourceTypeSubFrame|" . 1)
|
||||
("|QWebEngineUrlRequestInfo.ResourceTypeStylesheet|" . 2)
|
||||
("|QWebEngineUrlRequestInfo.ResourceTypeScript|" . 3)
|
||||
("|QWebEngineUrlRequestInfo.ResourceTypeImage|" . 4)
|
||||
("|QWebEngineUrlRequestInfo.ResourceTypeFontResource|" . 5)
|
||||
("|QWebEngineUrlRequestInfo.ResourceTypeSubResource|" . 6)
|
||||
("|QWebEngineUrlRequestInfo.ResourceTypeObject|" . 7)
|
||||
("|QWebEngineUrlRequestInfo.ResourceTypeMedia|" . 8)
|
||||
("|QWebEngineUrlRequestInfo.ResourceTypeWorker|" . 9)
|
||||
("|QWebEngineUrlRequestInfo.ResourceTypeSharedWorker|" . 10)
|
||||
("|QWebEngineUrlRequestInfo.ResourceTypePrefetch|" . 11)
|
||||
("|QWebEngineUrlRequestInfo.ResourceTypeFavicon|" . 12)
|
||||
("|QWebEngineUrlRequestInfo.ResourceTypeXhr|" . 13)
|
||||
("|QWebEngineUrlRequestInfo.ResourceTypePing|" . 14)
|
||||
("|QWebEngineUrlRequestInfo.ResourceTypeServiceWorker|" . 15)
|
||||
("|QWebEngineUrlRequestInfo.ResourceTypeCspReport|" . 16)
|
||||
("|QWebEngineUrlRequestInfo.ResourceTypePluginResource|" . 17)
|
||||
("|QWebEngineUrlRequestInfo.ResourceTypeUnknown|" . 255)
|
||||
("|QWebSettings.StandardFont|" . 0)
|
||||
("|QWebSettings.FixedFont|" . 1)
|
||||
("|QWebSettings.SerifFont|" . 2)
|
||||
|
|
|
|||
|
|
@ -897,6 +897,174 @@
|
|||
(defenum |QWebElement.CascadedStyle| 1)
|
||||
(defenum |QWebElement.ComputedStyle| 2)
|
||||
(defenum |QWebElement.InlineStyle| 0)
|
||||
(defenum |QWebEngineCertificateError.CertificateAuthorityInvalid| -202)
|
||||
(defenum |QWebEngineCertificateError.CertificateCommonNameInvalid| -200)
|
||||
(defenum |QWebEngineCertificateError.CertificateContainsErrors| -203)
|
||||
(defenum |QWebEngineCertificateError.CertificateDateInvalid| -201)
|
||||
(defenum |QWebEngineCertificateError.CertificateInvalid| -207)
|
||||
(defenum |QWebEngineCertificateError.CertificateNameConstraintViolation| -212)
|
||||
(defenum |QWebEngineCertificateError.CertificateNoRevocationMechanism| -204)
|
||||
(defenum |QWebEngineCertificateError.CertificateNonUniqueName| -210)
|
||||
(defenum |QWebEngineCertificateError.CertificateRevoked| -206)
|
||||
(defenum |QWebEngineCertificateError.CertificateTransparencyRequired| -214)
|
||||
(defenum |QWebEngineCertificateError.CertificateUnableToCheckRevocation| -205)
|
||||
(defenum |QWebEngineCertificateError.CertificateValidityTooLong| -213)
|
||||
(defenum |QWebEngineCertificateError.CertificateWeakKey| -211)
|
||||
(defenum |QWebEngineCertificateError.CertificateWeakSignatureAlgorithm| -208)
|
||||
(defenum |QWebEngineCertificateError.SslPinnedKeyNotInCertificateChain| -150)
|
||||
(defenum |QWebEngineDownloadItem.Attachment| 0)
|
||||
(defenum |QWebEngineDownloadItem.CompleteHtmlSaveFormat| 1)
|
||||
(defenum |QWebEngineDownloadItem.DownloadAttribute| 1)
|
||||
(defenum |QWebEngineDownloadItem.DownloadCancelled| 3)
|
||||
(defenum |QWebEngineDownloadItem.DownloadCompleted| 2)
|
||||
(defenum |QWebEngineDownloadItem.DownloadInProgress| 1)
|
||||
(defenum |QWebEngineDownloadItem.DownloadInterrupted| 4)
|
||||
(defenum |QWebEngineDownloadItem.DownloadRequested| 0)
|
||||
(defenum |QWebEngineDownloadItem.MimeHtmlSaveFormat| 2)
|
||||
(defenum |QWebEngineDownloadItem.SavePage| 3)
|
||||
(defenum |QWebEngineDownloadItem.SingleHtmlSaveFormat| 0)
|
||||
(defenum |QWebEngineDownloadItem.UnknownSaveFormat| -1)
|
||||
(defenum |QWebEngineDownloadItem.UserRequested| 2)
|
||||
(defenum |QWebEnginePage.AbnormalTerminationStatus| 1)
|
||||
(defenum |QWebEnginePage.Back| 0)
|
||||
(defenum |QWebEnginePage.CopyImageToClipboard| 17)
|
||||
(defenum |QWebEnginePage.CopyImageUrlToClipboard| 18)
|
||||
(defenum |QWebEnginePage.CopyLinkToClipboard| 15)
|
||||
(defenum |QWebEnginePage.CopyMediaUrlToClipboard| 20)
|
||||
(defenum |QWebEnginePage.Copy| 5)
|
||||
(defenum |QWebEnginePage.CrashedTerminationStatus| 2)
|
||||
(defenum |QWebEnginePage.Cut| 4)
|
||||
(defenum |QWebEnginePage.DownloadImageToDisk| 19)
|
||||
(defenum |QWebEnginePage.DownloadLinkToDisk| 16)
|
||||
(defenum |QWebEnginePage.DownloadMediaToDisk| 25)
|
||||
(defenum |QWebEnginePage.ErrorMessageLevel| 2)
|
||||
(defenum |QWebEnginePage.ExitFullScreen| 27)
|
||||
(defenum |QWebEnginePage.FileSelectOpenMultiple| 1)
|
||||
(defenum |QWebEnginePage.FileSelectOpen| 0)
|
||||
(defenum |QWebEnginePage.FindBackward| 1)
|
||||
(defenum |QWebEnginePage.FindCaseSensitively| 2)
|
||||
(defenum |QWebEnginePage.Forward| 1)
|
||||
(defenum |QWebEnginePage.Geolocation| 1)
|
||||
(defenum |QWebEnginePage.InfoMessageLevel| 0)
|
||||
(defenum |QWebEnginePage.InspectElement| 26)
|
||||
(defenum |QWebEnginePage.KilledTerminationStatus| 3)
|
||||
(defenum |QWebEnginePage.MediaAudioCapture| 2)
|
||||
(defenum |QWebEnginePage.MediaAudioVideoCapture| 4)
|
||||
(defenum |QWebEnginePage.MediaVideoCapture| 3)
|
||||
(defenum |QWebEnginePage.MouseLock| 5)
|
||||
(defenum |QWebEnginePage.NavigationTypeBackForward| 3)
|
||||
(defenum |QWebEnginePage.NavigationTypeFormSubmitted| 2)
|
||||
(defenum |QWebEnginePage.NavigationTypeLinkClicked| 0)
|
||||
(defenum |QWebEnginePage.NavigationTypeOther| 5)
|
||||
(defenum |QWebEnginePage.NavigationTypeReload| 4)
|
||||
(defenum |QWebEnginePage.NavigationTypeTyped| 1)
|
||||
(defenum |QWebEnginePage.NoWebAction| -1)
|
||||
(defenum |QWebEnginePage.NormalTerminationStatus| 0)
|
||||
(defenum |QWebEnginePage.OpenLinkInNewBackgroundTab| 31)
|
||||
(defenum |QWebEnginePage.OpenLinkInNewTab| 14)
|
||||
(defenum |QWebEnginePage.OpenLinkInNewWindow| 13)
|
||||
(defenum |QWebEnginePage.OpenLinkInThisWindow| 12)
|
||||
(defenum |QWebEnginePage.PasteAndMatchStyle| 11)
|
||||
(defenum |QWebEnginePage.Paste| 6)
|
||||
(defenum |QWebEnginePage.PermissionDeniedByUser| 2)
|
||||
(defenum |QWebEnginePage.PermissionGrantedByUser| 1)
|
||||
(defenum |QWebEnginePage.PermissionUnknown| 0)
|
||||
(defenum |QWebEnginePage.Redo| 8)
|
||||
(defenum |QWebEnginePage.ReloadAndBypassCache| 10)
|
||||
(defenum |QWebEnginePage.Reload| 3)
|
||||
(defenum |QWebEnginePage.RequestClose| 28)
|
||||
(defenum |QWebEnginePage.SavePage| 30)
|
||||
(defenum |QWebEnginePage.SelectAll| 9)
|
||||
(defenum |QWebEnginePage.Stop| 2)
|
||||
(defenum |QWebEnginePage.ToggleMediaControls| 21)
|
||||
(defenum |QWebEnginePage.ToggleMediaLoop| 22)
|
||||
(defenum |QWebEnginePage.ToggleMediaMute| 24)
|
||||
(defenum |QWebEnginePage.ToggleMediaPlayPause| 23)
|
||||
(defenum |QWebEnginePage.Undo| 7)
|
||||
(defenum |QWebEnginePage.Unselect| 29)
|
||||
(defenum |QWebEnginePage.ViewSource| 32)
|
||||
(defenum |QWebEnginePage.WarningMessageLevel| 1)
|
||||
(defenum |QWebEnginePage.WebBrowserBackgroundTab| 3)
|
||||
(defenum |QWebEnginePage.WebBrowserTab| 1)
|
||||
(defenum |QWebEnginePage.WebBrowserWindow| 0)
|
||||
(defenum |QWebEnginePage.WebDialog| 2)
|
||||
(defenum |QWebEngineProfile.AllowPersistentCookies| 1)
|
||||
(defenum |QWebEngineProfile.DiskHttpCache| 1)
|
||||
(defenum |QWebEngineProfile.ForcePersistentCookies| 2)
|
||||
(defenum |QWebEngineProfile.MemoryHttpCache| 0)
|
||||
(defenum |QWebEngineProfile.NoCache| 2)
|
||||
(defenum |QWebEngineProfile.NoPersistentCookies| 0)
|
||||
(defenum |QWebEngineScript.ApplicationWorld| 1)
|
||||
(defenum |QWebEngineScript.Deferred| 0)
|
||||
(defenum |QWebEngineScript.DocumentCreation| 2)
|
||||
(defenum |QWebEngineScript.DocumentReady| 1)
|
||||
(defenum |QWebEngineScript.MainWorld| 0)
|
||||
(defenum |QWebEngineScript.UserWorld| 2)
|
||||
(defenum |QWebEngineSettings.Accelerated2dCanvasEnabled| 17)
|
||||
(defenum |QWebEngineSettings.AllowRunningInsecureContent| 22)
|
||||
(defenum |QWebEngineSettings.AutoLoadIconsForPage| 18)
|
||||
(defenum |QWebEngineSettings.AutoLoadImages| 0)
|
||||
(defenum |QWebEngineSettings.CursiveFont| 4)
|
||||
(defenum |QWebEngineSettings.DefaultFixedFontSize| 3)
|
||||
(defenum |QWebEngineSettings.DefaultFontSize| 2)
|
||||
(defenum |QWebEngineSettings.ErrorPageEnabled| 12)
|
||||
(defenum |QWebEngineSettings.FantasyFont| 5)
|
||||
(defenum |QWebEngineSettings.FixedFont| 1)
|
||||
(defenum |QWebEngineSettings.FocusOnNavigationEnabled| 20)
|
||||
(defenum |QWebEngineSettings.FullScreenSupportEnabled| 14)
|
||||
(defenum |QWebEngineSettings.HyperlinkAuditingEnabled| 10)
|
||||
(defenum |QWebEngineSettings.JavascriptCanAccessClipboard| 3)
|
||||
(defenum |QWebEngineSettings.JavascriptCanOpenWindows| 2)
|
||||
(defenum |QWebEngineSettings.JavascriptEnabled| 1)
|
||||
(defenum |QWebEngineSettings.LinksIncludedInFocusChain| 4)
|
||||
(defenum |QWebEngineSettings.LocalContentCanAccessFileUrls| 9)
|
||||
(defenum |QWebEngineSettings.LocalContentCanAccessRemoteUrls| 6)
|
||||
(defenum |QWebEngineSettings.LocalStorageEnabled| 5)
|
||||
(defenum |QWebEngineSettings.MinimumFontSize| 0)
|
||||
(defenum |QWebEngineSettings.MinimumLogicalFontSize| 1)
|
||||
(defenum |QWebEngineSettings.PictographFont| 6)
|
||||
(defenum |QWebEngineSettings.PluginsEnabled| 13)
|
||||
(defenum |QWebEngineSettings.PrintElementBackgrounds| 21)
|
||||
(defenum |QWebEngineSettings.SansSerifFont| 3)
|
||||
(defenum |QWebEngineSettings.ScreenCaptureEnabled| 15)
|
||||
(defenum |QWebEngineSettings.ScrollAnimatorEnabled| 11)
|
||||
(defenum |QWebEngineSettings.SerifFont| 2)
|
||||
(defenum |QWebEngineSettings.SpatialNavigationEnabled| 8)
|
||||
(defenum |QWebEngineSettings.StandardFont| 0)
|
||||
(defenum |QWebEngineSettings.TouchIconsEnabled| 19)
|
||||
(defenum |QWebEngineSettings.WebGLEnabled| 16)
|
||||
(defenum |QWebEngineSettings.XSSAuditingEnabled| 7)
|
||||
(defenum |QWebEngineUrlRequestInfo.NavigationTypeBackForward| 3)
|
||||
(defenum |QWebEngineUrlRequestInfo.NavigationTypeFormSubmitted| 2)
|
||||
(defenum |QWebEngineUrlRequestInfo.NavigationTypeLink| 0)
|
||||
(defenum |QWebEngineUrlRequestInfo.NavigationTypeOther| 5)
|
||||
(defenum |QWebEngineUrlRequestInfo.NavigationTypeReload| 4)
|
||||
(defenum |QWebEngineUrlRequestInfo.NavigationTypeTyped| 1)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeCspReport| 16)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeFavicon| 12)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeFontResource| 5)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeImage| 4)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeMainFrame| 0)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeMedia| 8)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeObject| 7)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypePing| 14)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypePluginResource| 17)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypePrefetch| 11)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeScript| 3)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeServiceWorker| 15)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeSharedWorker| 10)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeStylesheet| 2)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeSubFrame| 1)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeSubResource| 6)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeUnknown| 255)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeWorker| 9)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeXhr| 13)
|
||||
(defenum |QWebEngineUrlRequestJob.NoError| 0)
|
||||
(defenum |QWebEngineUrlRequestJob.RequestAborted| 3)
|
||||
(defenum |QWebEngineUrlRequestJob.RequestDenied| 4)
|
||||
(defenum |QWebEngineUrlRequestJob.RequestFailed| 5)
|
||||
(defenum |QWebEngineUrlRequestJob.UrlInvalid| 2)
|
||||
(defenum |QWebEngineUrlRequestJob.UrlNotFound| 1)
|
||||
(defenum |QWebFrame.AllLayers| 255)
|
||||
(defenum |QWebFrame.ContentsLayer| 16)
|
||||
(defenum |QWebFrame.PanIconLayer| 64)
|
||||
|
|
@ -1096,171 +1264,3 @@
|
|||
(defenum |QWizard.HaveCustomButton3| 32768)
|
||||
(defenum |QWizard.HaveFinishButtonOnEarlyPages| 256)
|
||||
(defenum |QWizard.HaveHelpButton| 2048)
|
||||
(defenum |QWizard.HaveNextButtonOnLastPage| 128)
|
||||
(defenum |QWizard.HelpButtonOnRight| 4096)
|
||||
(defenum |QWizard.HelpButton| 5)
|
||||
(defenum |QWizard.IgnoreSubTitles| 2)
|
||||
(defenum |QWizard.IndependentPages| 1)
|
||||
(defenum |QWizard.LogoPixmap| 1)
|
||||
(defenum |QWizard.MacStyle| 2)
|
||||
(defenum |QWizard.ModernStyle| 1)
|
||||
(defenum |QWizard.NStyles| 4)
|
||||
(defenum |QWizard.NextButton| 1)
|
||||
(defenum |QWizard.NoBackButtonOnLastPage| 32)
|
||||
(defenum |QWizard.NoBackButtonOnStartPage| 16)
|
||||
(defenum |QWizard.NoCancelButtonOnLastPage| 65536)
|
||||
(defenum |QWizard.NoCancelButton| 512)
|
||||
(defenum |QWizard.NoDefaultButton| 8)
|
||||
(defenum |QWizard.Stretch| 9)
|
||||
(defenum |QWizard.WatermarkPixmap| 0)
|
||||
(defenum |Qt.AA_AttributeCount| 20)
|
||||
(defenum |Qt.AA_DontCreateNativeWidgetSiblings| 4)
|
||||
(defenum |Qt.AA_DontShowIconsInMenus| 2)
|
||||
(defenum |Qt.AA_DontUseNativeMenuBar| 6)
|
||||
(defenum |Qt.AA_ForceRasterWidgets| 14)
|
||||
(defenum |Qt.AA_ImmediateWidgetCreation| 0)
|
||||
(defenum |Qt.AA_MSWindowsUseDirect3DByDefault| 1)
|
||||
(defenum |Qt.AA_MacDontSwapCtrlAndMeta| 7)
|
||||
(defenum |Qt.AA_MacPluginApplication| 5)
|
||||
(defenum |Qt.AA_NativeWindows| 3)
|
||||
(defenum |Qt.AA_SetPalette| 19)
|
||||
(defenum |Qt.AA_ShareOpenGLContexts| 18)
|
||||
(defenum |Qt.AA_SynthesizeMouseForUnhandledTouchEvents| 12)
|
||||
(defenum |Qt.AA_SynthesizeTouchForUnhandledMouseEvents| 11)
|
||||
(defenum |Qt.AA_Use96Dpi| 8)
|
||||
(defenum |Qt.AA_UseDesktopOpenGL| 15)
|
||||
(defenum |Qt.AA_UseHighDpiPixmaps| 13)
|
||||
(defenum |Qt.AA_UseOpenGLES| 16)
|
||||
(defenum |Qt.AA_UseSoftwareOpenGL| 17)
|
||||
(defenum |Qt.AA_X11InitThreads| 10)
|
||||
(defenum |Qt.AbsoluteSize| 0)
|
||||
(defenum |Qt.AccessibleDescriptionRole| 12)
|
||||
(defenum |Qt.AccessibleTextRole| 11)
|
||||
(defenum |Qt.ActionMask| 255)
|
||||
(defenum |Qt.ActionsContextMenu| 2)
|
||||
(defenum |Qt.ActiveWindowFocusReason| 3)
|
||||
(defenum |Qt.AddToSelection| 1)
|
||||
(defenum |Qt.AlignAbsolute| 16)
|
||||
(defenum |Qt.AlignBaseline| 256)
|
||||
(defenum |Qt.AlignBottom| 64)
|
||||
(defenum |Qt.AlignCenter| 132)
|
||||
(defenum |Qt.AlignHCenter| 4)
|
||||
(defenum |Qt.AlignHorizontal_Mask| 31)
|
||||
(defenum |Qt.AlignJustify| 8)
|
||||
(defenum |Qt.AlignLeading| 1)
|
||||
(defenum |Qt.AlignLeft| 1)
|
||||
(defenum |Qt.AlignRight| 2)
|
||||
(defenum |Qt.AlignTop| 32)
|
||||
(defenum |Qt.AlignTrailing| 2)
|
||||
(defenum |Qt.AlignVCenter| 128)
|
||||
(defenum |Qt.AlignVertical_Mask| 480)
|
||||
(defenum |Qt.AllButtons| 134217727)
|
||||
(defenum |Qt.AllDockWidgetAreas| 15)
|
||||
(defenum |Qt.AllToolBarAreas| 15)
|
||||
(defenum |Qt.AlphaDither_Mask| 12)
|
||||
(defenum |Qt.AltModifier| 134217728)
|
||||
(defenum |Qt.ApplicationActive| 4)
|
||||
(defenum |Qt.ApplicationHidden| 1)
|
||||
(defenum |Qt.ApplicationInactive| 2)
|
||||
(defenum |Qt.ApplicationModal| 2)
|
||||
(defenum |Qt.ApplicationShortcut| 2)
|
||||
(defenum |Qt.ApplicationSuspended| 0)
|
||||
(defenum |Qt.ArrowCursor| 0)
|
||||
(defenum |Qt.AscendingOrder| 0)
|
||||
(defenum |Qt.AutoColor| 0)
|
||||
(defenum |Qt.AutoConnection| 0)
|
||||
(defenum |Qt.AutoDither| 0)
|
||||
(defenum |Qt.AutoText| 2)
|
||||
(defenum |Qt.AvoidDither| 128)
|
||||
(defenum |Qt.BDiagPattern| 12)
|
||||
(defenum |Qt.BackButton| 8)
|
||||
(defenum |Qt.BackgroundColorRole| 8)
|
||||
(defenum |Qt.BackgroundRole| 8)
|
||||
(defenum |Qt.BacktabFocusReason| 2)
|
||||
(defenum |Qt.BeginNativeGesture| 0)
|
||||
(defenum |Qt.BevelJoin| 64)
|
||||
(defenum |Qt.BitmapCursor| 24)
|
||||
(defenum |Qt.BlankCursor| 10)
|
||||
(defenum |Qt.BlockingQueuedConnection| 3)
|
||||
(defenum |Qt.BottomDockWidgetArea| 8)
|
||||
(defenum |Qt.BottomEdge| 8)
|
||||
(defenum |Qt.BottomLeftCorner| 2)
|
||||
(defenum |Qt.BottomRightCorner| 3)
|
||||
(defenum |Qt.BottomToolBarArea| 8)
|
||||
(defenum |Qt.BusyCursor| 16)
|
||||
(defenum |Qt.BypassGraphicsProxyWidget| 536870912)
|
||||
(defenum |Qt.BypassWindowManagerHint| 1024)
|
||||
(defenum |Qt.CaseInsensitive| 0)
|
||||
(defenum |Qt.CaseSensitive| 1)
|
||||
(defenum |Qt.CheckStateRole| 10)
|
||||
(defenum |Qt.Checked| 2)
|
||||
(defenum |Qt.ClickFocus| 2)
|
||||
(defenum |Qt.ClosedHandCursor| 18)
|
||||
(defenum |Qt.CoarseTimer| 1)
|
||||
(defenum |Qt.ColorMode_Mask| 3)
|
||||
(defenum |Qt.ColorOnly| 3)
|
||||
(defenum |Qt.ConicalGradientPattern| 17)
|
||||
(defenum |Qt.ContainsItemBoundingRect| 2)
|
||||
(defenum |Qt.ContainsItemShape| 0)
|
||||
(defenum |Qt.ControlModifier| 67108864)
|
||||
(defenum |Qt.CopyAction| 1)
|
||||
(defenum |Qt.CoverWindow| 65)
|
||||
(defenum |Qt.CrossCursor| 2)
|
||||
(defenum |Qt.CrossPattern| 11)
|
||||
(defenum |Qt.CustomContextMenu| 3)
|
||||
(defenum |Qt.CustomCursor| 25)
|
||||
(defenum |Qt.CustomDashLine| 6)
|
||||
(defenum |Qt.CustomGesture| 256)
|
||||
(defenum |Qt.CustomizeWindowHint| 33554432)
|
||||
(defenum |Qt.DashDotDotLine| 5)
|
||||
(defenum |Qt.DashDotLine| 4)
|
||||
(defenum |Qt.DashLine| 2)
|
||||
(defenum |Qt.DecorationPropertyRole| 28)
|
||||
(defenum |Qt.DecorationRole| 1)
|
||||
(defenum |Qt.DefaultContextMenu| 1)
|
||||
(defenum |Qt.DefaultLocaleLongDate| 7)
|
||||
(defenum |Qt.DefaultLocaleShortDate| 6)
|
||||
(defenum |Qt.Dense1Pattern| 2)
|
||||
(defenum |Qt.Dense2Pattern| 3)
|
||||
(defenum |Qt.Dense3Pattern| 4)
|
||||
(defenum |Qt.Dense4Pattern| 5)
|
||||
(defenum |Qt.Dense5Pattern| 6)
|
||||
(defenum |Qt.Dense6Pattern| 7)
|
||||
(defenum |Qt.Dense7Pattern| 8)
|
||||
(defenum |Qt.DescendingOrder| 1)
|
||||
(defenum |Qt.Desktop| 17)
|
||||
(defenum |Qt.DiagCrossPattern| 14)
|
||||
(defenum |Qt.Dialog| 3)
|
||||
(defenum |Qt.DiffuseAlphaDither| 8)
|
||||
(defenum |Qt.DiffuseDither| 0)
|
||||
(defenum |Qt.DirectConnection| 1)
|
||||
(defenum |Qt.DisplayPropertyRole| 27)
|
||||
(defenum |Qt.DisplayRole| 0)
|
||||
(defenum |Qt.DitherMode_Mask| 192)
|
||||
(defenum |Qt.Dither_Mask| 48)
|
||||
(defenum |Qt.DockWidgetArea_Mask| 15)
|
||||
(defenum |Qt.DotLine| 3)
|
||||
(defenum |Qt.DownArrow| 2)
|
||||
(defenum |Qt.DragCopyCursor| 19)
|
||||
(defenum |Qt.DragLinkCursor| 21)
|
||||
(defenum |Qt.DragMoveCursor| 20)
|
||||
(defenum |Qt.Drawer| 7)
|
||||
(defenum |Qt.EditRole| 2)
|
||||
(defenum |Qt.ElideLeft| 0)
|
||||
(defenum |Qt.ElideMiddle| 2)
|
||||
(defenum |Qt.ElideNone| 3)
|
||||
(defenum |Qt.ElideRight| 1)
|
||||
(defenum |Qt.EndNativeGesture| 1)
|
||||
(defenum |Qt.ExtraButton10| 4096)
|
||||
(defenum |Qt.ExtraButton11| 8192)
|
||||
(defenum |Qt.ExtraButton12| 16384)
|
||||
(defenum |Qt.ExtraButton13| 32768)
|
||||
(defenum |Qt.ExtraButton14| 65536)
|
||||
(defenum |Qt.ExtraButton15| 131072)
|
||||
(defenum |Qt.ExtraButton16| 262144)
|
||||
(defenum |Qt.ExtraButton17| 524288)
|
||||
(defenum |Qt.ExtraButton18| 1048576)
|
||||
(defenum |Qt.ExtraButton19| 2097152)
|
||||
(defenum |Qt.ExtraButton1| 8)
|
||||
(defenum |Qt.ExtraButton20| 4194304)
|
||||
(defenum |Qt.ExtraButton21| 8388608)
|
||||
|
|
|
|||
|
|
@ -14,6 +14,174 @@
|
|||
(defconstant ,name ,value)
|
||||
(export ',name ,(find-package :eql))))
|
||||
|
||||
(defenum |QWizard.HaveNextButtonOnLastPage| 128)
|
||||
(defenum |QWizard.HelpButtonOnRight| 4096)
|
||||
(defenum |QWizard.HelpButton| 5)
|
||||
(defenum |QWizard.IgnoreSubTitles| 2)
|
||||
(defenum |QWizard.IndependentPages| 1)
|
||||
(defenum |QWizard.LogoPixmap| 1)
|
||||
(defenum |QWizard.MacStyle| 2)
|
||||
(defenum |QWizard.ModernStyle| 1)
|
||||
(defenum |QWizard.NStyles| 4)
|
||||
(defenum |QWizard.NextButton| 1)
|
||||
(defenum |QWizard.NoBackButtonOnLastPage| 32)
|
||||
(defenum |QWizard.NoBackButtonOnStartPage| 16)
|
||||
(defenum |QWizard.NoCancelButtonOnLastPage| 65536)
|
||||
(defenum |QWizard.NoCancelButton| 512)
|
||||
(defenum |QWizard.NoDefaultButton| 8)
|
||||
(defenum |QWizard.Stretch| 9)
|
||||
(defenum |QWizard.WatermarkPixmap| 0)
|
||||
(defenum |Qt.AA_AttributeCount| 20)
|
||||
(defenum |Qt.AA_DontCreateNativeWidgetSiblings| 4)
|
||||
(defenum |Qt.AA_DontShowIconsInMenus| 2)
|
||||
(defenum |Qt.AA_DontUseNativeMenuBar| 6)
|
||||
(defenum |Qt.AA_ForceRasterWidgets| 14)
|
||||
(defenum |Qt.AA_ImmediateWidgetCreation| 0)
|
||||
(defenum |Qt.AA_MSWindowsUseDirect3DByDefault| 1)
|
||||
(defenum |Qt.AA_MacDontSwapCtrlAndMeta| 7)
|
||||
(defenum |Qt.AA_MacPluginApplication| 5)
|
||||
(defenum |Qt.AA_NativeWindows| 3)
|
||||
(defenum |Qt.AA_SetPalette| 19)
|
||||
(defenum |Qt.AA_ShareOpenGLContexts| 18)
|
||||
(defenum |Qt.AA_SynthesizeMouseForUnhandledTouchEvents| 12)
|
||||
(defenum |Qt.AA_SynthesizeTouchForUnhandledMouseEvents| 11)
|
||||
(defenum |Qt.AA_Use96Dpi| 8)
|
||||
(defenum |Qt.AA_UseDesktopOpenGL| 15)
|
||||
(defenum |Qt.AA_UseHighDpiPixmaps| 13)
|
||||
(defenum |Qt.AA_UseOpenGLES| 16)
|
||||
(defenum |Qt.AA_UseSoftwareOpenGL| 17)
|
||||
(defenum |Qt.AA_X11InitThreads| 10)
|
||||
(defenum |Qt.AbsoluteSize| 0)
|
||||
(defenum |Qt.AccessibleDescriptionRole| 12)
|
||||
(defenum |Qt.AccessibleTextRole| 11)
|
||||
(defenum |Qt.ActionMask| 255)
|
||||
(defenum |Qt.ActionsContextMenu| 2)
|
||||
(defenum |Qt.ActiveWindowFocusReason| 3)
|
||||
(defenum |Qt.AddToSelection| 1)
|
||||
(defenum |Qt.AlignAbsolute| 16)
|
||||
(defenum |Qt.AlignBaseline| 256)
|
||||
(defenum |Qt.AlignBottom| 64)
|
||||
(defenum |Qt.AlignCenter| 132)
|
||||
(defenum |Qt.AlignHCenter| 4)
|
||||
(defenum |Qt.AlignHorizontal_Mask| 31)
|
||||
(defenum |Qt.AlignJustify| 8)
|
||||
(defenum |Qt.AlignLeading| 1)
|
||||
(defenum |Qt.AlignLeft| 1)
|
||||
(defenum |Qt.AlignRight| 2)
|
||||
(defenum |Qt.AlignTop| 32)
|
||||
(defenum |Qt.AlignTrailing| 2)
|
||||
(defenum |Qt.AlignVCenter| 128)
|
||||
(defenum |Qt.AlignVertical_Mask| 480)
|
||||
(defenum |Qt.AllButtons| 134217727)
|
||||
(defenum |Qt.AllDockWidgetAreas| 15)
|
||||
(defenum |Qt.AllToolBarAreas| 15)
|
||||
(defenum |Qt.AlphaDither_Mask| 12)
|
||||
(defenum |Qt.AltModifier| 134217728)
|
||||
(defenum |Qt.ApplicationActive| 4)
|
||||
(defenum |Qt.ApplicationHidden| 1)
|
||||
(defenum |Qt.ApplicationInactive| 2)
|
||||
(defenum |Qt.ApplicationModal| 2)
|
||||
(defenum |Qt.ApplicationShortcut| 2)
|
||||
(defenum |Qt.ApplicationSuspended| 0)
|
||||
(defenum |Qt.ArrowCursor| 0)
|
||||
(defenum |Qt.AscendingOrder| 0)
|
||||
(defenum |Qt.AutoColor| 0)
|
||||
(defenum |Qt.AutoConnection| 0)
|
||||
(defenum |Qt.AutoDither| 0)
|
||||
(defenum |Qt.AutoText| 2)
|
||||
(defenum |Qt.AvoidDither| 128)
|
||||
(defenum |Qt.BDiagPattern| 12)
|
||||
(defenum |Qt.BackButton| 8)
|
||||
(defenum |Qt.BackgroundColorRole| 8)
|
||||
(defenum |Qt.BackgroundRole| 8)
|
||||
(defenum |Qt.BacktabFocusReason| 2)
|
||||
(defenum |Qt.BeginNativeGesture| 0)
|
||||
(defenum |Qt.BevelJoin| 64)
|
||||
(defenum |Qt.BitmapCursor| 24)
|
||||
(defenum |Qt.BlankCursor| 10)
|
||||
(defenum |Qt.BlockingQueuedConnection| 3)
|
||||
(defenum |Qt.BottomDockWidgetArea| 8)
|
||||
(defenum |Qt.BottomEdge| 8)
|
||||
(defenum |Qt.BottomLeftCorner| 2)
|
||||
(defenum |Qt.BottomRightCorner| 3)
|
||||
(defenum |Qt.BottomToolBarArea| 8)
|
||||
(defenum |Qt.BusyCursor| 16)
|
||||
(defenum |Qt.BypassGraphicsProxyWidget| 536870912)
|
||||
(defenum |Qt.BypassWindowManagerHint| 1024)
|
||||
(defenum |Qt.CaseInsensitive| 0)
|
||||
(defenum |Qt.CaseSensitive| 1)
|
||||
(defenum |Qt.CheckStateRole| 10)
|
||||
(defenum |Qt.Checked| 2)
|
||||
(defenum |Qt.ClickFocus| 2)
|
||||
(defenum |Qt.ClosedHandCursor| 18)
|
||||
(defenum |Qt.CoarseTimer| 1)
|
||||
(defenum |Qt.ColorMode_Mask| 3)
|
||||
(defenum |Qt.ColorOnly| 3)
|
||||
(defenum |Qt.ConicalGradientPattern| 17)
|
||||
(defenum |Qt.ContainsItemBoundingRect| 2)
|
||||
(defenum |Qt.ContainsItemShape| 0)
|
||||
(defenum |Qt.ControlModifier| 67108864)
|
||||
(defenum |Qt.CopyAction| 1)
|
||||
(defenum |Qt.CoverWindow| 65)
|
||||
(defenum |Qt.CrossCursor| 2)
|
||||
(defenum |Qt.CrossPattern| 11)
|
||||
(defenum |Qt.CustomContextMenu| 3)
|
||||
(defenum |Qt.CustomCursor| 25)
|
||||
(defenum |Qt.CustomDashLine| 6)
|
||||
(defenum |Qt.CustomGesture| 256)
|
||||
(defenum |Qt.CustomizeWindowHint| 33554432)
|
||||
(defenum |Qt.DashDotDotLine| 5)
|
||||
(defenum |Qt.DashDotLine| 4)
|
||||
(defenum |Qt.DashLine| 2)
|
||||
(defenum |Qt.DecorationPropertyRole| 28)
|
||||
(defenum |Qt.DecorationRole| 1)
|
||||
(defenum |Qt.DefaultContextMenu| 1)
|
||||
(defenum |Qt.DefaultLocaleLongDate| 7)
|
||||
(defenum |Qt.DefaultLocaleShortDate| 6)
|
||||
(defenum |Qt.Dense1Pattern| 2)
|
||||
(defenum |Qt.Dense2Pattern| 3)
|
||||
(defenum |Qt.Dense3Pattern| 4)
|
||||
(defenum |Qt.Dense4Pattern| 5)
|
||||
(defenum |Qt.Dense5Pattern| 6)
|
||||
(defenum |Qt.Dense6Pattern| 7)
|
||||
(defenum |Qt.Dense7Pattern| 8)
|
||||
(defenum |Qt.DescendingOrder| 1)
|
||||
(defenum |Qt.Desktop| 17)
|
||||
(defenum |Qt.DiagCrossPattern| 14)
|
||||
(defenum |Qt.Dialog| 3)
|
||||
(defenum |Qt.DiffuseAlphaDither| 8)
|
||||
(defenum |Qt.DiffuseDither| 0)
|
||||
(defenum |Qt.DirectConnection| 1)
|
||||
(defenum |Qt.DisplayPropertyRole| 27)
|
||||
(defenum |Qt.DisplayRole| 0)
|
||||
(defenum |Qt.DitherMode_Mask| 192)
|
||||
(defenum |Qt.Dither_Mask| 48)
|
||||
(defenum |Qt.DockWidgetArea_Mask| 15)
|
||||
(defenum |Qt.DotLine| 3)
|
||||
(defenum |Qt.DownArrow| 2)
|
||||
(defenum |Qt.DragCopyCursor| 19)
|
||||
(defenum |Qt.DragLinkCursor| 21)
|
||||
(defenum |Qt.DragMoveCursor| 20)
|
||||
(defenum |Qt.Drawer| 7)
|
||||
(defenum |Qt.EditRole| 2)
|
||||
(defenum |Qt.ElideLeft| 0)
|
||||
(defenum |Qt.ElideMiddle| 2)
|
||||
(defenum |Qt.ElideNone| 3)
|
||||
(defenum |Qt.ElideRight| 1)
|
||||
(defenum |Qt.EndNativeGesture| 1)
|
||||
(defenum |Qt.ExtraButton10| 4096)
|
||||
(defenum |Qt.ExtraButton11| 8192)
|
||||
(defenum |Qt.ExtraButton12| 16384)
|
||||
(defenum |Qt.ExtraButton13| 32768)
|
||||
(defenum |Qt.ExtraButton14| 65536)
|
||||
(defenum |Qt.ExtraButton15| 131072)
|
||||
(defenum |Qt.ExtraButton16| 262144)
|
||||
(defenum |Qt.ExtraButton17| 524288)
|
||||
(defenum |Qt.ExtraButton18| 1048576)
|
||||
(defenum |Qt.ExtraButton19| 2097152)
|
||||
(defenum |Qt.ExtraButton1| 8)
|
||||
(defenum |Qt.ExtraButton20| 4194304)
|
||||
(defenum |Qt.ExtraButton21| 8388608)
|
||||
(defenum |Qt.ExtraButton22| 16777216)
|
||||
(defenum |Qt.ExtraButton23| 33554432)
|
||||
(defenum |Qt.ExtraButton24| 67108864)
|
||||
|
|
|
|||
|
|
@ -4631,6 +4631,174 @@
|
|||
(defenum |QWebElement.CascadedStyle| 1)
|
||||
(defenum |QWebElement.ComputedStyle| 2)
|
||||
(defenum |QWebElement.InlineStyle| 0)
|
||||
(defenum |QWebEngineCertificateError.CertificateAuthorityInvalid| -202)
|
||||
(defenum |QWebEngineCertificateError.CertificateCommonNameInvalid| -200)
|
||||
(defenum |QWebEngineCertificateError.CertificateContainsErrors| -203)
|
||||
(defenum |QWebEngineCertificateError.CertificateDateInvalid| -201)
|
||||
(defenum |QWebEngineCertificateError.CertificateInvalid| -207)
|
||||
(defenum |QWebEngineCertificateError.CertificateNameConstraintViolation| -212)
|
||||
(defenum |QWebEngineCertificateError.CertificateNoRevocationMechanism| -204)
|
||||
(defenum |QWebEngineCertificateError.CertificateNonUniqueName| -210)
|
||||
(defenum |QWebEngineCertificateError.CertificateRevoked| -206)
|
||||
(defenum |QWebEngineCertificateError.CertificateTransparencyRequired| -214)
|
||||
(defenum |QWebEngineCertificateError.CertificateUnableToCheckRevocation| -205)
|
||||
(defenum |QWebEngineCertificateError.CertificateValidityTooLong| -213)
|
||||
(defenum |QWebEngineCertificateError.CertificateWeakKey| -211)
|
||||
(defenum |QWebEngineCertificateError.CertificateWeakSignatureAlgorithm| -208)
|
||||
(defenum |QWebEngineCertificateError.SslPinnedKeyNotInCertificateChain| -150)
|
||||
(defenum |QWebEngineDownloadItem.Attachment| 0)
|
||||
(defenum |QWebEngineDownloadItem.CompleteHtmlSaveFormat| 1)
|
||||
(defenum |QWebEngineDownloadItem.DownloadAttribute| 1)
|
||||
(defenum |QWebEngineDownloadItem.DownloadCancelled| 3)
|
||||
(defenum |QWebEngineDownloadItem.DownloadCompleted| 2)
|
||||
(defenum |QWebEngineDownloadItem.DownloadInProgress| 1)
|
||||
(defenum |QWebEngineDownloadItem.DownloadInterrupted| 4)
|
||||
(defenum |QWebEngineDownloadItem.DownloadRequested| 0)
|
||||
(defenum |QWebEngineDownloadItem.MimeHtmlSaveFormat| 2)
|
||||
(defenum |QWebEngineDownloadItem.SavePage| 3)
|
||||
(defenum |QWebEngineDownloadItem.SingleHtmlSaveFormat| 0)
|
||||
(defenum |QWebEngineDownloadItem.UnknownSaveFormat| -1)
|
||||
(defenum |QWebEngineDownloadItem.UserRequested| 2)
|
||||
(defenum |QWebEnginePage.AbnormalTerminationStatus| 1)
|
||||
(defenum |QWebEnginePage.Back| 0)
|
||||
(defenum |QWebEnginePage.CopyImageToClipboard| 17)
|
||||
(defenum |QWebEnginePage.CopyImageUrlToClipboard| 18)
|
||||
(defenum |QWebEnginePage.CopyLinkToClipboard| 15)
|
||||
(defenum |QWebEnginePage.CopyMediaUrlToClipboard| 20)
|
||||
(defenum |QWebEnginePage.Copy| 5)
|
||||
(defenum |QWebEnginePage.CrashedTerminationStatus| 2)
|
||||
(defenum |QWebEnginePage.Cut| 4)
|
||||
(defenum |QWebEnginePage.DownloadImageToDisk| 19)
|
||||
(defenum |QWebEnginePage.DownloadLinkToDisk| 16)
|
||||
(defenum |QWebEnginePage.DownloadMediaToDisk| 25)
|
||||
(defenum |QWebEnginePage.ErrorMessageLevel| 2)
|
||||
(defenum |QWebEnginePage.ExitFullScreen| 27)
|
||||
(defenum |QWebEnginePage.FileSelectOpenMultiple| 1)
|
||||
(defenum |QWebEnginePage.FileSelectOpen| 0)
|
||||
(defenum |QWebEnginePage.FindBackward| 1)
|
||||
(defenum |QWebEnginePage.FindCaseSensitively| 2)
|
||||
(defenum |QWebEnginePage.Forward| 1)
|
||||
(defenum |QWebEnginePage.Geolocation| 1)
|
||||
(defenum |QWebEnginePage.InfoMessageLevel| 0)
|
||||
(defenum |QWebEnginePage.InspectElement| 26)
|
||||
(defenum |QWebEnginePage.KilledTerminationStatus| 3)
|
||||
(defenum |QWebEnginePage.MediaAudioCapture| 2)
|
||||
(defenum |QWebEnginePage.MediaAudioVideoCapture| 4)
|
||||
(defenum |QWebEnginePage.MediaVideoCapture| 3)
|
||||
(defenum |QWebEnginePage.MouseLock| 5)
|
||||
(defenum |QWebEnginePage.NavigationTypeBackForward| 3)
|
||||
(defenum |QWebEnginePage.NavigationTypeFormSubmitted| 2)
|
||||
(defenum |QWebEnginePage.NavigationTypeLinkClicked| 0)
|
||||
(defenum |QWebEnginePage.NavigationTypeOther| 5)
|
||||
(defenum |QWebEnginePage.NavigationTypeReload| 4)
|
||||
(defenum |QWebEnginePage.NavigationTypeTyped| 1)
|
||||
(defenum |QWebEnginePage.NoWebAction| -1)
|
||||
(defenum |QWebEnginePage.NormalTerminationStatus| 0)
|
||||
(defenum |QWebEnginePage.OpenLinkInNewBackgroundTab| 31)
|
||||
(defenum |QWebEnginePage.OpenLinkInNewTab| 14)
|
||||
(defenum |QWebEnginePage.OpenLinkInNewWindow| 13)
|
||||
(defenum |QWebEnginePage.OpenLinkInThisWindow| 12)
|
||||
(defenum |QWebEnginePage.PasteAndMatchStyle| 11)
|
||||
(defenum |QWebEnginePage.Paste| 6)
|
||||
(defenum |QWebEnginePage.PermissionDeniedByUser| 2)
|
||||
(defenum |QWebEnginePage.PermissionGrantedByUser| 1)
|
||||
(defenum |QWebEnginePage.PermissionUnknown| 0)
|
||||
(defenum |QWebEnginePage.Redo| 8)
|
||||
(defenum |QWebEnginePage.ReloadAndBypassCache| 10)
|
||||
(defenum |QWebEnginePage.Reload| 3)
|
||||
(defenum |QWebEnginePage.RequestClose| 28)
|
||||
(defenum |QWebEnginePage.SavePage| 30)
|
||||
(defenum |QWebEnginePage.SelectAll| 9)
|
||||
(defenum |QWebEnginePage.Stop| 2)
|
||||
(defenum |QWebEnginePage.ToggleMediaControls| 21)
|
||||
(defenum |QWebEnginePage.ToggleMediaLoop| 22)
|
||||
(defenum |QWebEnginePage.ToggleMediaMute| 24)
|
||||
(defenum |QWebEnginePage.ToggleMediaPlayPause| 23)
|
||||
(defenum |QWebEnginePage.Undo| 7)
|
||||
(defenum |QWebEnginePage.Unselect| 29)
|
||||
(defenum |QWebEnginePage.ViewSource| 32)
|
||||
(defenum |QWebEnginePage.WarningMessageLevel| 1)
|
||||
(defenum |QWebEnginePage.WebBrowserBackgroundTab| 3)
|
||||
(defenum |QWebEnginePage.WebBrowserTab| 1)
|
||||
(defenum |QWebEnginePage.WebBrowserWindow| 0)
|
||||
(defenum |QWebEnginePage.WebDialog| 2)
|
||||
(defenum |QWebEngineProfile.AllowPersistentCookies| 1)
|
||||
(defenum |QWebEngineProfile.DiskHttpCache| 1)
|
||||
(defenum |QWebEngineProfile.ForcePersistentCookies| 2)
|
||||
(defenum |QWebEngineProfile.MemoryHttpCache| 0)
|
||||
(defenum |QWebEngineProfile.NoCache| 2)
|
||||
(defenum |QWebEngineProfile.NoPersistentCookies| 0)
|
||||
(defenum |QWebEngineScript.ApplicationWorld| 1)
|
||||
(defenum |QWebEngineScript.Deferred| 0)
|
||||
(defenum |QWebEngineScript.DocumentCreation| 2)
|
||||
(defenum |QWebEngineScript.DocumentReady| 1)
|
||||
(defenum |QWebEngineScript.MainWorld| 0)
|
||||
(defenum |QWebEngineScript.UserWorld| 2)
|
||||
(defenum |QWebEngineSettings.Accelerated2dCanvasEnabled| 17)
|
||||
(defenum |QWebEngineSettings.AllowRunningInsecureContent| 22)
|
||||
(defenum |QWebEngineSettings.AutoLoadIconsForPage| 18)
|
||||
(defenum |QWebEngineSettings.AutoLoadImages| 0)
|
||||
(defenum |QWebEngineSettings.CursiveFont| 4)
|
||||
(defenum |QWebEngineSettings.DefaultFixedFontSize| 3)
|
||||
(defenum |QWebEngineSettings.DefaultFontSize| 2)
|
||||
(defenum |QWebEngineSettings.ErrorPageEnabled| 12)
|
||||
(defenum |QWebEngineSettings.FantasyFont| 5)
|
||||
(defenum |QWebEngineSettings.FixedFont| 1)
|
||||
(defenum |QWebEngineSettings.FocusOnNavigationEnabled| 20)
|
||||
(defenum |QWebEngineSettings.FullScreenSupportEnabled| 14)
|
||||
(defenum |QWebEngineSettings.HyperlinkAuditingEnabled| 10)
|
||||
(defenum |QWebEngineSettings.JavascriptCanAccessClipboard| 3)
|
||||
(defenum |QWebEngineSettings.JavascriptCanOpenWindows| 2)
|
||||
(defenum |QWebEngineSettings.JavascriptEnabled| 1)
|
||||
(defenum |QWebEngineSettings.LinksIncludedInFocusChain| 4)
|
||||
(defenum |QWebEngineSettings.LocalContentCanAccessFileUrls| 9)
|
||||
(defenum |QWebEngineSettings.LocalContentCanAccessRemoteUrls| 6)
|
||||
(defenum |QWebEngineSettings.LocalStorageEnabled| 5)
|
||||
(defenum |QWebEngineSettings.MinimumFontSize| 0)
|
||||
(defenum |QWebEngineSettings.MinimumLogicalFontSize| 1)
|
||||
(defenum |QWebEngineSettings.PictographFont| 6)
|
||||
(defenum |QWebEngineSettings.PluginsEnabled| 13)
|
||||
(defenum |QWebEngineSettings.PrintElementBackgrounds| 21)
|
||||
(defenum |QWebEngineSettings.SansSerifFont| 3)
|
||||
(defenum |QWebEngineSettings.ScreenCaptureEnabled| 15)
|
||||
(defenum |QWebEngineSettings.ScrollAnimatorEnabled| 11)
|
||||
(defenum |QWebEngineSettings.SerifFont| 2)
|
||||
(defenum |QWebEngineSettings.SpatialNavigationEnabled| 8)
|
||||
(defenum |QWebEngineSettings.StandardFont| 0)
|
||||
(defenum |QWebEngineSettings.TouchIconsEnabled| 19)
|
||||
(defenum |QWebEngineSettings.WebGLEnabled| 16)
|
||||
(defenum |QWebEngineSettings.XSSAuditingEnabled| 7)
|
||||
(defenum |QWebEngineUrlRequestInfo.NavigationTypeBackForward| 3)
|
||||
(defenum |QWebEngineUrlRequestInfo.NavigationTypeFormSubmitted| 2)
|
||||
(defenum |QWebEngineUrlRequestInfo.NavigationTypeLink| 0)
|
||||
(defenum |QWebEngineUrlRequestInfo.NavigationTypeOther| 5)
|
||||
(defenum |QWebEngineUrlRequestInfo.NavigationTypeReload| 4)
|
||||
(defenum |QWebEngineUrlRequestInfo.NavigationTypeTyped| 1)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeCspReport| 16)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeFavicon| 12)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeFontResource| 5)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeImage| 4)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeMainFrame| 0)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeMedia| 8)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeObject| 7)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypePing| 14)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypePluginResource| 17)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypePrefetch| 11)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeScript| 3)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeServiceWorker| 15)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeSharedWorker| 10)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeStylesheet| 2)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeSubFrame| 1)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeSubResource| 6)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeUnknown| 255)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeWorker| 9)
|
||||
(defenum |QWebEngineUrlRequestInfo.ResourceTypeXhr| 13)
|
||||
(defenum |QWebEngineUrlRequestJob.NoError| 0)
|
||||
(defenum |QWebEngineUrlRequestJob.RequestAborted| 3)
|
||||
(defenum |QWebEngineUrlRequestJob.RequestDenied| 4)
|
||||
(defenum |QWebEngineUrlRequestJob.RequestFailed| 5)
|
||||
(defenum |QWebEngineUrlRequestJob.UrlInvalid| 2)
|
||||
(defenum |QWebEngineUrlRequestJob.UrlNotFound| 1)
|
||||
(defenum |QWebFrame.AllLayers| 255)
|
||||
(defenum |QWebFrame.ContentsLayer| 16)
|
||||
(defenum |QWebFrame.PanIconLayer| 64)
|
||||
|
|
|
|||
|
|
@ -133,7 +133,7 @@
|
|||
|
||||
(defun indicate* ()
|
||||
(let ((root (if (= (qt-object-id *q*) #.(qid "QQuickWindow"))
|
||||
(! "contentItem"*q*)
|
||||
(! "contentItem" *q*)
|
||||
(! "rootObject" *q*))))
|
||||
(indicate-start* *q* (child root))))
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
,@set-nil)))
|
||||
|
||||
(defun load-ui-related-qt-modules ()
|
||||
(dolist (module (list :help :multimedia :svg :webkit))
|
||||
(dolist (module (list :help :multimedia :svg :webengine :webkit))
|
||||
(eql:qrequire module :quiet)))
|
||||
|
||||
(defun run (&optional (ui.h "ui.h") (ui.lisp "ui.lisp") (ui-package :ui) properties)
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ int main(int argc, char** argv) {
|
|||
|
||||
EQL::ini(argv); // best initialized here
|
||||
|
||||
QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts); // for Qt WebEngine
|
||||
QApplication qapp(argc, argv);
|
||||
QStringList args(QCoreApplication::arguments());
|
||||
if(args.contains("-h") || (args.contains("--help"))) {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,8 @@
|
|||
#+msvc
|
||||
(setf c::*compile-in-constants* t)
|
||||
|
||||
(defparameter *all-wrappers* (loop :for i :from 1 :to 12 :collect (format nil "all-wrappers-~D" i)))
|
||||
(defparameter *all-wrappers* (append (loop :for i :from 1 :to 12 :collect (format nil "all-wrappers-~D" i))
|
||||
(loop :for i :from 1 :to 2 :collect (format nil "all-wrappers-webengine-~D" i))))
|
||||
|
||||
(defparameter *lisp-files* (append '("x" "package" "ini"
|
||||
"enums1" "enums2" "enums3" "enums4" "enums5"
|
||||
|
|
|
|||
23
src/module_webengine.pro
Normal file
23
src/module_webengine.pro
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
QT += webenginewidgets printsupport uitools
|
||||
TEMPLATE = lib
|
||||
CONFIG += dll no_keywords release
|
||||
LIBS += -L.. -lecl -leql5
|
||||
TARGET = eql5_webengine
|
||||
DESTDIR = ../
|
||||
OBJECTS_DIR = ./tmp/webengine/
|
||||
MOC_DIR = ./tmp/webengine/
|
||||
|
||||
macx:QT += network
|
||||
|
||||
win32 {
|
||||
include(windows.pri)
|
||||
}
|
||||
|
||||
HEADERS += gen/webengine/_ini.h \
|
||||
gen/webengine/_ini2.h \
|
||||
gen/webengine/_q_classes.h \
|
||||
gen/webengine/_n_classes.h \
|
||||
gen/webengine/_q_methods.h \
|
||||
gen/webengine/_n_methods.h
|
||||
|
||||
SOURCES += gen/webengine/_ini.cpp
|
||||
Loading…
Add table
Add a link
Reference in a new issue