Re: Creating new Mode as special place in NetBeans
Tim Boudreau <[email protected]>
| Newsgroups | gmane.comp.java.netbeans.user-interface |
|---|---|
| Message-ID | <[email protected]> |
Sven Reimers wrote: > Hi, > > I was trying to get the following configuration with layer-files: > > ----------------------- > | | | | > | | | | > | 1 | 2 | 3 | > | |____________| | > | | | | > | | 4 | | > |____|____________|____| > | | > | 5 | > |______________________| > > (or something very similiar to this crude ascii-pic) > > > 1- ExplorerMode > 2- EditorArea > 3- PropertySheet > 4- NEW Custom Mode > 5- Output Mode (Window ...) > > > Somehow i may just be too dumb to figure the constraint path thing out, > despite trying heavily - and yes I read the doc on netbeans.org > describing the path thinking behind the constraints. > > So could anybody shed some light on this? Perhaps even give me the > correct constraints? > > All tries ended with 4 showing above 2, not vice versa. > > So any help is greatly appreciated. The only way I've found to do this is to go read the windowmanager files in core/ui...resources/ and base what I do on what I see there, or if I want something on a tab with a standard component, copy what I see there. If something in them changes, it will affect your layout and you get to go see what changed. Last time I looked, the magic number to display something in the same row as the editor was "20" - that is, that the editor lives in row 20 of a hypothetical grid. Hope that helps, Tim