Skip to content

3rd Party Software

Combining Qt with 3rd party libraries or components? Ask here!
1.1k Topics 5.6k Posts
QtWS25 Last Chance
  • [Solved]RealTimePlot component

    7
    0 Votes
    7 Posts
    6k Views
    T

    bq. Hey, you may want to try my QCustomPlot component:
    http://www.workslikeclockwork.com/index.php/components/qt-plotting-widget/
    Has full documentation and easy learning curve. It currently plots graphs, parametric curves, bar charts and statistical box plots. If that’s not enough, you can always subclass the central “plottable” class to make it show anything you like. It supports four axes with linear or logarithmic scale, reversed axes, automatic tick labels, rotated tick labels, automatic margins, filling, a legend, and much much more.

    I looked at your work and been in contact with you earlier on your homepage.

    You have done a great work but I have solved my earlier problems with qwt so thats no need to change it.

  • 0 Votes
    9 Posts
    8k Views
    K

    Hi All.

    At last!
    The Nokia cloning repository QSerialDevice 2.0 to codereview.qt-project.org

    Now the whole development will be there.

    Developers can get a clone of this:
    $ git clone ssh://codereview.qt-project.org:29418/playground/qtserialport.git

    We ask all interested to take part in the development of the project.

    More
    "this":http://wiki.qt-project.org/Code_Reviews
    and
    "this":http://wiki.qt-project.org/Setting_up_Gerrit

  • 0 Votes
    2 Posts
    2k Views
    L

    Hi.

    I am not experienced with gsoap, but I would like to learn something with this.

    Can you provide a simple example ?

    so I wil be able to reproduce your problem ?

    It looks interesting

    best regards.

  • At wits end: SAPI + Qt = Fail

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Icons library

    2
    0 Votes
    2 Posts
    4k Views
    L

    FamFamFam is a good and free icon library: "http://www.famfamfam.com/":http://www.famfamfam.com/

  • [Solved]Align scrollbar

    7
    0 Votes
    7 Posts
    4k Views
    T

    OK thanks Uwe
    Maybe I can reach my goal if I use the panner in qwt?

  • Get and use QtMmlWidget

    7
    0 Votes
    7 Posts
    7k Views
    U

    [quote author="Eddy" date="1323889356"]I recently installed qwt 6.0.1 and there is no need to get it for using qwt anymore[/quote]
    Since the MathML package became unmaintained I have stripped it down ( Qwt is interested in the renderer only not the widget ) added a couple of minor patches and committed it to the Qwt repository.

    Because this code has a different license as Qwt itsself it is built as extra library ( qwtmathml ). Of course this library is optional and as most users don't use it, it will always be an optional part only.

    Uwe

  • Easyest way to support zip files under QML

    5
    0 Votes
    5 Posts
    4k Views
    G

    Ok, i made the correct post

  • [Solved]RealTime graphics

    5
    0 Votes
    5 Posts
    3k Views
    T

    Yes i have looked at the examples but I don't see any thing like this and I'm not the first to need something like this I think.

    any tips??

  • 0 Votes
    4 Posts
    4k Views
    K

    Supported.

    Behavior is "almost completely" copies QAbstractSocket, with all methods, etc.
    All I/O is also buffered and non-blocking.
    See examples in /tests directory.
    In the general, try.

  • Qextserialport problem

    9
    0 Votes
    9 Posts
    8k Views
    K

    Guys,
    read "this":http://developer.qt.nokia.com/forums/viewreply/67246/.

    Perhaps you change your mind and take another library.

  • [Split] how to plot 3d graphs

    2
    0 Votes
    2 Posts
    2k Views
    A

    Please do not hijack threads like this.
    This thread is about running qt on a specific hw and architecture.

    Do a google search for what you look for, i found this; "QWTPLOT3D":http://qwtplot3d.sourceforge.net/
    That might do the trick.

    I strongly recommend you to read the Qt examples found in the qt installation directory, and direct any questions to a forum parts for helping beginners.

  • [Solved]QWT plot and scrollbars

    3
    0 Votes
    3 Posts
    5k Views
    T

    Do someone got an example of this.
    I don't get it to work.

  • [SOLVED] Qextserialport issues on Windows!

    6
    0 Votes
    6 Posts
    6k Views
    V

    Sorry for the late reply, I used the sourceforge.net link. The older version builds just fine and has been working great. Thanks.

  • [SOLVED] QWT Plot refresh

    1
    0 Votes
    1 Posts
    5k Views
    No one has replied
  • QextSerialPort - ReadWrite mode trouble

    8
    0 Votes
    8 Posts
    7k Views
    S

    I don't know if you have the ability to add a message delimiter, I had to do that with my own protocol. Then all I did was loop:

    @
    readBytes = serialport->read(serialport->bytesAvailable());
    @

    and append readBytes to a QString until I reach my message delimiter. At the moment, I'm testing my code with a virtual serial port connecting 2 x VirtualBox's using the following for these serial port settings:

    @
    serialPort = new QextSerialPort(serialDevice, QextSerialPort::EventDriven);
    serialPort->setBaudRate(BAUD115200);
    serialPort->setFlowControl(FLOW_OFF);
    serialPort->setParity(PAR_NONE);
    serialPort->setDataBits(DATA_8);
    serialPort->setStopBits(STOP_2);
    @

  • QWT example debug for Zoomer functionality

    5
    0 Votes
    5 Posts
    3k Views
    X

    It is already set to debug, I am stuck bigtime :(

  • Qextserialport.pro doesn’t build

    5
    0 Votes
    5 Posts
    4k Views
    K

    And if you're using OS Windows and QtSDK, then you have an build error qwineventnotifier_p.h.

    The solution below:
    [quote]
    It private file is located in the source code Qt4:
    qt-everywhere-opensource-src-4.7.4/src/corelib/kernel/qwineventnotifier_p.h

    But since is a private class, then it does not include in the Qt SDK.

    Therefore, in two ways:

    Or build Qt4 from source and use. Or take this header file from the Qt4 source and copy it to the Qt SDK, example to:
    C/QtSDK/Desktop/Qt/4.7.4/msvc2008/include/QtCore/private/qwineventnotifier_p.h
    [/quote]

    Where instead 4.7.4. may be your current version (eg 4.8.0),
    and instead msvc2008 may be mingw.

  • Wrong data from qextserialport

    4
    0 Votes
    4 Posts
    3k Views
    K

    Try using QSerialDevice 2.0.
    Read this "thread":http://developer.qt.nokia.com/forums/viewthread/11634/#67246

  • Modifying widgets in constructor

    4
    0 Votes
    4 Posts
    3k Views
    A

    Sounds like a problem in Qwt to me, to be honest. I think what you were doing in the constructor should work. The only thing I can think about, is that perhaps (speculation) Qwt does not accept setting up axis before you actually told it about the kind of data is need to plot (and what axis there are in that)?