Questions tagged [qdockwidget]

QDockWidget is a class from the Qt framework which represents a widget which can be docked inside a QMainWindow or floated as a top-level window in the desktop. Instances of this class are also called "dock widgets", "tool palettes" and "utility windows".

Dock widgets can be placed (docked) in a special area of a QMainWindow called dock widget area, which is the area surrounding the central widget. They can also be floated (undocked) by the end user.

231 questions
0
votes
1 answer

Qt4: Accessing QtDesigner-created widgets from a subclass of QDockedWidget

I bet my question is obvious from it's title but it may be as well not =) So let me explain in detail... I have created a QDockWidget and then transformed (I mean promoted to..) it into a subclass using the designer. So how do I properly access the…
0
votes
1 answer

Qt - allow docking even if QMainWindow too small

My previous question was unanswered, so let me rephrase it: Is it possible to make a QMainWindow accept docking of a QDockWidget regardless of the sizes of widget and the window? Currently, if the window is too small to fit the minimal size of a…
monoik
  • 13
  • 4
0
votes
1 answer

how to make central area resize to QDockWidgets positions

Since it seems not possible to add a QDockWidget in the middle area of a form, i wonder how can i resize the middle area text widget to automatically will the space. Ex: ======================= | top doc | |---------------------| |…
Anton
  • 1,181
  • 2
  • 17
  • 27
-1
votes
2 answers

how to remove title bar only when it is not floated in QDockWidget

I want to hide title bar in dockwidget when it is not floated. dock = QDockWidget() dock.setTitleBarWidget(QWidget()) dock.titleBarWidget().hide() this is hide the title bar of dockwidget but when it is floated, It doesn't show title bar
dauren slambekov
  • 378
  • 3
  • 15
-1
votes
1 answer

Qt DockWidgets distribution

I'm working in a QT Application with dock widgets. But I can't do the desired distribution, my current distribution is this: But i want this other distribution: Any ideas?
-1
votes
1 answer

Qdockwidget -- floating button on titlebar of qdockwidget

I am using QDockWidget in my GUI and I need to create a slot for the floating button of a QDockWidget so that when I click the floating button of a QDockWidget it maximize it. Which signal is emitted when I click floating button on an QDockWidget ?…
Katoch
  • 2,709
  • 9
  • 51
  • 84
1 2 3
15
16