Skip to content

3rd Party Software

Combining Qt with 3rd party libraries or components? Ask here!
1.1k Topics 5.5k Posts
  • QXmppLogger

    1
    0 Votes
    1 Posts
    937 Views
    No one has replied
  • Cross compiling from ubuntu to windows

    4
    0 Votes
    4 Posts
    4k Views
    H

    How can I get windows version of qwt in my ubuntu? Is there some procedure how can I do that? thanks

  • Does Qt Phonon support setting playback speed

    2
    0 Votes
    2 Posts
    2k Views
    F

    I am also interested in changing the playback speed, but as far as I know it is not possible in Phonon.

    The phonon backends should support this easily, so I don't know why this is not part of the Phonon API

    Anyone know more about this issue?

  • 0 Votes
    4 Posts
    2k Views
    A

    I think there are just many implementations of the same idea. The coverflow idea (patented by Apple? Not sure on that one) was picked up by others after Apple introduced it on the iPod touch rather quickly by others, who came up with their own implementations. There are also examples on how to build one using QML (quite simple, actually), and even libqxt has a "widget":http://libqxt.bitbucket.org/doc/0.6/qxtflowview.html#details in the library implementing the idea.

    So, you adhere to the licence of the implementation you use, and hope Apple did not patent it or can't be bothered to go after you.

  • 0 Votes
    3 Posts
    2k Views
    P

    The Microsoft one...
    And it's Boost 1_47 I use.

  • Error using Qt + gSOAP

    6
    0 Votes
    6 Posts
    3k Views
    M

    It is working in linux.

  • Qt and OSG GraphicsWindowQt

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Qt3D, Assimp and IFC

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Qt / WSDL / gSOAP = Encoding problems

    7
    0 Votes
    7 Posts
    5k Views
    A

    maybe in gSOAP? look with wireshark into Request Headers from your app.

  • Boost 1.47 link with QtCreator2.5

    2
    0 Votes
    2 Posts
    2k Views
    H

    "Example from documentation":http://qt-project.org/doc/qt-4.8/qmake-variable-reference.html#libs
    @
    unix:LIBS += -L/usr/local/lib -lmath // you don't have -l
    win32:LIBS += c:/mylibs/math.lib
    @

  • Undefined symbol: SQLAllocHandle

    6
    0 Votes
    6 Posts
    4k Views
    P

    where pid is the pid of your running application.

  • How to use Grantlee Templates in Qt

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • cannot open input file 'appcommon.lib'

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    L

    There is already a "thread":http://qt-project.org/forums/viewthread/17801/ on this, isn't there?

  • Best 3D Graphics framework with QT

    11
    0 Votes
    11 Posts
    10k Views
    S

    yea it is, kinda, but it is true, we are releasing our 1.1 version this week and we have some really updates and new features. Our 3d stuff and the new image/model rendering widget is very nice...

  • 0 Votes
    1 Posts
    2k Views
    No one has replied
  • 0 Votes
    9 Posts
    9k Views
    A

    yes it work now well. it was a problem with the toolchain and dll...

    I installed Qt Creator new and copied all dll in windows/system folder...

    thanks all

    Antonio

  • MYSQL Installation on Mac OS X

    2
    0 Votes
    2 Posts
    3k Views
    G

    Your Qt version is built as 64 bit version (x86_64), but the mysql libs you have installed are not, most probably, they're 32bit Intel binaries (i386). You can check on the command line using this:

    @
    lipo -info /usr/local/mysql/lib/libmysqlclient.dylib
    @

  • Experience with serial interface

    8
    0 Votes
    8 Posts
    7k Views
    Q

    Hi kuzulis!
    I try the last snapshot of QtSerialPort, and for now not detect any freezing.

  • QScintilla Custom UserList

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • 0 Votes
    8 Posts
    4k Views
    A

    What they do in the examples is that they mock the whole QNAM library, i.e. create a stand-alone separate library that looks totally like QNAM, implements the same interfaces, but instead of the real QNAM implementation all the methods just pass the ball to the mocking framework as in the following:
    @
    QNetworkCookie &QNetworkCookie::operator=(const QNetworkCookie &other)
    {
    QVector<QGenericArgument> args;
    args.append(Q_ARG(const QNetworkCookie &, other));

    QTMOCK_METHOD_DOACTIONS("QNetworkCookie", "operator=", QRET_REF(QNetworkCookie), &args, NULL);

    }
    @