Questions tagged [pane]

294 questions
8
votes
2 answers

In Visual Studio Code, how can I get a git log of all git commands executed in the Source Control pane?

In vscode Source Control pane, I would like to get a log of the commands of any applied git command of the running session, including all mouse-click actions. For example: Before "Initialize Repository": After "Initialize Repository", which should…
questionto42
  • 7,175
  • 4
  • 57
  • 90
8
votes
2 answers

Visual Studio Code pane management like Origami

Has anyone found a way to have more complex pane layouts in Visual Studio Code, like those supported by Origami for Sublime? Layouts beyond splitting on the same axis are something that I really miss from Sublime.
Pat Putnam
  • 125
  • 8
8
votes
1 answer

JavaFX GraphicsContext change text size

I would like to be able to change the font size and possibly the font itself before the strokeText() method is called. I can change the color but I don't see anyway to change the font. Pane canvas = new Pane(); GraphicsContext gc =…
user1958884
  • 303
  • 3
  • 8
  • 14
7
votes
2 answers

When adding a second item to my stackpane, the first item loses its Event/MouseOn. Why? How can I fix? JavaFX

I have a stackpane. When I add a second item to my stack pane, both show up, but I can't click on my first item anymore. It becomes 'unclickable'. what ever I defined in my .setonmouse does not work. It works for my second item. If I switch the…
CREW
  • 926
  • 3
  • 17
  • 32
7
votes
1 answer

Javafx canvas vs pane

I'm a novice Java/JavaFX programmer and I'm developing a simple JavaFX building design tool where you can draw out walls, floors etc. So objects (mostly Lines, Circles, Polygons, Rectangles images) are drawn & created on screen rather than created…
Nick B
  • 167
  • 1
  • 7
7
votes
2 answers

JavaFX Have multiple Panes in one scene?

I am trying to make an application which will have a date at the top (always automatically centered) and content at the bottom which is not going to be aligned to any direction. I figured the best way to do this would be to have: Pane normalLayout…
Hatefiend
  • 3,416
  • 6
  • 33
  • 74
7
votes
2 answers

How to refer to an anchor pane in css?

is there a possibility to refer to an anchor pane in css? If the anchor pane happens to be the root, than it's ok: .root{ -fx-background-image: url("xxx.yy"); } It works. But if not, then how to do this? I tried .anchor-pane{}, it didn't work. Then…
user3435407
  • 1,019
  • 4
  • 15
  • 31
7
votes
3 answers

How to restrict visibility of items?

Imagine that we have an AnchorPane, it has child Pane and there we have Button, for example. I want this Button to be shown only inside this Pane. In other words, it whould be cut by the Pane edges if it is not completely within Pane. Now the Button…
Chechulin
  • 2,426
  • 7
  • 28
  • 35
6
votes
1 answer

How to draw arrow JavaFX? (pane)

I need to make directed graph from undirected. I can draw line-Edge, but I don't know how to make arrow: public class Edge extends Group { protected Cell source; protected Cell target; Line line; public Edge(Cell source, Cell target) { …
user7347706
  • 63
  • 1
  • 1
  • 3
6
votes
1 answer

Custom preview for open dialog using Delphi

I need to preview several CAD formats in the file open dialog box in Windows 7 / Vista. In the past I used a Delphi Preview Open Dialog and I could register and implement the CAD format that I had to preview. I have found some articles on how to…
PierreS
  • 61
  • 1
  • 2
5
votes
0 answers

Pane layout in R studio : showing fully all four panes fully

Good afternoon I am struggling getting my default pane layout i am used to in R studio (Version 1.3.1073) and view -> panes -> show all panes does not work. The issue is, I can see all pane (source, console, environment and files) like on the image…
5
votes
2 answers

Navigation Pane in Word 2016: VBA code to force collapsed view of headings

I am trying to write a VBA macro that runs when opening a .docx document. I want it to force the display of the Navigation Pane and then force all of the headings (any level) to display in collapsed mode. I am trying to get the code for the Collapse…
NGusCar
  • 51
  • 3
5
votes
1 answer

Bootstrap 4 tabs - first pane not shown on pageload

I have a problem with tabbable panes. When i load the page the first pane keeps empty by pageload. When i switch to the second pane and go back to the first. The content is shown. I cant find the solution, there are no javacript errors but i think…
J.Hauke
  • 53
  • 1
  • 4
5
votes
1 answer

SQL Server Management Studio panes setting, always show Diagram Pane, Criteria Pane and SQL Pane

I am regularly working with SQL Server Management Studio and always use the following panes to work with the data: Diagram, Criteria and SQL. SQL Panes that I always use At the moment, I am just clicking on them each time that I want to use them…
SHW
  • 461
  • 7
  • 26
5
votes
2 answers

Vim window resizing repetitively

I have key bindings in tmux which I really enjoy to manage split panes: bind -r H resize-pane -L 5 bind -r J resize-pane -D 5 bind -r K resize-pane -U 5 bind -r L resize-pane -R 5 This allows me to hit L wit multiple Ls in a row. It also allows me…
Max
  • 156
  • 1
1
2
3
19 20