Merge remote-tracking branch 'origin/KDE/4.7' into frameworks
Conflicts: plasma/popupapplet.cpp
This commit is contained in:
commit
685ae3b6c5
@ -308,8 +308,8 @@ void PopupAppletPrivate::popupConstraintsEvent(Plasma::Constraints constraints)
|
||||
q->resize(prefSize);
|
||||
emit q->appletTransformedItself();
|
||||
}
|
||||
//Applet on popup
|
||||
} else {
|
||||
//Applet on popup
|
||||
if (icon && lay) {
|
||||
lay->addItem(icon);
|
||||
}
|
||||
@ -330,7 +330,6 @@ void PopupAppletPrivate::popupConstraintsEvent(Plasma::Constraints constraints)
|
||||
delete proxy.data();
|
||||
}
|
||||
|
||||
if (!dialogPtr) {
|
||||
//save the aspect ratio mode in case we drag'n drop in the Desktop later
|
||||
savedAspectRatio = q->aspectRatioMode();
|
||||
|
||||
@ -348,19 +347,22 @@ void PopupAppletPrivate::popupConstraintsEvent(Plasma::Constraints constraints)
|
||||
}
|
||||
|
||||
//no longer use Qt::Popup since that seems to cause a lot of problem when you drag
|
||||
//stuff out of your Dialog. Monitor WindowDeactivate events so we can
|
||||
//stuff out of your Dialog (extenders). Monitor WindowDeactivate events so we can
|
||||
//emulate the same kind of behavior as Qt::Popup (close when you click somewhere
|
||||
//else.
|
||||
|
||||
if (gWidget) {
|
||||
Corona *corona = qobject_cast<Corona *>(gWidget->scene());
|
||||
if (!corona) {
|
||||
corona = qobject_cast<Corona *>(q->scene());
|
||||
}
|
||||
|
||||
if (corona) {
|
||||
corona->addOffscreenWidget(gWidget);
|
||||
}
|
||||
|
||||
gWidget->show();
|
||||
dialog->setGraphicsWidget(gWidget);
|
||||
//gWidget->resize(gWidget->preferredSize());
|
||||
dialog->setWindowFlags(Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint | (gWidget->windowFlags() & Qt::X11BypassWindowManagerHint));
|
||||
} else if (qWidget) {
|
||||
QVBoxLayout *l_layout = new QVBoxLayout(dialog);
|
||||
@ -381,7 +383,6 @@ void PopupAppletPrivate::popupConstraintsEvent(Plasma::Constraints constraints)
|
||||
QObject::connect(dialog, SIGNAL(dialogVisible(bool)), q, SLOT(dialogStatusChanged(bool)));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (constraints & Plasma::PopupConstraint) {
|
||||
updateDialogPosition();
|
||||
@ -591,7 +592,6 @@ PopupAppletPrivate::PopupAppletPrivate(PopupApplet *applet)
|
||||
: q(applet),
|
||||
icon(0),
|
||||
widget(0),
|
||||
graphicsWidget(0),
|
||||
popupPlacement(Plasma::FloatingPopup),
|
||||
popupAlignment(Qt::AlignLeft),
|
||||
savedAspectRatio(Plasma::InvalidAspectRatioMode),
|
||||
|
@ -58,7 +58,7 @@ public:
|
||||
QWeakPointer<Plasma::Dialog> dialogPtr;
|
||||
QWeakPointer<QGraphicsProxyWidget> proxy;
|
||||
QWidget *widget;
|
||||
QGraphicsWidget *graphicsWidget;
|
||||
QWeakPointer<QGraphicsWidget> graphicsWidget;
|
||||
Plasma::PopupPlacement popupPlacement;
|
||||
Qt::AlignmentFlag popupAlignment;
|
||||
Plasma::AspectRatioMode savedAspectRatio;
|
||||
|
Loading…
x
Reference in New Issue
Block a user