Skip to content

General and Desktop

This is where all the desktop OS and general Qt questions belong.
83.4k Topics 456.4k Posts
  • can't find linker symbol for virtual table for `Controller' value

    Unsolved
    6
    0 Votes
    6 Posts
    794 Views
    kshegunovK
    Well, my best advice is keep an eye on it, if it causes trouble in the future then revisit the issue. I couldn't spot anything obvious in the code itself, and it disappearing with a different version of the same compiler probably means it's some peculiarity of the linkage that's probably irrelevant.
  • Wait a signal inside of the function. How?

    Solved
    4
    0 Votes
    4 Posts
    355 Views
    B
    @JonB Thx. Issue closed. QEventLoop works for me. Here example.
  • QDialog with fixed size and scrollbar

    Unsolved
    2
    0 Votes
    2 Posts
    271 Views
    SGaistS
    Hi, QScrollArea is your friend :-)
  • QTableWidget how to get number of rows in each cell

    Unsolved
    4
    0 Votes
    4 Posts
    1k Views
    JonBJ
    @dzungng QTableWidget inherits from QTableView. That means all QTableView methods are also available on a QTableWidget. This principle is worth understanding, as it applies all over the place with QWidgets (and other Qt derived classes).
  • How to add a dark theme to your app on Windows/Mac [Solved]

    Solved
    2
    1 Votes
    2 Posts
    1k Views
    SGaistS
    Hi, Thanks for sharing your findings !
  • Inspect element (Html code) using QWebEngineView

    Unsolved
    9
    0 Votes
    9 Posts
    3k Views
    jsulmJ
    @Belfix How is your question related to this thread?
  • dynamically adding to QVBoxLayout without a form

    Unsolved
    2
    0 Votes
    2 Posts
    150 Views
    jsulmJ
    @stdave I'm not sure I understand the problem. You add more widgets to the layout using addWidget(). Or what is the problem?
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    14 Views
    No one has replied
  • This topic is deleted!

    Unsolved
    13
    0 Votes
    13 Posts
    44 Views
  • Bare IP (OSI Network Layer) based communication with Qt

    Unsolved
    5
    0 Votes
    5 Posts
    361 Views
    MuratUrsavasM
    Yep, it's in my bookmarks :) Maybe the only helpful discussion about this protocol. There is an open source implementation, which tries to encode/decode but written with .Net. Further features can be observed from that project but first, I need to be able to communicate over IP layer. This will be a new Transport Layer protocol hence not implemented in Qt. Still struggling to find a way in the QUdpSocket implementation in qtcore source package. My next shot will be system socket libraries or boost::asio.
  • Qt and CVSS score for security flaws.

    Unsolved
    3
    0 Votes
    3 Posts
    313 Views
    SGaistS
    Hi and welcome to devnet, You have the details of their handling in QUIP15
  • connexion QT and NCReport

    Unsolved
    4
    0 Votes
    4 Posts
    269 Views
    SGaistS
    Hi, You have to explicitly install it. That module was deprecated a long time ago.
  • Drag/Drop virtual item outside of application

    Unsolved
    4
    0 Votes
    4 Posts
    488 Views
    SGaistS
    From (very old) memory, it think the one having issues was OS X.
  • QWidget::showNormal() doesn't show window (Linux + Plasma)

    Unsolved
    4
    0 Votes
    4 Posts
    783 Views
    SGaistS
    Can you reproduce that with a minimal example ? If it only happens in Plasma, you may have unearthed an issue there.
  • processEvent() differs between Qt4 and Qt5

    Unsolved
    6
    0 Votes
    6 Posts
    478 Views
    Christian EhrlicherC
    @JulienMaille said in processEvent() differs between Qt4 and Qt5: My question targets processEvent() not Qxt I'm using QxtSignalWaiter to wait synchronously for a signal, with no issues and, as stated in another topic here, it worked fine until Qt5.9/5.10. Then it started to get stuck in the processEvent() call and generate other erratic behaviors. mhhh... anyway: fix your code and make it async.
  • QProcess emit exit signal too earlier

    Unsolved
    9
    0 Votes
    9 Posts
    791 Views
    JoeCFDJ
    @Wapiti said in QProcess emit exit signal too earlier: QString launcher = "C:/Program Files/D-BOX/Gaming/Assetto Corsa/ACWithLiveMotion.exe"; QProcess process; connect(&process, SIGNAL(finished(int , QProcess::ExitStatus )), this, SLOT(SessionFinish())); process.start(launcher, QStringList()); void MainWindow::SessionFinish() { qDebug() << "session is finish"; } Are you sure that you did not use local variable? if process is defined in the header, the connection should look like this? connect(process, SIGNAL(finished(int , QProcess::ExitStatus )), this, SLOT(SessionFinish()));
  • macdeployqt Codesign signing error: errSecInternalComponent

    Solved
    1
    1 Votes
    1 Posts
    377 Views
    No one has replied
  • How to set a transparent Button on QVTKWidget based on QT

    Unsolved
    9
    0 Votes
    9 Posts
    2k Views
    B
    I went as far as editing QVTKRenderWindowInteractor.py that ships with VTK. The original file is using either QWidget or QGLWidget as its base class, default being QWidget. I changed it to use QOpenGLWidget. I tried with the 3 different base classes: exact same behavior.
  • This topic is deleted!

    Unsolved
    7
    0 Votes
    7 Posts
    28 Views
  • This topic is deleted!

    Unsolved
    4
    0 Votes
    4 Posts
    24 Views