Output View not dockable in 3365?
- zaphod
- CodeLite Veteran
- Posts: 55
- Joined: Fri Sep 11, 2009 6:20 pm
- Contact:
Output View not dockable in 3365?
Is is possible to make the "Output View" pane dockable in 3365 the way it is in 3035? I'm unable to find a control to do this.
The facility to "hide the output pane" whenever one clicks in an editor is nice, but I have LOTS of screen space [1920 x 1200] so docking the Output View beneath the Workspace View, with the code editor on the right, allowed me to see everything and always have the editor full screen height. At the moment, I have lots of wasted whitespace on the screen -- it's a crime to let pixels go to waste.
The facility to "hide the output pane" whenever one clicks in an editor is nice, but I have LOTS of screen space [1920 x 1200] so docking the Output View beneath the Workspace View, with the code editor on the right, allowed me to see everything and always have the editor full screen height. At the moment, I have lots of wasted whitespace on the screen -- it's a crime to let pixels go to waste.
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Output View not dockable in 3365?
You can not dock it.
You can use Ctrl-M to hide the output view if needed.
Eran
You can use Ctrl-M to hide the output view if needed.
Eran
Make sure you have read the HOW TO POST thread
- zaphod
- CodeLite Veteran
- Posts: 55
- Joined: Fri Sep 11, 2009 6:20 pm
- Contact:
Re: Output View not dockable in 3365?
Pity . Nevertheless, keep up the good work!
- kspes
- CodeLite Enthusiast
- Posts: 41
- Joined: Sat Jan 30, 2010 2:18 am
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Output View not dockable in 3365?
This would be really useful, I usually have 2 monitors set up and prefer to set the output window on the other monitor. That's how I've been doin it with visual c++ for the past few months and has turned out great;
How difficult would this be to implement?
How difficult would this be to implement?
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Output View not dockable in 3365?
Actually, I tried to make it dockable - the only thing that *can* be docked is the pane, NOT the button.
So you will be ending up with the buttons at the bottom of codelite while the output pane is floating around / docked somewhere else. We could make it configurable though.
Eran
So you will be ending up with the buttons at the bottom of codelite while the output pane is floating around / docked somewhere else. We could make it configurable though.
Eran
Make sure you have read the HOW TO POST thread
- kspes
- CodeLite Enthusiast
- Posts: 41
- Joined: Sat Jan 30, 2010 2:18 am
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Output View not dockable in 3365?
Hmm, why not the buttons? Can't you assign them to the pane window, not the main window? The project window is dockable and has buttons on it as well;
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Output View not dockable in 3365?
Since the buttons are a different window. The thing is that by clicking a button, I am using wxAUI API to Hide / Show the pane. Now, by assigning the buttons to the same window, we will end up hiding the buttons as well (the output pane is a wxAui pane with no caption visible) - which is bad. We could try instead of hiding it simple change its size to fit the buttons -> but from my experience with wxAui this is close to impossiblekspes wrote:Hmm, why not the buttons?
Eran
Make sure you have read the HOW TO POST thread
- kspes
- CodeLite Enthusiast
- Posts: 41
- Joined: Sat Jan 30, 2010 2:18 am
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Output View not dockable in 3365?
can you assign a menu accelerator to show/hide the pane instead of assigning it to a button in the pane? That might solve the problem
-
- CodeLite Plugin
- Posts: 819
- Joined: Wed Sep 03, 2008 7:26 pm
- Contact:
Re: Output View not dockable in 3365?
Hi,
I suppose you could duplicate the button panel. Have one in the dockable pane, and the other in the current bottom-of-screen position.
Then, when the output view is open and its buttons visible, hide the bottom-of-screen buttons. When it's closed (and, optionally, when it's undocked) you show them.
Regards,
David
I suppose you could duplicate the button panel. Have one in the dockable pane, and the other in the current bottom-of-screen position.
Then, when the output view is open and its buttons visible, hide the bottom-of-screen buttons. When it's closed (and, optionally, when it's undocked) you show them.
Regards,
David
- kspes
- CodeLite Enthusiast
- Posts: 41
- Joined: Sat Jan 30, 2010 2:18 am
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Output View not dockable in 3365?
So, what's the state of this then? It would be great if the output window can be dockable, even if that means adding the title area. The little bugger is really eating my screen space. In VC++ i detach the output window and send it to another monitor to maximize the code area which has proven to be very very useful.eranif wrote:We could make it configurable though.
As a compromise solution, you can provide an option to detach the output window even though the buttons will remain there.
BTW: is there an alternative to using wxAui for the buttons? Workspace view has tabs on the bottom and that'd work quite nicely with the output view.