Skip to content

General and Desktop

This is where all the desktop OS and general Qt questions belong.
83.6k Topics 457.7k Posts
  • Audio player for WMA DRM

    2
    0 Votes
    2 Posts
    2k Views
    W
    I'll just try to make it clear, i need to play protected audio files, Microsoft's DRM and apple's DRM and a specific DRM which i'll define. In this case is phonon suitable for me ? Any link about this topic, any advice, any idea are welcome.
  • Lupdate hangs forever

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Reloading QML image

    2
    0 Votes
    2 Posts
    2k Views
    T
    Hello, How do you realod image? If you just set source property to the same value. It won't work. Read "this thread":http://developer.qt.nokia.com/forums/viewthread/7093/ for some ideas how to solve your problem.
  • Is signal-slot blocking.??

    7
    0 Votes
    7 Posts
    10k Views
    A
    miroslav is right, but I guess the more correct answer is: it depends on what connection flag you used when you connected the signal and the slot. The default flag will result in different behaviour in threaded and non-threaded cases.
  • Blur effect in title bar

    4
    0 Votes
    4 Posts
    3k Views
    F
    One more thing, if you want to, later (in 8 hours) I'll be able to share my code with you.
  • Making movable QRubberBand be only movable within parent widget

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • 0 Votes
    3 Posts
    8k Views
    N
    Thanks a lot for your help. That's exactly what I've been looking for. bq. BTW, it looks like kanban board :) Well, as it so happens... ;)
  • How threading is implemented in Spectrum Analyser

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • 0 Votes
    1 Posts
    3k Views
    No one has replied
  • QInputDialog In Main

    5
    0 Votes
    5 Posts
    3k Views
    S
    for exit() i mean the stdlib function. [quote author="Lukas Geyer" date="1328868453"][quote author="stuk" date="1328868151"]compare the output with "Text to Exit" and call exit() ?[/quote] QApplication::quit() and QApplication:exit() does nothing if there is no event loop running (ie. before QApplication::exec() is called).[/quote]
  • Show a window before calling a terminal command in python

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Why cant i use QFileSystem, treeView inside mainWindow?

    3
    0 Votes
    3 Posts
    3k Views
    A
    ok thank u
  • Qfontcombobox buggy?

    2
    0 Votes
    2 Posts
    1k Views
    J
    also tested it on windows now, no problems there. 1 font f.e is STIXGeneral. can i filter them out somehow?
  • Basic print option

    2
    0 Votes
    2 Posts
    1k Views
    K
    Did you have already a look onto "Printing with Qt":http://developer.qt.nokia.com/doc/qt-4.8/printing.html ?
  • [SOLVED] How to get Visible Rect in QScrallArea's viewport() ?

    2
    0 Votes
    2 Posts
    4k Views
    J
    Oh, after removing 35~36 lines of above, it looks like working just the way what i want. But, I'm still afraid this kind of implementation is another make my hand dirty kinda thing. Is there another kinda 'official' way to get this value out of it?
  • Quit application from within thread

    4
    0 Votes
    4 Posts
    5k Views
    A
    You can call terminate() to all your threads before you exit your program, by reimplementing close event on your main window and insert there a call to terminate all threads.
  • QDesktopServices in QtGui

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Problem in displaying directories in Tree widget

    5
    0 Votes
    5 Posts
    2k Views
    A
    even i tried using QFileSystem...but getting runtime error... Plz look at this post---->http://developer.qt.nokia.com/forums/viewthread/14343/
  • Qt Application Debugging with GDB

    8
    0 Votes
    8 Posts
    6k Views
    F
    Hi Kromacast, Here is the link sourceware.org/gdb/onlinedocs/gdb.pdf.gz Cheers Aquib
  • Why do I get different results from QThread Run and Start methods?

    12
    0 Votes
    12 Posts
    5k Views
    K
    [quote author="Lukas Geyer" date="1328775254"] Does classifying the same image in the same thread twice result in the same output?[/quote] Yes. Executing run twice sequentially creates identical results and executing start twice sequentially creates identical results.