Skip to content

3rd Party Software

Combining Qt with 3rd party libraries or components? Ask here!
1.1k Topics 5.5k Posts
  • 0 Votes
    6 Posts
    2k Views
    V

    I did a little search around segmentation fault in this case, gonna change my Qt version to see if that will make a difference.

  • QwtPlotMagnifier signal

    2
    0 Votes
    2 Posts
    1k Views
    SGaistS

    Hi and welcome to devnet,

    AFAIK and after a quick look in the documentation, there doesn't seem to be such a signal

  • Linking QtGstreamer

    2
    0 Votes
    2 Posts
    2k Views
    SGaistS

    Hi,

    You can find this documentation in qmake's manual.

    Are you sure that the pc files from QtGstreamer can be find by pkg-config ?

  • Qwtplot3d with Qt 5, Qt Creator and MinGW?

    1
    0 Votes
    1 Posts
    3k Views
    No one has replied
  • Qt5GStreamer namespace reference errors

    2
    0 Votes
    2 Posts
    2k Views
    C

    Hello

    I am trying to do something similar. I downloaded QtGStreamer library. I compiled at installed it at /usr/local/TrollTech/Qt-4.8.5. When I try to run the example it did not find pkgconfig QtGStreamer-0.10.

    I can see that QTStreamer has installed all their libs/pkconfig at /usr/local/TrollTech/Qt-4.8.5/lib/i386-linux.gnu and I think QtCreator is looking for them at /usr/local/TrollTech/Qt-4.8.5/lib/

    How can I configure QtCreator to look for this other directory?

    Thanks

  • 0 Votes
    8 Posts
    2k Views
    T

    please also refer to the following post for more common errors that happend
    "":http://qt-project.org/forums/viewthread/33524/

  • Trouble building a custom plugin

    3
    0 Votes
    3 Posts
    1k Views
    T

    can someone please tell the steps for deploying a custom plugin .
    code not required just the dteps as i am having difficulties deploying

  • 0 Votes
    5 Posts
    5k Views
    T

    Hi Everyone,

    Thanks for your valuable reply. I am very comfort with qt creator IDE. Part my code was in .net active X dll ,that's the reason i like to integrate qt with Visual studio. I have just tried simple " helloworld" program in Qt creator.I really impressed with Qt creator IDE itself.

    Regards,

    Tamil

  • Qt with openCV

    2
    0 Votes
    2 Posts
    17k Views
    B

    SOLVED!

    This tutorial works well: http://stackoverflow.com/questions/15881913/how-to-link-opencv-in-qtcreator-and-use-qt-library

    Building OpenCV with MinGW is a must!
    ...and then everything is working fine

  • Error when build qwt with qt 5.1.1(mingw48)

    5
    0 Votes
    5 Posts
    8k Views
    S

    [quote author="SurlyDuff" date="1380686616"]Hi cokefish,

    Creating a system environment called LIBRARY_PATH and setting it to C:\Qt\5.1.1\mingw48_32\bin solved the problem for me.

    On your system, you may have to set the LIBRARY_PATH environment variable to C:\Qt\Qt5.1.1\5.1.1\mingw48_32\bin[/quote]

    solved it for me too, thank you!

    I have another question. Before trying setting the LIBRARY_PATH variable I've added LIBS += -L"QTLIBDIR..." in the qwt.pro file. Why didn't this work ?

  • 0 Votes
    3 Posts
    1k Views
    K

    Why you do not use a "QtSerialPort":http://qt-project.org/wiki/QtSerialPort library instead of QExtSerialPort?

  • 0 Votes
    3 Posts
    962 Views
    K

    closing

  • [solved]ITK-VTK-Qt:Linking problem

    6
    0 Votes
    6 Posts
    5k Views
    V

    Hi, i was linking the libraries with the older installed version. I had two versions of ITK and VTK libs installed. I changed the path, everything was fine. Thanks a lot for your guidance...

  • 0 Votes
    3 Posts
    3k Views
    A

    Thanks a lot uwer.
    It seems I had stopped one step too soon when walking down from qwt_plot.

  • PDF Rendering

    4
    0 Votes
    4 Posts
    3k Views
    L

    [quote author="langi667" date="1380449159"]Yes I already read the article, but all listed rendering libs are GPL and their seeding licenses are way to expensive. [/quote]

    If you want to do it yourself the article provides ideas how to use QPrinter to create a PDF. Btw some of the libraries stated at the article are with LGPL and Apache 2.0 licence.

  • [solved] Call qmake from cmake

    2
    0 Votes
    2 Posts
    2k Views
    M

    Hi,

    the simplest way is to call EXECUTE_PROCESS.

  • 0 Votes
    4 Posts
    2k Views
    SGaistS

    No worries, did you make it work ?

  • 0 Votes
    4 Posts
    3k Views
    A

    [quote author="koahnig" date="1379584558"]What you are referring to is not the general case of set(Raw)Samples.
    Use "QPlotCurve::setSamples":http://qwt.sourceforge.net/class_qwt_plot_curve.html#a67b24f3663484ff5e973a288c6071b2a
    AFAIK this refers to the more common usage within QWT . [/quote]
    If I understand correctly, you advise to use QVectors.
    Hmm... I fear this to be far too "heavy" for what I want.
    Thanks anyway for helping.

  • Third party jar to use with qt5 for android

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Using Cypress USB Library CyAPI.dll[solved]

    6
    0 Votes
    6 Posts
    8k Views
    A

    Hi.

    Good to see someone else is using this library to do things!

    If you have installed the Cypress USB Suite 3.4.7. There are files in C:/Cypress/Cypress Suite USB 3.4.7/CyAPI

    You want the CyAPI.lib in the lib/x86/ folder (I used the one from x64, which created the problem). Put this in your Qt project directory lib/ then grab all the header files in C:\Cypress\Cypress Suite USB 3.4.7\CyAPI\inc and put them in your project directory inc/ folder

    You can then use the code here to link the library to your project:

    @
    #Add CyAPI lib
    win32: LIBS += -L$$PWD/lib/ -lCyAPI
    INCLUDEPATH += $$PWD/inc
    DEPENDPATH += $$PWD/inc
    @

    Make sure when you use the library, include <Windows.h> because CyAPI uses a lot of the windows definitions.