Results 1 to 2 of 2

Thread: How to hide application button on the task bar?

  1. #1
    Join Date
    Jul 2007
    Location
    Russia, Ul'yanovsk
    Posts
    20
    Thanked 1 Time in 1 Post
    Qt products
    Qt4
    Platforms
    Windows

    Default How to hide application button on the task bar?

    Just subj. How to do it, but application window must remains vsible? Qt 4.3.3.

  2. #2
    Join Date
    Dec 2007
    Posts
    20
    Thanks
    4
    Qt products
    Qt4
    Platforms
    MacOS X Windows

    Default Re: How to hide application button on the task bar?

    under windows use Qt::SubWindow (Qt::WindowFlags)

    Qt Code:
    1. Qt::WindowFlags flags;
    2. flags |= Qt::SubWindow;
    3. setWindowFlags(flags);
    To copy to clipboard, switch view to plain text mode 

    under linux, I didn't tested.
    under mac, I don't think there is a solution
    Last edited by jpn; 18th January 2008 at 16:56. Reason: missing [code] tags

Similar Threads

  1. QSkinWindows Classes
    By kernel_panic in forum Qt-based Software
    Replies: 45
    Last Post: 20th April 2010, 12:35

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.