be more careful accessing the containment associated with the applet, try to avoid looking through all the applets if the extender belongs to us when initializing

svn path=/trunk/KDE/kdelibs/; revision=980050
This commit is contained in:
Aaron J. Seigo 2009-06-11 00:28:24 +00:00
parent 6fe5b82087
commit d199bb679c

View File

@ -142,7 +142,12 @@ QList<ExtenderItem*> Extender::items() const
//FIXME: a triple nested loop ... ew. there should be a more efficient way to do this
//iterate through all extenders we can find and check each extenders source applet.
foreach (Containment *c, d->applet->containment()->corona()->containments()) {
Containment *containment = d->applet->containment();
if (!containment) {
return result;
}
foreach (Containment *c, containment->corona()->containments()) {
foreach (Applet *applet, c->applets()) {
if (applet->d->extender) {
foreach (ExtenderItem *item, applet->d->extender->attachedItems()) {
@ -168,7 +173,12 @@ QList<ExtenderItem*> Extender::detachedItems() const
//FIXME: a triple nested loop ... ew. there should be a more efficient way to do this
//iterate through all extenders we can find and check each extenders source applet.
foreach (Containment *c, d->applet->containment()->corona()->containments()) {
Containment *containment = d->applet->containment();
if (!containment) {
return result;
}
foreach (Containment *c, containment->corona()->containments()) {
foreach (Applet *applet, c->applets()) {
if (applet->d->extender) {
foreach (ExtenderItem *item, applet->d->extender->attachedItems()) {
@ -195,7 +205,12 @@ ExtenderItem *Extender::item(const QString &name) const
// maybe it's been moved elsewhere, so lets search through the entire tree of elements
//FIXME: a triple nested loop ... ew. there should be a more efficient way to do this
//iterate through all extenders we can find and check each extenders source applet.
foreach (Containment *c, d->applet->containment()->corona()->containments()) {
Containment *containment = d->applet->containment();
if (!containment) {
return 0;
}
foreach (Containment *c, containment->corona()->containments()) {
foreach (Applet *applet, c->applets()) {
if (applet->d->extender) {
if (applet->d->extender == this) {
@ -230,6 +245,10 @@ bool Extender::hasItem(const QString &name) const
//not been instantiated yet. check to see if there's mention of this item existing in the
//plasma config's section DetachedExtenderItems
Corona *corona = qobject_cast<Corona *>(scene());
if (!corona) {
return false;
}
KConfigGroup extenderItemGroup(corona->config(), "DetachedExtenderItems");
foreach (const QString &extenderItemId, extenderItemGroup.groupList()) {
KConfigGroup cg = extenderItemGroup.group(extenderItemId);
@ -595,8 +614,16 @@ void ExtenderPrivate::loadExtenderItems()
kDebug() << "sourceappletid = " << sourceAppletId;
//find the source applet.
Corona *corona = applet->containment()->corona();
Applet *sourceApplet = 0;
if (applet->id() == sourceAppletId) {
// it's ours!
sourceApplet = applet;
} else {
Containment *containment = applet->containment();
if (containment) {
Corona *corona = containment->corona();
foreach (Containment *containment, corona->containments()) {
foreach (Applet *applet, containment->applets()) {
if (applet->id() == sourceAppletId) {
@ -604,6 +631,8 @@ void ExtenderPrivate::loadExtenderItems()
}
}
}
}
}
//There is no source applet. We just instantiate one just for the sake of creating
//detachables.