Skip to content

3rd Party Software

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

    1
    0 Votes
    1 Posts
    778 Views
    No one has replied
  • 0 Votes
    1 Posts
    835 Views
    No one has replied
  • Launching qwt app on another computer

    5
    0 Votes
    5 Posts
    2k Views
    K

    [quote author="qlity" date="1372091351"]
    Warning: At least one module has an unresolved import due to a missing export function in a delay-load dependent module.
    [/quote]

    This warning might not be a problem. Unfortunately, depends.exe shows this warning for a couple of dlls as shown on the wiki. However, those dlls are not on your machine. Somehow this seem to depend on the update state of your windows OS.
    You need to check out if the dlls are your developing machine. If not, they should be of no problem for the application.

    The best is checking out on your development machine that you have the correct dlls all together with your application as described at the end of the wiki page. When you can start the application on the development machine, you can use this collection to transfer to another computer.

  • Libcurl inside Qt: can't find external symbol

    4
    0 Votes
    4 Posts
    3k Views
    SGaistS

    Sorry, I have misread the name of your libraries, it seems that you indeed need to have curllib in your pro file.

    Since you are doing a static build (guessing that from your define) shouldn't you link to curllib_static ?

    @LIBS += -lcurllib_static@

  • OpenCV and ffmpeg

    7
    0 Votes
    7 Posts
    3k Views
    K

    bq. Ok, then I’ll wait.

    Thanks for you patience!

    You can subscribe to the topic above to be updated.

  • 0 Votes
    1 Posts
    1k Views
    No one has replied
  • [Solved] QtSerialPort and Threads

    18
    0 Votes
    18 Posts
    14k Views
    R

    Ok, like i thought.
    That's why i first thought on using Threads...
    So that each serialport could only deal with one port.

  • Qxt v0.6.2 isn't installing on Qt 4.8

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • 0 Votes
    6 Posts
    4k Views
    P

    Did you manage to get this working? I am trying to do the same thing and would be interested to see your solution.

    Thanks!

  • 0 Votes
    4 Posts
    3k Views
    K

    bq. Do you know why it takes so much time (500 ms) to write a 512 buffer on the port?

    No, I don't know why. Probably reason in tcdrain() ioctl through which the flush() method is implemented, maybe the notifiers is enabled so slow ... maybe something other...

    You can try to leave from a separate thread and synchronous I/O, just using async approach.
    Where instead of using flush() method, try to connect to signal bytesWtitten(qint64) to calculate number of bytes really written to port.

    Though if to be honest, it is necessary to test in a debugger or a profiler the reason of such slow data transmission.

  • About QwtScaleWidget and QwtPlot

    8
    0 Votes
    8 Posts
    3k Views
    SGaistS

    If this is a matter of work/school development, you could ask the system manager to allow you to access the resources needed to do your work correctly.

  • QxOrm alternatives

    6
    0 Votes
    6 Posts
    4k Views
    M

    [quote author="Skh1002" date="1369102469"]ODB does support at least some Qt basic types (from QtCore) in "ODB Qt Profile":http://www.codesynthesis.com/products/odb/doc/manual.xhtml#22, however that may not be enough if you need a complete support.[/quote]

    Actually the performance is a critical issue here, using only the basic types isn't suitable option for high performance (dealing with millions for records)

  • 0 Votes
    9 Posts
    3k Views
    SGaistS

    You're welcome !

    If this solves your problem don't forget to update the thread's title prepending [solved] to it :)

  • [Solved] Help with QtSerialPort instalation

    4
    0 Votes
    4 Posts
    2k Views
    R

    Hi,

    I already I'm trying Qt 5.1.

    Thanks

  • QCustomplot: Coords by Mouseclick

    6
    0 Votes
    6 Posts
    12k Views
    SGaistS

    @
    connect(plot_, SIGNAL(mousePress(QMouseEvent*)), SLOT(clickedGraph(QMouseEvent*)));

    void FVolumePlayerWidget::clickedGraph(QMouseEvent *event)
    {
    QPoint p = event->pos();
    //etc...
    }
    @

  • Some questions for QTScript and MathJax

    1
    0 Votes
    1 Posts
    954 Views
    No one has replied
  • 0 Votes
    11 Posts
    6k Views
    M

    I found an easier solution. Just append O_EXLOCK into the open_sys() function in qextserialport_unix.cpp

  • Error in build qwt-6.0.2

    1
    0 Votes
    1 Posts
    965 Views
    No one has replied
  • Using NCReports in Qt

    4
    0 Votes
    4 Posts
    4k Views
    M

    Please I have a probleme with cross-table, I have attributed a datasource based on item-Model , but no thing is appeared .
    Thanks

  • The problem of parsing json with libqjson

    2
    0 Votes
    2 Posts
    2k Views
    S

    Why do you expect "parser.parse(...)" to return a QVariantList? ... afaik, it would be a QVariantMap ...

    hmm ... or the other way around if you want the records-list, you first have to get it from the outer map:
    @QVariantList mylist = result.toMap()["Records"].toList()@
    (haven't tested that line, but that's what I would expect to work)