<div class="gmail_quote">On Thu, Oct 27, 2011 at 1:58 PM, Aaron J. Seigo <span dir="ltr"><<a href="mailto:aseigo@kde.org">aseigo@kde.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

<div class="im">On Thursday, October 27, 2011 13:36:27 Mark wrote:<br>
> flag setWindowFlags(Qt::FramelessWindowHint) on the QDeclarativeView object<br>
> which is removing the decorations, but i can't find the flag to get rid of<br>
> the taskbar entry. I haven't searched for it thoroughly yet, but if someone<br>
> knows that flag...? ;)<br>
<br>
</div>from plasma/desktop/shell/panelcontroller.cpp:<br>
<br>
    KWindowSystem::setState(winId(), NET::SkipTaskbar | NET::SkipPager |<br>
NET::Sticky | NET::KeepAbove);<br>
<br>
it also does the following which may be useful for you:<br>
<br>
    setAttribute(Qt::WA_DeleteOnClose);<br>
    setFocus(Qt::ActiveWindowFocusReason);<br>
<br>
and you may also wish to do this:<br>
<br>
        KWindowSystem::setOnAllDesktops(dialog->winId(), true);<br>
<div><div></div><div class="h5"></div></div></blockquote></div><br><div>Ah men i hate this.. This is a typical "it's right under your nose" case :p Thanx for helping :)</div>