dockable

Custom dock area using Qt 4.4

一笑奈何 提交于 2019-12-19 08:31:47
问题 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 Q3DockAreas to your subclass...". However, it seems to me that in Qt 4 Q3DockArea has been removed and now the QMainWindow itself has the dock areas. I basically want to have my own dock area widget that I can dock widgets into. This dock area widget

Custom dock area using Qt 4.4

牧云@^-^@ 提交于 2019-12-19 08:31:00
问题 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 Q3DockAreas to your subclass...". However, it seems to me that in Qt 4 Q3DockArea has been removed and now the QMainWindow itself has the dock areas. I basically want to have my own dock area widget that I can dock widgets into. This dock area widget

Netvibes like “draggable boxes” with javascript

点点圈 提交于 2019-12-13 04:38:13
问题 Do you know any project/framework in javascript (jquery or anything else) that has nice draggable windows that snaps in some fixed places like netvibes has? I found jPolite v2 but it seems a little too complex for what I want to do. Any idea? 回答1: You could use jQuery UI sortable. Look at the portlet example 来源: https://stackoverflow.com/questions/2751915/netvibes-like-draggable-boxes-with-javascript

MFC DockablePane not floating or hiding

老子叫甜甜 提交于 2019-12-11 14:14:12
问题 Is there any way to make a MFC DockablePane (from the new Feature Pack) that is docked in a window not able to float or to hide (and even disable the context menu that allows the user to select the states - dockable, float, hide etc.) What I basically want is to have 3 panes on a window that can change their horizontal dimensions, but not their position inside the window. Any suggestion? 回答1: The solution is to extend the CDockablePane and override in this class the following events: virtual

C++ MFC Feature Pack --> Create multiple CDockablePanes onto an CDialog

六眼飞鱼酱① 提交于 2019-12-02 17:17:43
问题 I try to create an area onto a CDialog, where I can put some CDockablePanes in. Those shall be perfectly dockable to a fixed dialog content. The Codejock Dialog Panes Sample is exactly what I want, but realized with the MFC feature pack classes: http://codejock.com/downloads/samples/dockingpane.asp At the moment I got a class inherited from CFrameWndEx, which is embedded in the CDialog. I also got a working CDockablePane in it. I can undock it and move it, but when I want to dock it the

Custom dock area using Qt 4.4

北城以北 提交于 2019-12-01 09:23:33
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 Q3DockAreas to your subclass...". However, it seems to me that in Qt 4 Q3DockArea has been removed and now the QMainWindow itself has the dock areas. I basically want to have my own dock area widget that I can dock widgets into. This dock area widget can be anywhere in the application. Any ideas on how I can do this? At first, Q3DockArea hasn't been

Recommendations on a WPF Docking Library

家住魔仙堡 提交于 2019-11-27 11:02:35
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 am aware that Infragistics has one, as well as Divelement's SandDock and WPF-Dock from DevComponents, as well as ActiPro's Docking & MDI product. There is also one on CodeProject . Has anyone used any of these libraries? Was the experience good or bad? If you have experience with one of them, does it support multiple "docking sites"? I've been

Recommendations on a WPF Docking Library

雨燕双飞 提交于 2019-11-26 15:24:09
问题 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 am aware that Infragistics has one, as well as Divelement's SandDock and WPF-Dock from DevComponents, as well as ActiPro's Docking & MDI product. There is also one on CodeProject. Has anyone used any of these libraries? Was the experience good or