Skip to content

General and Desktop

This is where all the desktop OS and general Qt questions belong.
83.6k Topics 457.8k Posts
  • Setting foreground in a QTextCharFormat from a QPalette

    3
    0 Votes
    3 Posts
    2k Views
    F
    I see, thanks.
  • 0 Votes
    1 Posts
    3k Views
    No one has replied
  • Multiple QDataStreams from different threads - Seg Fault

    6
    0 Votes
    6 Posts
    4k Views
    G
    Yes, going to add some blocking mechanisms. Thanks miroslav and koahnig!!!
  • Functions missing in QtCored4.dll

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Is there any kind of QFormView?

    2
    0 Votes
    2 Posts
    2k Views
    M
    No, I don't think there is anything like that in Qt.
  • How to license an application developed under QT

    2
    0 Votes
    2 Posts
    2k Views
    A
    A forum is not a place for legal advice. Consult a lawyer to be sure. Also, this question has been asked before, so please just search the forum for previous discussions. Short answer: yes, you can distribute your application under any licence you see fit as long as you link dynamically to the LGPL libraries. If you want to keep your own sources confidential, then don't choose the LGPL license for your own code.
  • 0 Votes
    4 Posts
    2k Views
    V
    Maybe "Xming":http://sourceforge.net/projects/xming/ is what you're looking for?
  • Settling my UI API dilemma

    3
    0 Votes
    3 Posts
    2k Views
    M
    I think it is a bit premature to decide on this, since the priorities of for example C++ vs QML largely depend on the contributors (companies or individuals) willing to work on it under Open Governance. Platform support is the same thing in the long term. On the other hand, it does not get more future proof than under Open Governance, IMO. Performance so far has largely gotten better in many regards.
  • [SOLVED]QProcess or system()

    4
    0 Votes
    4 Posts
    3k Views
    K
    [quote author="toho71" date="1328269270"]for the testing I would like to log in as root but I realy dont't know how to. [/quote] Well, that is not a Qt issue. Somebody must have set up your linux installation. Only whoever that was can provide you with the details of login as root respectively provide you with root privilege.
  • [SOLVED] Crash when clicking on authors button in about dialog on MacOSX.

    6
    0 Votes
    6 Posts
    4k Views
    M
    This bug has been resolved in Qt 4.8.0! :-)
  • QSystemTrayIcon broken in 4.8.0 under Linux

    8
    0 Votes
    8 Posts
    5k Views
    ?
    I filed bug report QTBUG-24085. In the meantime I'm folding back to Qt 4.7.3 downloaded from the Ubuntu Software Center. This older version of Qt does not have the bug.
  • A frontend GUI app: console view

    3
    0 Votes
    3 Posts
    2k Views
    M
    i am also facing the same problem how can we read the latest entry text from QPlainTextEdit...presently i am using QLineEdit for command entry and textedit for output showing...it's looking ugly ...can some one please help me .. i am trying to do like this tcl> puts "helloworld" helloworld tcl> //if i enter a puts command and hit enter how to read that command and how to pass the signal to Qprocess like QLineedit have return pressed signal
  • Adds QGraphicsItem to QGraphicsscene at few pixels away

    5
    0 Votes
    5 Posts
    3k Views
    S
    I have tried writing minimal example and it just works fine. I shall debug my main stream code. Thanks for all your replies.
  • Problem with building console application

    4
    0 Votes
    4 Posts
    2k Views
    G
    That are some new additions to the C++ standard. It depends on the compiler and its version in use whether it is supported out of the box or whether you need some support libs like boost.
  • Confirmation Dialogs

    6
    0 Votes
    6 Posts
    5k Views
    A
    That is handy to know, thanks.
  • Application path did not work!

    20
    0 Votes
    20 Posts
    11k Views
    L
    [quote author="abbas farahmand" date="1328272043"] maybe some people have this problem exactly![/quote] Well, you never posted a solution. You described your problem, we plead for additional information and then [quote author="abbas farahmand" date="1328272043"] I fixed it with other ways. [/quote] So if you want this thread to have any valuable information for others you better hand in what actually solved your problem - what you now did.
  • 0 Votes
    1 Posts
    2k Views
    No one has replied
  • Reformulated: labels and buttons don't inherit font properties on Mac

    2
    0 Votes
    2 Posts
    2k Views
    F
    If anyone is interested: I solved my problem with following line of code: @ qApplication->setStyleSheet("QPushButton { font: 10px} QLabel { font: 10px} QLineEdit { font: 10px} QCheckBox { font: 10px} QGroupBox { font: 10px} QComboBox { font: 10px} QListWidget { font: 10px} QRadioButton { font: 10px}"); @ (Globally setting the font size ( qApplication->setFont(newFont) )would not affect all the widget types on Mac)
  • [SOLVED] Problem with SDK 1.2 (Qt 4.8) and QtHelp

    4
    0 Votes
    4 Posts
    2k Views
    A
    Ok, I have got it! I used to have a CSS file which included another CSS file: @@import url("../../res/common.css");@ It used to work fine with the version of QtWebKit in Qt 4.7.4, but not with the one in Qt 4.8.0. It would seem that QtWebKit doesn't like the use of relative paths in CSS import files anymore (?). So, instead, I had to use: @@import url("/doc/res/common.css");@ with doc being the virtual folder in my Qt help file. Otherwise, I want to be able to use my CSS file both within a web page and a Qt help page, so I now have: @@import url("../../res/common.css"); @import url("/doc/res/common.css");@ With the first import being required to get things to work on a web page and the second import on a Qt help page. I really wish I didn't have to do that, but...
  • [SOLVED]QSortFilterProxyModel

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied