vote up 1 vote down star

Hi,

Pardon me, I am a newbie :)

Is it possible in Qt to create a custom window without borders but still draggable without holding down the Alt Key? I created a borderless window but in order to be able to drag it (on Linux) you have to hold down the alt key.

I was planning to create a window with rounded corners. Any one have any idea how to make this possible? Although, I think implementing the mouseMove, mousePress or something is a possible solution but I need some other solution.

Thanks

flag

4 Answers

vote up 0 vote down

Thanks guys for the replies. The shaped-clock example was really helpful

link|flag
vote up -3 vote down

Qt has no weaknesses, it can do ANYTHING, and what you are proposing is a piece of cake. Detect that the mouse is held down on your window, then grab the events for the mouse moving around so you can move your window in sync with it. When user releases mouse button your task is over.

So, that deserved a -2 rating? Goodness, I should of just kept my mouth shut.

link|flag
vote up 1 vote down

Yes, there is a rounded window example somewhere using a clock which does this. Basically, you need to manage the mouse clicks yourself as Aaron says.

link|flag
vote up 4 vote down

There is just one way to make the window manager move the window: Add a drag bar. If there is no drag bar, then your app must move the window itself by setting the new position (i.e. you must handle the mouse click+move events yourself).

The feature to move the window by pressing Alt is also a function of your window manager, not Qt.

link|flag
2  
See the Shaped Clock example: doc.trolltech.com/4.5/widgets-shapedclock.html/… – cjhuitt Nov 5 at 18:01
@cjhuitt: That should be an answer! – Aaron Digulla Nov 6 at 8:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.