Questions tagged [dockable]

21 questions
36
votes
8 answers

Recommendations on a WPF Docking Library

We are implementing an application that needs dockable windows, similar to Visual Studio 2005/2008, but with multiple "docking sites", unlike VS's single one. Does anyone have a recommendation on a good library for this - either OSS or commercial? I…
Brian Stewart
  • 9,157
  • 11
  • 54
  • 66
5
votes
1 answer

Custom dock area using Qt 4.4

Is it possible to create custom dock areas using Qt 4.4. I know this is possible in Qt 3 as this document suggests. Excerpt from document"...If you need to create your own dock areas we suggest that you create a subclass of QWidget and add your…
Juba
  • 4,425
  • 3
  • 25
  • 19
4
votes
2 answers

How can I position QDockWidgets as the screen shot shows using code?

I want a Qt window to come up with the following arrangement of dock widgets on the right. alt text http://img72.imageshack.us/img72/6180/docksonside.png Qt allows you to provide an argument to the addDockWidget method of QMainWindow to specify the…
Nathan
  • 6,095
  • 10
  • 45
  • 54
3
votes
1 answer

.Net/WinForms Docking/Floating Library for .Net 4.0

It must Support .Net 4.0 Client Profile (designers in separate assembly) Serialize layout to custom stream Allow maximizing of floating window in caption doubleclick Cost not too mush (200US$ is optimal). Also do not need a bundle of 1000 and 1…
adontz
  • 1,428
  • 16
  • 36
3
votes
1 answer

how to add QDockWidget to QFrame in PyQt4

How do I add QDockWidget to QFrame ? since QFrame does not have addDockWidget !!! from PyQt4.QtCore import * from PyQt4.QtGui import * import sys app = QApplication( sys.argv ) qmainwin = QFrame() #qmainwin.setWindowFlags(Qt.FramelessWindowHint) s…
Ciasto piekarz
  • 7,853
  • 18
  • 101
  • 197
3
votes
0 answers

How to keep the dockable bar of dotnetbar visible in auto-hide state until i click other controls?

Just like the title says. I create a dockable bar, one of dotnetbar controls in the form.And I set the bar in auto-hide state. Now I want to keep the bar visible in auto-hide state until I click other controls just like the visual studio's dockable…
2
votes
0 answers

How to implement a Adobe Photoshop Elements like toolbox in QT

Adobe Photoshop Elements is developed in QT. How to implement the dockable and stretchable toolbox at the left of Adobe Photoshop Elements. THX.
sfzhang
  • 669
  • 9
  • 18
2
votes
3 answers

Windows ToolBar-dockable application

How to create a windows toolbar-dockable application - like Winamp Desk Band - in .NET?
rafek
  • 5,464
  • 13
  • 58
  • 72
1
vote
3 answers

How to Create a Dockable Tab like IE9 or chrome

i want to implement a UI look like IE9 or chrome. i like the dockable tab,it can be dragged out into a new window. and the window can also be put into as a tab. is anyone can give me an idea how to implement it, or a library,or an example? thank you…
GeminiYellow
  • 1,016
  • 2
  • 12
  • 34
1
vote
2 answers

Hiding the tabs in a DockableFrame using Jidesoft

I am stuck using JideSoft at the momemnt. I have a DockableFrame, which will have many views on it. I want to hide the tabs that let me switch between views, but I cannot figure out how. Can anybody help?
smuggledPancakes
  • 9,881
  • 20
  • 74
  • 113
1
vote
1 answer

Android: dock an widget/app to one side of the display

Does anybody know how to realise an Android app that docks to one side of the display, is not dragable and no other elements can be dragged over it? I mean something like on the right side of this ARCHOS Android: https://i.stack.imgur.com/KpMSs.jpg
Charly
  • 180
  • 2
  • 10
1
vote
1 answer

Create multiple CDockablePanes onto an CDialog

I'm trying to do exactly the same as the article describes here: "C++ MFC Feature Pack --> Create multiple CDockablePanes onto an CDialog" I followed his procedure and now am able to undock and move the CDockablePane, but get the same crash when…
Yifeng
  • 11
  • 4
1
vote
0 answers

CDockablePane doesn't save layout when it's docked to another pane

In an MFC application, I've got two derived CDockablePane pane objects docked to either side of the main view. Here is the code to create one of the panes. The second is similar. if(m_dlgPane && m_dlgPane->GetSafeHwnd()) { …
ali
  • 529
  • 4
  • 26
1
vote
1 answer

in mfc how to implement dockable dialog?

i am working on a Dialog based application in MFC, I need something just like visual studio's left panel, right panel, bottom panelwhich have a close button to close the panel. Anyone know how to implement this ?
MemoryLeak
  • 7,322
  • 23
  • 90
  • 133
0
votes
0 answers

How to set icon for title of Jide's DockableFrame

I want to set an icon on the tile bar of DockableFrame. Though I tried using setFrameIcon method, it just displays the icon on bottom (footer) of the frame window. However I want to set icon for the title. Please help.
Sairam
  • 29
  • 3
1
2