On Thursday, October 27, 2011 13:36:27 Mark wrote:
> flag setWindowFlags(Qt::FramelessWindowHint) on the QDeclarativeView object
> which is removing the decorations, but i can't find the flag to get rid of
> the taskbar entry. I haven't searched for it thoroughly yet, but if someone
> knows that flag...? ;)

from plasma/desktop/shell/panelcontroller.cpp:

    KWindowSystem::setState(winId(), NET::SkipTaskbar | NET::SkipPager | 
NET::Sticky | NET::KeepAbove);

it also does the following which may be useful for you:

    setAttribute(Qt::WA_DeleteOnClose);
    setFocus(Qt::ActiveWindowFocusReason);

and you may also wish to do this:

        KWindowSystem::setOnAllDesktops(dialog->winId(), true);

-- 
Aaron J. Seigo
humru othro a kohnu se
GPG Fingerprint: 8B8B 2209 0C6F 7C47 B1EA  EE75 D6B7 2EB1 A7F1 DB43

KDE core developer sponsored by Qt Development Frameworks

Attachment: signature.asc
Description: This is a digitally signed message part.

_______________________________________________
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel

Reply via email to