Skip to content

3rd Party Software

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

    Closing thread due to duplicate post.

  • 0 Votes
    1 Posts
    1k Views
    No one has replied
  • XML merger

    4
    0 Votes
    4 Posts
    3k Views
    A

    First of all, this has nothing to do with Beta testing, so I'm moving it. It also has little to do with Qt, as xerces isn't a Qt technology if I'm not mistaken. So, moving to 3-rd party for now.

  • [Solved] Using Third Party Library

    4
    0 Votes
    4 Posts
    3k Views
    ?

    Done!

    Thanks both of you!

  • 0 Votes
    3 Posts
    4k Views
    V

    Thanks! I had actually figured out another way as well!

    @
    zoomer->setZoomStack(zoomer->zoomStack(), 0);
    @

    My other issue was I was not initializing my stack after I set my data points

    @
    setZoomBase();
    @

  • Can QT work with "C" instead of C++ ?

    2
    0 Votes
    2 Posts
    2k Views
    L

    In short, no.

    Qt is "free":http://qt.nokia.com/products/licensing/ as in the GNU LGPL 2.1.

  • Information_schema on sqlite

    2
    0 Votes
    2 Posts
    4k Views
    L

    @
    QSqlQuery query("PRAGMA table_info(" + tableName +")");
    @

  • Qt + powervr

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Installing Necessitas on Windows

    9
    0 Votes
    9 Posts
    4k Views
    P

    Hi! I am here again, well, it's nice to have Necessitas installed...but... again... I have installed step by step, one thing by another but, I have mentioned, it already installs QtCreator into Necessitas SDK, but I don't want to have it twice (I am using Qt as a desktop developer), I just want to install Necessitas as one type of project into QtCreator, and not have two IDEs to develop something...

  • PySide + Sqlite = Driver not loaded

    3
    0 Votes
    3 Posts
    4k Views
    K

    welcome to devnet

    Good to know that your problem has been solved even so the community was in your case not of much help ;-)

    Special thanks also for sharing the reasons of your problem. This allows at least others to learn from your case.

  • 0 Votes
    1 Posts
    4k Views
    No one has replied
  • Unable to compile qextserialport on Mac OS10.6

    7
    0 Votes
    7 Posts
    4k Views
    J

    Ok, I think I fixed it. I ended up deleting all of my old version of this project and all of the build directories. Once I did this, it compiled. Now need to test the ability to run.

    Ken

  • 0 Votes
    7 Posts
    4k Views
    L

    Judging from the symbol names I would say that you are trying to link dynamically against a static version of the library. Make sure QEXTSERIALPORT_BUILD_SHARED is not defined.

  • QextSerialPort build problem

    4
    0 Votes
    4 Posts
    3k Views
    D

    QextSerialPort 1.2-beta1 has been released, perhaps you can give a try to it.

    http://code.google.com/p/qextserialport/wiki/QextSerialPort_1_2_Beta1

  • Draw on top of xoverlay using qt

    2
    0 Votes
    2 Posts
    3k Views
    S

    Please... any help would be highly appreciated!!!!

  • Anyone tried QTitanGrid and QTitanRibbon?

    5
    0 Votes
    5 Posts
    3k Views
    D

    I see, thanks Andre.

    Anyone else can share information? :)

  • QGLViewer - Depthbuffer z distance

    2
    0 Votes
    2 Posts
    2k Views
    T

    I finally found the answers after a couple of hours of googling:
    bufferToCamera[zb_, near_, far_] := far * near / (zb * (far - near) - far);
    where zb = z from buffer
    bufferToCamera= z from camera
    http://olivers.posterous.com/linear-depth-in-glsl-for-real

  • Qt Static and 3rd party static library

    3
    0 Votes
    3 Posts
    5k Views
    S

    Tried the 2nd way and it works perfectly, thank you !
    I also built Qt static with the above steps and everything works fine !

  • [solved] incomplete data read by qserialdevice

    39
    0 Votes
    39 Posts
    23k Views
    H

    thank kuzulis, i am getting stuck with this problem (incomplete data read) and i found the solution only in this site. thanks again

  • 0 Votes
    13 Posts
    7k Views
    S

    Alright, so I didn't find the problem, but I found a solution. Instead of deriving SerialPort in a Port class, my Port class is just a wrapper for SerialPort containing a pointer to my instance of SerialPort and having all the methods I use like that :
    @bool Port::open( SerialPort::OpenMode mode )
    {
    return port->open( mode );

    }@

    I don't know if this is a "good" solution, but it works.

    Anyway, thanks to kuzulis and koahnig for the help ! =)