PDA

View Full Version : Re: qmdisubwindow problem (I have new problem!)



melody:p
3rd September 2012, 03:10
hello guys.
I have some question about qmdisubwindow.

I have to make subwindow with custom titlebar.

actually, I have made mainwindow with custom titlebar and frame.
so I think I can make subwindow same way.

But, mainwindow and qmdisubwindow is not operate same way.
when I made custom mainwindow using


setWindowFlags(Qt::FramelessWindowHint);

I can't resize mainwindow, so I add some code for resizing.
and using


setWindowFlags(Qt::FramelessWindowHint);

at the qmdisubwindow,
I can resize subwindow.

unfortunately, provided policy is not I want.
So I want to add my own code for resize like mainwindow.
for that, I remove provided resize function of subwindow.

any hint? please help!

Added after 20 minutes:

A minute age, I saw the other mdiarea example.
and there's subwindow operate correctly, so I miss the other site..
I'm so confused.. :confused:
anyway sorry!
you just pass this question!

================================================== ====================================
:mad:
It's my mistake that I think sub window is non-resizable.
If I double-click the widget, I can resize the widget.
so, I use code this :


subwindow->setfixedsize();


but If I double-click the widget, mouse-cursor shape is still changed.
I want cursor shape will not changed too.
any help?? please...

melody:p
3rd September 2012, 07:05
I want to konw the method that qmdisubwindow to be operate like mainwindow using code setWindowFlags(Qt::FramelessWindowHint);