plasma apps and screen information

Aaron J. Seigo aseigo at kde.org
Wed Oct 29 04:17:24 CET 2008


On Tuesday 28 October 2008, Guillaume Pothier wrote:
> to have the corona register itself when created. Ok to commit?

getting closer =)

first, the patch needs to guard against containment() and/or corona() being 0.

doing dynamic_casts like this:

menu.exec(dynamic_cast<Plasma::Corona*>(scene())->popupPosition(this, 
menu.size()));

isn't useful because dynamic_cast can return 0; if you aren't checking the 
return value, then just do a static_cast. in any case, it really ought to be 
like:

Plasma::Corona *c = m_applet->corona();
menu.exec(c ? c->popupPosition(this, menu.size()) : e->screenPos());

also Corona::screenGeometry should have a Q_UNUSED(id) to avoid a compiler 
warning.

so, some small implementation fixes, but i like how simple this makes things 
while removing QDesktopWidget use from libplasma. after the above changes are 
made, pls commit.

-- 
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 Software

-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 197 bytes
Desc: This is a digitally signed message part.
Url : http://mail.kde.org/pipermail/plasma-devel/attachments/20081028/f48b89f6/attachment-0001.sig 


More information about the Plasma-devel mailing list