Skip to content

3rd Party Software

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

    anyway.. thank you.. i already found it...

  • [SOLVED] QextSerialPort problem

    5
    0 Votes
    5 Posts
    3k Views
    Z

    Yes. Typically add the user you run your application as to the uucp group or maybe enable filesystem ACLs and set a suitable ACL on your serial device.

  • 0 Votes
    4 Posts
    3k Views
    G

    well, it seems that Qwt have a good starting point, they have a progress bar with levels, i can subclass and get it done, thanks!

  • Real time plotting

    2
    0 Votes
    2 Posts
    4k Views
    K

    Welcome to the forum
    There was a similar post the other day "here":http://developer.qt.nokia.com/forums/viewthread/10677

  • 0 Votes
    2 Posts
    3k Views
    V

    You need using "QWT":http://qwt.sourceforge.net/

  • Graph scale logarithmic

    2
    0 Votes
    2 Posts
    4k Views
    EddyE

    "Follow this link":http://developer.qt.nokia.com/faq/answer/do_you_provide_a_tool_for_creating_graphs

    Also if you click the qwt tag on the right you will find more usefull info.

    On the qwt website there is an example using logaritmic scale if I remember well.

  • 0 Votes
    5 Posts
    3k Views
    G

    You are, unfortunately, very right. This library of mine is still very static and the redesign is slow-going (work responsibilities are picking up towards the end of the year). With regards to interaction, have a look at the Qt Chart example if you haven't done so yet:

    http://doc.qt.nokia.com/stable/itemviews-chart.html

    Enjoy and good luck!

  • [Solved] Qwt Dial and needle

    7
    0 Votes
    7 Posts
    6k Views
    T

    Ok
    I started a new topic about this problem.
    http://developer.qt.nokia.com/forums/viewthread/10343/

  • [Solved]Path and libs in qt

    1
    0 Votes
    1 Posts
    3k Views
    No one has replied
  • 0 Votes
    12 Posts
    12k Views
    J

    One other thing, no spaces in any of the directory names. This can cause weird issues as well.

  • Qextserialport destroy and reinitialize freeze

    5
    0 Votes
    5 Posts
    4k Views
    V

    I am currently working on this for you! Sorry for the late reply, I have run into other issues on another project :(

  • Examples of plots code

    3
    0 Votes
    3 Posts
    3k Views
    R

    I have it now!!! Thanks! :-)

  • Replot in Qwt Zoomer(QWT)

    2
    0 Votes
    2 Posts
    4k Views
    R

    I try it, but it is dont work too:
    @connect(zoomer, SIGNAL(zoomed(const QRectF&)), this, SLOT(replot()));@
    But slot is calling, i tested it

  • Adding Qwt widgets to designer

    2
    0 Votes
    2 Posts
    6k Views
    EddyE

    "this":http://qwt.sourceforge.net/ is the website you need.

    both ways are possible. "This topic":http://developer.qt.nokia.com/forums/viewthread/7597/P15 might help you.

    By the way other interesting topics on devnet can be found using the qwt tag on the right of this site.

  • 0 Votes
    4 Posts
    4k Views
    A

    im also a real beginner and i wanna know if there's any clear advice about how to use the qserialdevice library in a project?
    i cant compile the examples i guess i have to build the buildlibrary first but the problem is that i get errors inside the codes and so building the library doesnt get successful and when building the examples,i get this error : cannot find -lqserialdevice
    how shuold i correctly build the library so that i can compile examples of qserialdevice and also use the library?
    is there a step by step guide for that or can anybody plz tell me in detail?
    ill be so thankfull for that.

  • Axis in QwtPlot(QWT)

    6
    0 Votes
    6 Posts
    6k Views
    R

    I try it but it is dont work:
    @plot->enableAxis(QwtPlot::axisCnt);@

  • 0 Votes
    5 Posts
    3k Views
    G

    [quote author="matthazley" date="1314876103"]I had a lot of comms coming in so maybe I was triggering too many signals too fast and this was growing the event queue??? I'm not sure... [/quote]

    This could be the reason, ort perhaps you had some wrong connect statements (which threads are processing the comm's data? how did you do the connect, etc.).

  • 0 Votes
    8 Posts
    3k Views
    M

    No problem! Glad to help. Good luck with the rest of your code!

  • [Solved]How can i do it?

    12
    0 Votes
    12 Posts
    4k Views
    R

    OK :)
    And once more: thank for your help!

  • Events not called unless mouse is moving

    4
    0 Votes
    4 Posts
    3k Views
    F

    Events not being handled properly sounds like an event-loop-reentry problem. Do you call exec() on dialogs or QApplication::processEvents() somewhere?

    If you can anything that displays this issue, please submit it. It is very hard for us to help you without any code we can read or (even better) try.