Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. plugins
    Log in to post
    • All categories
    • Morris83

      Unsolved QML plugin: how to export mixed C++ and QML content
      QML and Qt Quick • qml plugins designer qmltypes qtquick • • Morris83

      1
      0
      Votes
      1
      Posts
      188
      Views

      No one has replied

    • D

      Unsolved Qt Android gstreamer , qtquick2videosink slow down video.
      Mobile and Embedded • android gstreamer video qml plugins • • DkDkDk

      9
      0
      Votes
      9
      Posts
      780
      Views

      SGaist

      Sorry, I meant for video encoding.

      In any case, I would separate the streaming and the preview if possible. Generating the network stream for one or more device can be very heavy CPU wise.

    • T

      Unsolved How to enable ClangRefactoring and ClangPchManager plugin ?
      Installation and Deployment • building clang qtcreator plugins build steps • • TBRZ

      1
      0
      Votes
      1
      Posts
      294
      Views

      No one has replied

    • U

      Unsolved Problem with Qt low-level dynamic plugins: The specified module could not be foundd
      General and Desktop • plugins dynamic link • • uPrizZ

      5
      0
      Votes
      5
      Posts
      237
      Views

      SGaist

      Hi,

      You should start your application with the QT_DEBUG_PLUGINS environment variable set to 1. It should show more information with regard to plugin loading.

    • R

      Unsolved Qt System trayicon deployment issues on Linux Distros - Fedora 25,28,30 & CentOs 8.1.1
      Installation and Deployment • qsystemtrayicon linux linux fedora op plugins deployment • • rashida

      2
      0
      Votes
      2
      Posts
      301
      Views

      SGaist

      Hi and welcome to devnet,

      AFAIK, there's no such list. Distributions may provide tray icon through different means and some patches Qt to support their custom system.

      Did you try on these distribution with their own versions of Qt to see how it's working ?

    • Martyn McFarquhar

      Solved Implementing plugin dependencies
      General and Desktop • plugins linux linuxdeployqt dependencies libraries • • Martyn McFarquhar

      13
      0
      Votes
      13
      Posts
      892
      Views

      kshegunov

      The only drawback is that 3rd-party modules cannot depend on one another unless they are submitted for inclusion in the core pool of modules. But it seems like this is just the price to pay for this kind of system?

      Sorry for the long delay, I was traveling and had no time to actually look at the forum.
      Yes, I would say that your summary is correct, and in that light I'd say what @VRonin had suggested as a way to build up the dependencies is probably best. That is - you have a set of core libraries that provide whatever they provide (which was what @SGaist mentioned in passing) and you stick to runtime loaded plugins being self-contained units that can't and/or won't depend on one another.

    • S

      Unsolved qtcreator searchpath for qml
      QML and Qt Quick • plugins path environment modulepath qml path • • SwePtr

      2
      0
      Votes
      2
      Posts
      170
      Views

      No one has replied

    • V

      Learn how to create Qt Creator plugins
      Tools • qt creator plugins qtws19 • • vivaladav

      1
      3
      Votes
      1
      Posts
      166
      Views

      No one has replied

    • A

      Unsolved making a Qt Designer plugin with python -- plugins not visible in Designer
      Tools • pyqt5 plugins qt designer qtdesigner designer plugin • • anp405

      2
      0
      Votes
      2
      Posts
      1809
      Views

      I

      @anp405, my first guess would be that by setting PYTHONPATH you are losing the location of PyQt5 package. This depends on your Python and environment setup, but if there is some PYTHONPATH existing, you are overriding it completely instead of complementing. You can verify this by opening a new command line session, setting PYTHONPATH to wherever your code sets it, then running Python interpreter and trying to import PyQt5.

      Another guess would be that your child process uses different Python environment (e.g. built-in system Python 2), which does not have PyQt5 installed in its site-packages.

    • S

      Unsolved Creating MySQL plugin for QtCreator, mingw73_64 without full Qt recompile.
      General and Desktop • plugins mysql 64bit • • Silderan

      16
      0
      Votes
      16
      Posts
      1452
      Views

      SGaist

      One thing you can try is to use the "-I" and "-L" options of the configure script passing there the paths to your MySQL include and library folder.

    • DSpider

      Unsolved QWT plugin into QT Designer specified module could not be found
      Installation and Deployment • plugins qtcreator qtdesigner qwt • • DSpider

      7
      0
      Votes
      7
      Posts
      1452
      Views

      Pablo J. Rogina

      @DSpider great! please don't forget to mark your post as solved. Thanks.

    • ResistorInTheDark

      Solved Difficulties with Getting MySQL to Work with Qt
      General and Desktop • mysql driver plugins mac os x • • ResistorInTheDark

      10
      0
      Votes
      10
      Posts
      1673
      Views

      ResistorInTheDark

      @JonB @MrShawn

      Thanks you two for clarifying.

      After downloading/installing a MySQL server in a school computer, I could build/run my app on my computer and insert/update data successfully to the server. That part's all good. Thanks from y'all.

      Marking as solved.

    • Vagabond

      Unsolved (Re)building Qt plugin libraries from source
      General and Desktop • plugins • • Vagabond

      5
      0
      Votes
      5
      Posts
      834
      Views

      sierdzio

      You should only use -developer-build is you plant to contribute to Qt. If you're building for yourself, there is no need to add that flag.

    • M

      Unsolved How to load multiple custom plugins for form editor in Qt Creator
      Tools • plugins custom widget metadata • • moditg

      4
      0
      Votes
      4
      Posts
      930
      Views

      SGaist

      Why do you have your plugins and application all in the same project ?

    • F

      Solved QtPluginLoader fails to load plugin if I use Tensorflow functions in it
      General and Desktop • plugins plugin windows load • • fugreh

      4
      0
      Votes
      4
      Posts
      563
      Views

      F

      Thanks for your input, the problem was that the DLL was actually not in the place where it should have been, my mistake.

    • Qjay

      Solved Creating Simple Plugin for Qt creator
      General and Desktop • qtcreator plugin qt creator help plugins qtplugin • • Qjay

      4
      0
      Votes
      4
      Posts
      1328
      Views

      Qjay

      SOLUTION

      with the help of @mrjj i found solution. It's just that instructions were not clear on tutorial

      Steps

      get the Qt creator source : git clone --recursive https://code.qt.io/qt-creator/qt-creator.git

      set qmake version . your qmake version should be close to the qt version you are using . for e.g. if you are building for 5.10 your qmake should also use 5.10.

      you can set qmake version by

      sudo mv /usr/lib/x86_64-linux-gnu/qt-default/qtchooser/default.conf /usr/lib/x86_64-linux-gnu/qt-default/qtchooser/default.conf_orig sudo vim /usr/share/qtchooser/my_Qt_5.10.0_Desktop_gcc_x64.conf <Qt_dir>/5.10.0/gcc_64/bin <Qt_dir>/5.10.0/gcc_64/lib ln -s /usr/share/qtchooser/my_Qt_5.10.0_Destop_gcc_x64.conf /usr/lib/x86_64-linux-gnu/qt-default/qtchooser/default.conf

      check qmake by qmake --version

      mkdir qt-creator-build
      cd qt-creator-build
      qmake ../qt-creator/qtcreator.pro

      4. ``` cd qt-creator-build make qmake_all make -j <number-of-cpu-cores+1>

      wait for some time . it will take long time to build.

      now you have both source and build of Qt creator . Now just follow the wizard and point the qt soruce and build locations

      build and run

      voila !! \0/

    • Aras

      Solved Plugin architecture question
      General and Desktop • qml plugins c++ qt5.9 • • Aras

      4
      0
      Votes
      4
      Posts
      1192
      Views

      Aras

      @kshegunov yes that is exactly what I was wondering. I was not sure if plugins can be loaded into other C++ plugins or not. I will give this a shot.

      @SGaist good point about creating a library. I think isolating the communication API into a dynamic library would be an even better solution as you suggested. I will have to do some refactoring.

      Thank you both for sharing the quick and helpful response!

    • S

      Unsolved Create application plugin
      General and Desktop • plugins qt5 qt 5.4.1 • • swordfish

      3
      0
      Votes
      3
      Posts
      794
      Views

      mrjj

      Hi
      Also for my first attempt i used
      http://doc.qt.io/qt-5/qtwidgets-tools-echoplugin-example.html

      which is pretty small and easy to understand.

    • A

      Unsolved QML Map and WMS cartographic server
      QML and Qt Quick • map plugins • • Abstraction

      2
      1
      Votes
      2
      Posts
      1277
      Views

      P

      I've been trying to find the same solution... and have come across the same issues.

      QGIS can show WMS maps via Qt. So in theory you could pull apart its source, but then you're dealing with GPL issues.

      Has anyone written a WMS plugin and published it?