mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-04-01 02:42:39 +08:00
Fixes qt4 compatibility.. Pass all WindowFlags at once (bug).
This commit is contained in:
parent
2513ab1f2b
commit
34d7bf6aeb
@ -30,10 +30,9 @@ DropOverlay::DropOverlay(DropAreas areas, QWidget *parent) :
|
|||||||
_splitAreas(NULL),
|
_splitAreas(NULL),
|
||||||
_fullAreaDrop(false)
|
_fullAreaDrop(false)
|
||||||
{
|
{
|
||||||
//setAttribute(Qt::WA_TransparentForMouseEvents);
|
setWindowFlags(Qt::Tool | Qt::FramelessWindowHint);
|
||||||
setWindowFlags(windowFlags() | Qt::Tool);
|
|
||||||
setWindowFlags(windowFlags() | Qt::FramelessWindowHint);
|
|
||||||
setWindowOpacity(0.2);
|
setWindowOpacity(0.2);
|
||||||
|
setWindowTitle("DropOverlay");
|
||||||
|
|
||||||
QBoxLayout* l = new QBoxLayout(QBoxLayout::TopToBottom);
|
QBoxLayout* l = new QBoxLayout(QBoxLayout::TopToBottom);
|
||||||
l->setContentsMargins(0, 0, 0, 0);
|
l->setContentsMargins(0, 0, 0, 0);
|
||||||
@ -147,10 +146,10 @@ DropSplitAreas::DropSplitAreas(DropAreas areas, QWidget* parent) :
|
|||||||
_left(0),
|
_left(0),
|
||||||
_center(0)
|
_center(0)
|
||||||
{
|
{
|
||||||
//setAttribute(Qt::WA_TransparentForMouseEvents);
|
setWindowFlags(Qt::Tool | Qt::FramelessWindowHint);
|
||||||
|
setWindowTitle("DropSplitAreas");
|
||||||
|
|
||||||
setAttribute(Qt::WA_TranslucentBackground);
|
setAttribute(Qt::WA_TranslucentBackground);
|
||||||
setWindowFlags(windowFlags() | Qt::Tool);
|
|
||||||
setWindowFlags(windowFlags() | Qt::FramelessWindowHint);
|
|
||||||
|
|
||||||
QGridLayout* grid = new QGridLayout();
|
QGridLayout* grid = new QGridLayout();
|
||||||
grid->setContentsMargins(0, 0, 0, 0);
|
grid->setContentsMargins(0, 0, 0, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user