Create a plugins
-
i create 2 projects. in the first project i create few objects(declerativeItems) and used the qmlRegisterType to create the connection to qml.
now i would like to use this objects in the second project, without to include the files in the pro file.....
how can i do that correctly?
i tried to use the CONFIG += ... but this does not work. -
Use INCLUDEPATH, LIBS and make sure your first program exports all the necessary objects you want to use in your second plugin (like you would if you were building a shared library).
That means in your first program you have to have something like:
.pro
@
DEFINES += MY_LIBRARY
@
global.h
@
#include <QtCore/qglobal.h>#if defined(MY_LIBRARY)
define MYSHARED_EXPORT Q_DECL_EXPORT
#else
define MYSHARED_EXPORT Q_DECL_IMPORT
#endif
@
And your classes with
@
class MYSHARED_EXPORT class1
@And you should adjust the defines (MY_LIBRARY, MYSHARED_EXPORT) to fit your plugin, they should be different for every lib you do.
-
This "article":http://developer.qt.nokia.com/doc/qt-4.7/qml-extending-tutorial-index.html explains how to extend QML using C++ and in particular section 6 shows you how to make your custom QDeclarative items into a reusable plugin.
-
in the second project- when i want to use the objects from the first project in qml file , i got this error: module "Operands" is not installed - for the line : import Operands 1.0
i created an object OperandItem in the 1st project, and write :
qmlRegisterType<OperandItem> ("Operands", 1, 0, "MYOperand");and i am trying to use this from the qml in the 2nd project... in the qml the MYOperand is known, but i got this error .
-
- in the 1st project i write :
@
#if defined(MY_NGWIDGETS_LIBRARY)define MYSHARED_EXPORT Q_DECL_EXPORT
#else
define MYSHARED_EXPORT Q_DECL_IMPORT
#endif
class MYSHARED_EXPORT MyClass{...}
@for each class that i want to use in the 2nd project.
2.in the pro file (of the 1st project) i write:
@
TARGET = NGWidgets
TEMPLATE = app
DEFINES += MY_NGWIDGETS_LIBRARY
CONFIG += qt plugin
DESTDIR = app
OBJECTS_DIR = tmp
MOC_DIR = tmp
@- i also create a qmldir file and write:
@
plugin NGWidgets-plugins app
@then i tried to use the plugin from the 2nd project.
but it still say that the modules are not installedEdit: Please use @ tags to delimit blocks of code etc.
-
What process? Can you post your 2 projects please? Either that or be alot more descriptive in what you are doing. You are not giving us enough information to understand what the problem is.
You will not be able to execute your 1st project since that will just be a plugin library not an application.
-
1st project:
operanditem.h
@ #if defined(MY_NGWIDGETS_LIBRARY)
define MYSHARED_EXPORT Q_DECL_EXPORT
#else
define MYSHARED_EXPORT Q_DECL_IMPORT
#endif
class MYSHARED_EXPORT OperandItem : public QObject
{.....}@main.c
@qmlRegisterType<OperandItem> (“Operands”, 1, 0, “MYOperand”);@
pro file
@QT += core gui
QT += declarative
QT += network
QT += xmlTARGET = NGWidgets
TEMPLATE = lib
DEFINES += MY_NGWIDGETS_LIBRARY
CONFIG += qt plugin
DESTDIR = lib
OBJECTS_DIR = tmp
MOC_DIR = tmpSOURCES +=
main.cpp \
Operands/operanditem.cpp
HEADERS +=
Operands/operanditem.h@
2nd project:
in some qml file i write:
@ import QtQuick 1.0
import Operands 1.0Rectangle{
MYOperand{}
}@ -
Please have another read through this "article":http://developer.qt.nokia.com/doc/qt-4.7/declarative-tutorials-extending-chapter6-plugins.html#id-8c522ec4-43c2-4344-a4a4-148efcc18b7d and you'll see that you also need to write a plugin class derived from QDeclarativeExtensionPlugin that your 2nd project's QML engine will call the registerTypes() function of in order to register them with your 2nd project.
This plugin class seems to be completely missing from you 1st project.
-
in the pro file i write:
@QTPLUGIN += NGWidgets
LIBS += -L"C:/Qt/Projects/NGWidgets-build-desktop/debug"
LIBS += -lNGWidgets@in the folder "C:/Qt/Projects/NGWidgets-build-desktop/debug"
i have the dll (NGWidgets.dll)but i got the error:
:-1: error: cannot find -lngwidgetsd
collect2: ld returned 1 exit status -
I don't think that your 2nd project's .pro file needs to mention the NGWidgets plugin lib at all. The qmldir file tells the QDeclarativeEngine where it can dllopen your plugin library from.
Also the error message you posted does not match the .pro file you have posted the error message is referring to ngwidgetsd.dll whereas the .pro file mentions NGWidgets.dll (not the trailing d).
In your 1st project (the plugin one) make sure you are using the Q_EXPORT_PLUGIN2 macro as is mentioned in the docs:
@
Q_EXPORT_PLUGIN2( NGWidgets, NGWidgetsPlugin )
@where I have assumed that your plugin class (the one derived from QDeclarativeExtensionPlugin) is called NGWidgetsPlugin (since you have not shown it to us).
Try using a qmldir file for your 2d project that looks like this:
@
plugin NGWidgets C:/Qt/Projects/NGWidgets-build-desktop/debug
@and in your .qml file using
@
import NGWidgets 1.0
@ -
that exaclly what i did - and i create alse qmldir file in the first project (as shown in the example)....
in this link : http://doc.qt.nokia.com/latest/plugins-howto.html
they say that the pro file of the 2nd project should be changed... -
i can't post all my code. but this is the main classes:
1st project :
ngwidgetsplugin.h
@#include <QDeclarativeExtensionPlugin>
class NGWidgetsPlugin: public QDeclarativeExtensionPlugin
{
Q_OBJECT
public:
void registerTypes(const char *uri);
};@ngwidgetsplugin.cpp
@#include <QtDeclarative>
#include <QtPlugin>
//.....more includes for filesvoid NGWidgetsPlugin::registerTypes(const char *uri)
{
qmlRegisterType<OperandItem> (uri, 1, 0, "MYOperand");//.................
}
Q_EXPORT_PLUGIN2(NGWidgets, NGWidgetsPlugin)@
.pro
@QT += core gui
QT += declarative
QT += network#TARGET = NGWidgets
TEMPLATE = lib
CONFIG += qt plugin
DESTDIR = lib
OBJECTS_DIR = tmp
MOC_DIR = tmpSOURCES += ...
HEADERS += ...
OTHER_FILES += ...
@qmldir
@plugin NGWidgets lib@
2nd project - use the plugin
.pro
@QT += core gui
QT += declarative
QT += networkSOURCES += ...
HEADERS += ...
OTHER_FILES += ...@qmldir
@plugin NGWidgets C:/Qt/Projects/NGWidgets-build-desktop/debug @
app.qml
@import QtQuick 1.0
import NGWidgets 1.0Rectangle
{
MYOperand{...}
}@
i got the error : module "NGWidgets" is not installed
for line 2