flutter: Renamed KDDockWidgets package to KDDockWidgetsBindings
The former is needed for the KDDW flutter frontend, which will use the latter to access the C++ API. Using two packages instead of one, since one is generated by dartagnan.
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
This file is part of KDDockWidgets.
|
||||
|
||||
SPDX-FileCopyrightText: 2019-2022 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
|
||||
Author: Sérgio Martins <sergio.martins@kdab.com>
|
||||
|
||||
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
Contact KDAB at <info@kdab.com> for commercial licensing options.
|
||||
*/
|
||||
|
||||
//tag=1040
|
||||
#include "KDDockWidgetsBindings_exports.h"
|
||||
#include <ViewFactory.h>
|
||||
#include <qstring.h>
|
||||
#include <View.h>
|
||||
#include <qobject.h>
|
||||
#include <qlist.h>
|
||||
#include <qbytearray.h>
|
||||
|
||||
namespace KDDockWidgetsBindings_wrappersNS {
|
||||
//tag=1017
|
||||
class ViewFactory_wrapper : public ::KDDockWidgets::ViewFactory {public:
|
||||
~ViewFactory_wrapper();
|
||||
//tag=1041
|
||||
ViewFactory_wrapper();
|
||||
//tag=1041
|
||||
virtual KDDockWidgets::View * createRubberBand(KDDockWidgets::View * parent)const;
|
||||
//tag=1008
|
||||
virtual KDDockWidgets::View * createRubberBand_nocallback(KDDockWidgets::View * parent)const;
|
||||
//tag=1041
|
||||
static QString tr(const char * s,const char * c,int n);
|
||||
//tag=1042
|
||||
typedef KDDockWidgets::View * (*Callback_createRubberBand)(void *,KDDockWidgets::View * parent);Callback_createRubberBand m_createRubberBandCallback = nullptr;
|
||||
|
||||
};
|
||||
}extern "C" {
|
||||
|
||||
//tag=1067
|
||||
// KDDockWidgets::ViewFactory::ViewFactory()
|
||||
KDDockWidgetsBindings_EXPORT void * c_KDDockWidgets__ViewFactory__constructor();
|
||||
|
||||
//tag=1067
|
||||
// KDDockWidgets::ViewFactory::createRubberBand(KDDockWidgets::View * parent) const
|
||||
KDDockWidgetsBindings_EXPORT void* c_KDDockWidgets__ViewFactory__createRubberBand_View(void *thisObj,void* parent_);
|
||||
|
||||
//tag=1067
|
||||
// KDDockWidgets::ViewFactory::tr(const char * s, const char * c, int n)
|
||||
KDDockWidgetsBindings_EXPORT void* c_static_KDDockWidgets__ViewFactory__tr_char_char_int(const char * s,const char * c,int n);
|
||||
|
||||
//tag=1066
|
||||
KDDockWidgetsBindings_EXPORT void c_KDDockWidgets__ViewFactory__destructor(void *thisObj);
|
||||
|
||||
//tag=1046
|
||||
KDDockWidgetsBindings_EXPORT void c_KDDockWidgets__ViewFactory__registerVirtualMethodCallback(void *ptr, void *callback, int methodId);
|
||||
//tag=1047
|
||||
KDDockWidgetsBindings_EXPORT void c_KDDockWidgets__ViewFactory_Finalizer(void *, void *cppObj, void *);}
|
||||
Reference in New Issue
Block a user