Skip to content

3rd Party Software

Combining Qt with 3rd party libraries or components? Ask here!
1.1k Topics 5.5k Posts
  • Bluetooth for QT-based Windows Application

    Unsolved
    3
    0 Votes
    3 Posts
    759 Views
    A

    Hi Hilk,

    Thanks for your answer. I already what you suggest, the problem is how how to pair with the device. This is already working on Linux I thought I may be doing something wrong

  • GSoap and Qt

    Unsolved
    4
    0 Votes
    4 Posts
    1k Views
    SGaistS

    Hi,

    It usually depends on how the library itself works. You can queue "commands" you want the library to execute and your thread can execute them one after the other, or you can use QtConcurrent which is higher level thread management.

  • QtCharts is it posible to have gradient lines?

    Solved
    7
    0 Votes
    7 Posts
    3k Views
    L

    Hi VRonin,

    Thank you a lot, that works perfectly!!!

  • Unit tests for Qt-based applications with Catch

    Unsolved
    1
    0 Votes
    1 Posts
    399 Views
    No one has replied
  • How to use matlab mspeaks predefined functions in Qt?

    Unsolved
    2
    0 Votes
    2 Posts
    833 Views
    JKSHJ

    @bhargav said in How to use matlab mspeaks predefined functions in Qt?:

    how to use matlab library function in Qt and give me clear info if any one know.

    https://au.mathworks.com/solutions/matlab-and-c.html

  • 0 Votes
    1 Posts
    2k Views
    No one has replied
  • Qt5.4 on Android N

    Unsolved
    2
    0 Votes
    2 Posts
    733 Views
    K

    @srav219

    Not sure if here users with enough experience are around.

    It might be good also to post on android-qt onGoogle.

  • SFtp Client with Qt5

    Moved Unsolved
    3
    1 Votes
    3 Posts
    2k Views
    raven-worxR

    @LeLev
    sry, but how is this Qt related at all?
    Beside that you use Qt in other parts of your application.

    Nor do you even post a stack-trace of the crash...

  • Can not compile a source in Ubuntu 16

    Moved Unsolved
    2
    0 Votes
    2 Posts
    703 Views
    VRoninV

    Since this has little to nothing to do with Qt, you should probably ask the author directly: https://github.com/OpenGP/starlab/issues

    P.S.
    You seem like you are trying to use Qt4 while the library is for Qt5

  • Are there examples of commercially successful Qt libraries?

    Unsolved
    12
    0 Votes
    12 Posts
    3k Views
    JonBJ

    @VRonin
    Ooo, I'm glad my company doesn't look like that!
    I wonder if now would be a good time to invest in some Qt Company shares? ;-)

  • Embed 3rd party application into QWidget

    Unsolved
    1
    0 Votes
    1 Posts
    478 Views
    No one has replied
  • Qt 5 + SDL2 Renderer

    Unsolved
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Page size settings in QtDesigner

    Moved Unsolved
    4
    0 Votes
    4 Posts
    917 Views
    SGaistS

    Hi,

    As @VRonin already suggested, as QtRPT is not an official Qt module, you should contact the author of that module to get more information about it.

  • Error building opencv3.4.1 windows10 and cmake3.11

    Unsolved
    2
    0 Votes
    2 Posts
    2k Views
    Pablo J. RoginaP

    @jalal_ba you're using OpenCV 3.4 and the guide you referred is using OpenCV 3.2 could it be possible you try with the old version to see what happens?
    In addition, the error you have is related to Google protobuf, so you may want to check this issue regarding OpenCV and protobuf under Windows.

  • How to use insert row in Qtxlsx. Please Help me

    Moved Unsolved
    4
    0 Votes
    4 Posts
    2k Views
    CatarinoC

    Assuming you want to show on the screen in the tableview.

    In this example I used QStandardItemModel:

    QXlsx::Document excel(filename); int row=excel.dimension().firstRow(); while(row != excel.dimension().lastRow()) { mModel->setRowCount(excel.dimension().rowCount()); mModel->setColumnCount(excel.dimension().columnCount()); for(int col=0; col < excel.dimension().columnCount(); ++col) { setValueAt(row, col, excel.read(row, col).value<QString>()); } ++row; } void QExcelView::setValueAt(int row, int col, const QString &value) { if(!mModel->item(row,col)) mModel->setItem(row, col, new QStandardItem(value)); else mModel->item(row, col)->setText(value); }
  • I'd like to create an uncompressed zip file using Quazip

    Moved Unsolved
    3
    0 Votes
    3 Posts
    1k Views
    VRoninV

    QuaZipFile is a file inside the zip, not the zip file itself

    See https://stackoverflow.com/questions/2598117/zipping-a-folder-file-using-qt/2598649#2598649 for an example (in outFile.open() you'll have to pass 3 more arguments, all of them 0 to have no compression) or use the easier, more maintained KArchive library instead

  • Image in QtRpt Report

    Unsolved
    1
    0 Votes
    1 Posts
    536 Views
    No one has replied
  • 0 Votes
    3 Posts
    1k Views
    R

    Something like nlog for QT/C++ ? I found log4cplus. I would like to log async, change log configuration at runtime and redirect log output to a remote macine when needed.

  • Keep connection with http request

    Moved Unsolved
    2
    0 Votes
    2 Posts
    528 Views
    SGaistS

    Hi,

    That's something you should ask directly to the project author.

  • AmanithVG Graphics Library in QT?

    Unsolved
    1
    0 Votes
    1 Posts
    355 Views
    No one has replied