Skip to content

General and Desktop

This is where all the desktop OS and general Qt questions belong.
83.6k Topics 457.3k Posts
  • compiling C# & clr C++?

    Solved
    5
    0 Votes
    5 Posts
    957 Views
    D
    Apparently the answer is: No, there is no "out of the box" method (with no special setup, using qmake) easiest is to just do step 1 and 2 outside of Qt.
  • Add python script to QT program

    Unsolved
    2
    0 Votes
    2 Posts
    499 Views
    Pablo J. RoginaP
    @isan I'd say you have two options: Embed a Python interpreter into the Qt application, see this post (it's Windows related but you'll get the idea) Call the Python script as a QProcess
  • QFormLayout with QVBoxLayout

    Unsolved
    7
    0 Votes
    7 Posts
    751 Views
    L
    @christian-ehrlicher Which widget? The label on the left side doesn't seeem to fill out the complete avaiable height? Otherwise it would has the same height as the labels on the right together, wouldn't it? Why has the left label exactly this height (which by the way stays the same, if you have more spacing in the VBox)
  • Log File with levels

    Unsolved
    6
    0 Votes
    6 Posts
    660 Views
    JonBJ
    @pablo-j-rogina https://sourceforge.net/projects/qtlog/files/qtlog/qtlog-0.5/ qtlog-0.5.tar.gz 2003-09-19 4.0 kB Extracting the files, they are all dated 2003-09-19, so I think it is you who are somehow adding an extra 10 years!?
  • How to make QTreeView/QListView display specific folders?

    Unsolved
    3
    0 Votes
    3 Posts
    559 Views
    JackkkkkJ
    @vronin QSortFilterProxyModel is my current choice, but i get very strange results. could you spare some time to look at my original post, which has more details. https://forum.qt.io/topic/106568/how-to-customize-qsortfilterproxymodel-to-display-specific-folders
  • Qt Creator: Minimise file path in "Project View". How?

    Solved
    8
    0 Votes
    8 Posts
    1k Views
    aha_1980A
    @bogong If you create a bugreport, please add a link here, so others can follow: QTCREATORBUG-22910 Thanks!
  • QNetworkAccessManager.get() ContentAccessDenied

    Solved
    2
    0 Votes
    2 Posts
    413 Views
    sonichyS
    @sonichy Change a FTP Serve on phone solved this proplem.
  • How to set callback for child widgets ?

    Solved
    3
    0 Votes
    3 Posts
    452 Views
    T
    Hello, thanks for your reply ! In time, I studied and tested a lot of things. Indeed, it was better for me to use a signal and a slot. .I had trouble understanding that an event was different from a signal, but I understood how it worked. Thank you very much for your answer.
  • how to hightlight certain rows in qt tablewidget?

    Solved
    8
    0 Votes
    8 Posts
    601 Views
    small_birdS
    @mrjj Thanks a lot, the problem is solved!
  • Using QFileDialog in Custom Delegate displayed on the wrong screen

    Unsolved
    9
    0 Votes
    9 Posts
    927 Views
    SGaistS
    I would say, there might be some patches applied to the Qt version shipped with KDE Neon. If you use the distribution provided Qt which is 5.12.3 at this time, the dialog opens as expected on the same screen. I would recommend taking a look at the bug report system to see if there's anything related.
  • How to use macro definitions defined in another project's pro file?

    Unsolved
    7
    0 Votes
    7 Posts
    1k Views
    Q
    @sierdzio I see. I shouldn't use the macro to get the version in another project.
  • How to fix installer file while installing

    Solved qt5.13.0 .run gui installation pe permissions error
    7
    0 Votes
    7 Posts
    2k Views
    sierdzioS
    @hfinger said in How to fix installer file while installing: @sierdzio Do you mean something like /home/.qt5/? (This is Ubuntu.) Or something like /home/myhome/.qt5/? Note sure what you mean by local directory. I am a newbie. I usually install to /home/username/qt.
  • Qt Install Framework MAC - how to create dock entry

    Unsolved
    2
    3 Votes
    2 Posts
    225 Views
    dheerendraD
    Qt Install framework does not provide any option like this. We need to execute apple script code. Following is the code snippet to create the same ======== createDock.sh ========= #!/bin/sh user=`ls -la /dev/console | cut -d " " -f4` echo " User list is $user" sudo -u $user defaults write com.apple.dock persistent-apps -array-add "<dict><key>tile-data</key><dict><key>file-data</key><dict><key>_CFURLString</key><string>file:///Users/dheeru/Desktop/1_MT/CheckDockEntry/bins/CheckDockEntry.app</string><key>_CFURLStringType</key><integer>15</integer></dict></dict></dict>" killall Dock Following is my application location. Change the path according to your app. file:///Users/dheeru/Desktop/1_MT/CheckDockEntry/bins/CheckDockEntry.app
  • How to proxy style QPlastiqueStyle which is a proxy style

    Solved
    5
    0 Votes
    5 Posts
    654 Views
    M
    Correct. I'll give that a go, thank you
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    36 Views
    No one has replied
  • Trying to subscript on user defined type for writing out to qDebug()

    Unsolved
    3
    0 Votes
    3 Posts
    250 Views
    U
    Thanks mate...
  • Can one Qt3DRender::QSpotLight shine on one object amongst many?

    Unsolved
    1
    0 Votes
    1 Posts
    111 Views
    No one has replied
  • Child dialogs do not respond to touch input on Ubuntu

    Unsolved
    1
    0 Votes
    1 Posts
    160 Views
    No one has replied
  • Inexplicable QToolBox bad behavior

    Solved
    2
    0 Votes
    2 Posts
    211 Views
    enjoysmathE
    Solution is to use a dictionary called _indexMap
  • How to pass a string to a parent script?

    Unsolved environment var script
    7
    0 Votes
    7 Posts
    1k Views
    SGaistS
    Hi, If your output follows a known pattern then parse stdout to extract what you want.