Skip to content

General and Desktop

This is where all the desktop OS and general Qt questions belong.
83.4k Topics 456.4k Posts
  • Event in scrollbar

    Locked
    4
    0 Votes
    4 Posts
    3k Views
    A
    Indeed. Everall is referencing "this topic":http://developer.qt.nokia.com/forums/viewthread/6346/. Closed as duplicate.
  • 0 Votes
    4 Posts
    4k Views
    M
    [quote author="Denis Kormalev" date="1306693935"]Hm, strange bug with bolding all text. And nothing wrong in first post. Marius, do you see?[/quote] Strange indeed, thanks for reporting Denis.
  • Name of the keys

    3
    0 Votes
    3 Posts
    4k Views
    S
    Hi! You can find the key code so: @ void Widget::keyPressEvent(QKeyEvent *pe){ qDebug() << pe->key(); } @
  • [SOLVED] QDomDocument attribute ordering

    8
    0 Votes
    8 Posts
    9k Views
    W
    OK, at least I know where I stand. Thank you all for your help, appreciated as always. -- William
  • QThread with signals and slots

    26
    0 Votes
    26 Posts
    49k Views
    D
    That processImage method gets called from the right thread (in the example, the GUI thread, which is where the RenderThread object is living), so it's safe to use that way.
  • QTcpServer::incomingConnection() && get ip address

    10
    0 Votes
    10 Posts
    26k Views
    D
    [quote author="Luca" date="1289835800"]Using QTcpSocket in a different thread require to pass the socket descriptor to the thread and construct the QTcpSocket in the QThread subclass as shown in the "threaded fortune server example":http://doc.qt.nokia.com/latest/network-threadedfortuneserver.html [/quote] BTW, I asked and I've been told that the docs (and the example) are wrong about that point: [quote]Note: The returned QTcpSocket object cannot be used from another thread. If you want to use an incoming connection from another thread, you need to override incomingConnection().[/quote]
  • QtNetwork and multipart encryption

    4
    0 Votes
    4 Posts
    3k Views
    D
    [quote author="2beers" date="1306683337"]Hi everyone. Can I have multipart POST requests using QNetworkAccessManager ?? I read somewhere that this might be available only in qt 4.8? is that true? Thanks[/quote] Yes. 4.8 will introduce the QHttpMultiPart and the QHttpPart classes, which you can use to build mime/multipart HTTP requests. Overloads for QNetworkAccessManager::post and ::put (which take a QHttpMultiPart) will be introduced as well. In the meanwhile, you can do multipart requests, but you have handle everything by hand (or by using a 3rd party library).
  • QNetworkRequest with client authentication

    1
    0 Votes
    1 Posts
    4k Views
    No one has replied
  • Changing double click detection speed app-wise [Solved]

    3
    0 Votes
    3 Posts
    5k Views
    ?
    Yes, that was exactly what I was looking for!! :D Thanks!! --
  • QGraphicsView transparent over another QGraphicsView

    2
    0 Votes
    2 Posts
    4k Views
    E
    I can't find a solution to that problem. Nobody knows what can be done?
  • QComboBox + QSS + setting text color [Solved]

    4
    0 Votes
    4 Posts
    10k Views
    A
    You can add that tag yourself. Simply edit your first message, and modify the subject line. I've done it for you this time, but next time, please do that yourself. Glad you got your issue solved!
  • 0 Votes
    2 Posts
    2k Views
    A
    Closed as duplicate. "duplicate 1":http://developer.qt.nokia.com/forums/viewthread/6262/ "duplicate 2":http://developer.qt.nokia.com/forums/viewthread/6242/ "duplicate 3":http://developer.qt.nokia.com/forums/viewthread/6205/
  • [Solved] Problem with Q_OBJECT

    11
    0 Votes
    11 Posts
    8k Views
    R
    @Denis Kormalev: Oh, run qmake again work. I'm deleting folder by hands, because think that if i recompile all it call qmake too. @kamilus just edit your post and add to begin [solved]
  • Exchange data between threads... typical question :D

    16
    0 Votes
    16 Posts
    16k Views
    T
    Sure, buddy :-)
  • QMatrix vs QTransform

    6
    0 Votes
    6 Posts
    7k Views
    M
    I think it's time for bug report. I don't see why there is performance problems with scaling.
  • QMAKE: how to write more complex project?

    8
    0 Votes
    8 Posts
    4k Views
    P
    So, I think, It takes me a weeks to prepare it :D
  • Fit images of different size into my QGraphicsScene

    9
    0 Votes
    9 Posts
    10k Views
    K
    As long as you do not save the image to its initial source file you may do several scalings. E.g. you start your application with different sizes of your graphic scene and you always read it from original file, you should not face problems. The quality of the displayed may change with the actual size, but a new start from original file will have different scaling and a different result. See also the input of Jota for scaling quality. Consequence, you should not destroy your original file. If you load your image once and you do several scalings with different sizes, you will certainly have deterioration of the image.
  • QT SDK installation problem

    7
    0 Votes
    7 Posts
    5k Views
    X
    Nevermind, Administrator mode worked!
  • Windows 7 features such as TaskBarProgress&#63;

    6
    0 Votes
    6 Posts
    5k Views
    S
    We provide PyQt bindings to Q7Goodies too. If you are developing a commercial application and don't mind buying a library then probably PyQ7Goodies is the easiest way to go.
  • [Solved] Problem with QLabel, QPixmap and PaintEvent

    8
    0 Votes
    8 Posts
    14k Views
    K
    it's work, once again thank You, You help me a lot [quote author="yshurik" date="1306611173"]Do you paint these frames in paintEvent? If not then there is no one who paint it. Is it painted by superclass QLabel? - then inside of your paintEvent() you need to call QLabel::paintEvent before your paintings (they will go to top).[/quote]