jfx icon indicating copy to clipboard operation
jfx copied to clipboard

8313424: JavaFX controls in the title bar

Open mstr2 opened this issue 1 year ago • 9 comments

This PR is a new take on a highly requested feature: JavaFX controls in the header bar (see also #594 for an earlier iteration).

This is a feature with many possible ways to skin the cat, and it has taken quite a bit of effort to come up with a good user model. In contrast to the previous iteration, the focus has shifted from providing an entirely undecorated window to providing a window with a user-configurable header bar.

The customizable header bar is a new layout container: javafx.scene.layout.HeaderBar. It has three areas that accept child nodes: leading, center, and trailing. HeaderBar also automatically adjusts for the placement of the default window buttons (minimize, maximize, close) on the left or right side of the window.

The customizable header bar is combined with a new EXTENDED stage style, which extends the client area into the header bar area. The new extended stage style is supported on Windows, macOS, and Linux. For platforms that don't support this stage style, it automatically downgrades to DECORATED.

This is how it looks like on each of the three operating systems:

extendedwindow

The window buttons (minimize, maximize, close) are provided by JavaFX, not by the application developer. This makes it easier to get basic window functionality without recreating the entirety of the window controls for all platforms.

Usage

This is a minimal example that uses a custom header bar with a TextField in the center area. HeaderBar is usually placed in the top area of a BorderPane root container:

public class MyApp extends Application {
    @Override
    public void start(Stage stage) {
        var headerBar = new HeaderBar();
        headerBar.setCenter(new TextField());

        var root = new BorderPane();
        root.setTop(headerBar);

        stage.setScene(new Scene(root));
        stage.initStyle(StageStyle.EXTENDED);
        stage.show();
    }
}

To learn more about the details of the API, refer to the documentation of StageStyle.EXTENDED and HeaderBar.

Platform integration

The implementation varies per platform, and ranges from pretty easy to quite involved:

  1. macOS: The window buttons are provided by macOS, we just leave an empty area where the window buttons will appear. The client area is extended to cover the entire window by setting the NSWindowStyleMaskFullSizeContentView flag. A click-and-drag operation is initiated with performWindowDragWithEvent.

For both Windows and Linux, there is no practical way to draw custom content into the system-provided title bar, and it is also not an option to overlay the system-provided window buttons on top of a custom window. Both implementations therefore hide the system title bar, and draw a JavaFX recreation of the system window buttons into an overlay layer on top of the window. Since there is no title bar, the entire window is available for JavaFX.

  1. Windows: We get a "barebones" window by handling WM_NCCALCSIZE to extend the client area, and WM_NCHITTEST to get click-and-drag and snap layouts. The system-provided resize border around the window, shadows under the window, and window animations are retained (this differentiates it from an UNDECORATED window).
  2. Linux: Since GTK really doesn't want to share rendering with JavaFX, we can't use GtkHeaderBar to get the default window buttons. In contrast to Windows, which has only one look-and-feel, Linux has many. We ship two versions of window buttons: one that looks Gnome-like, and one that looks KDE-like. JavaFX then chooses the version that fits best. Making matters more complicated, an undecorated GTK window has no system-provided resize border. We therefore need to introduce a virtual resize border around the inside of the window, and handle click-and-drag and resizing with gtk_window_begin_move_drag() and gtk_window_begin_resize_drag(), respectively.

Final thoughts

This feature is quite complex, and it introduces APIs that are hard to change after introduction (like the HeaderBar layout container). We should consider making this a preview feature.


Progress

  • [x] Change must not contain extraneous whitespace
  • [ ] Change requires a CSR request matching fixVersion jfx24 to be approved (needs to be created)
  • [x] Commit message must refer to an issue
  • [ ] Change must be properly reviewed (2 reviews required, with at least 2 Reviewers)

Issue

  • JDK-8313424: JavaFX controls in the title bar (Enhancement - P4)

Reviewing

Using git

Checkout this PR locally:
$ git fetch https://git.openjdk.org/jfx.git pull/1605/head:pull/1605
$ git checkout pull/1605

Update a local copy of the PR:
$ git checkout pull/1605
$ git pull https://git.openjdk.org/jfx.git pull/1605/head

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 1605

View PR using the GUI difftool:
$ git pr show -t 1605

Using diff file

Download this PR as a diff file:
https://git.openjdk.org/jfx/pull/1605.diff

Webrev

Link to Webrev Comment

mstr2 avatar Oct 20 '24 00:10 mstr2

:wave: Welcome back mstrauss! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

bridgekeeper[bot] avatar Oct 20 '24 00:10 bridgekeeper[bot]

@mstr2 This change now passes all automated pre-integration checks.

ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details.

After integration, the commit message for the final commit will be:

8313424: JavaFX controls in the title bar (Preview)

Reviewed-by: angorya, mmack, kcr

You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed.

At the time when this comment was updated there had been no new commits pushed to the master branch. If another commit should be pushed before you perform the /integrate command, your PR will be automatically rebased. If you prefer to avoid any potential automatic rebasing, please check the documentation for the /integrate command for further details.

➡️ To integrate this PR with the above commit message to the master branch, type /integrate in a new comment.

openjdk[bot] avatar Oct 20 '24 00:10 openjdk[bot]

Webrevs

mlbridge[bot] avatar Oct 20 '24 00:10 mlbridge[bot]

/reviewers 2 reviewers /csr

mstr2 avatar Oct 20 '24 00:10 mstr2

@mstr2 The total number of required reviews for this PR (including the jcheck configuration and the last /reviewers command) is now set to 2 (with at least 2 Reviewers).

openjdk[bot] avatar Oct 20 '24 00:10 openjdk[bot]

@mstr2 has indicated that a compatibility and specification (CSR) request is needed for this pull request.

@mstr2 please create a CSR request for issue JDK-8313424 with the correct fix version. This pull request cannot be integrated until the CSR request is approved.

openjdk[bot] avatar Oct 20 '24 00:10 openjdk[bot]

Hey, I'm glad to see this PR, but do you have any ideas for continuing to provide UNDECORATED_INTERACTIVE in the future? I think UNDECORATED_INTERACTIVE is more useful than EXTENDED for users who want to provide a consistent UI on different platforms.

Glavo avatar Oct 20 '24 12:10 Glavo

Very nice. I'll test on Linux and report back.

tsayao avatar Oct 20 '24 13:10 tsayao

Hey, I'm glad to see this PR, but do you have any ideas for continuing to provide UNDECORATED_INTERACTIVE in the future? I think UNDECORATED_INTERACTIVE is more useful than EXTENDED for users who want to provide a consistent UI on different platforms.

The only difference between the two would be whether the default window buttons are provided. I don't see how a window without default window buttons would be more useful. Even heavily stylized apps like Spotify use window buttons that feel at home on the OS, that doesn't take away from a consistent look and feel.

mstr2 avatar Oct 20 '24 17:10 mstr2

A few points observed on Linux:

  1. It's possible to resize it to 1px using the provided functionality with gtk_window_begin_resize_drag. An then it's not possible to resize back. The Headerbar should block resizing to the size of window controls.
  2. It's not possible to move the window if the cursor is over a control. Maybe you should just gtk_window_begin_move_drag when a drag is detected, not on click. That would be on WindowContextBase::process_mouse_motion;
  3. The application is closing if the click happens on the top right corner (that's because it's triggering the close button instead of resizing (I think 2 should solve it as well). It closes with: (java:16179): Gtk-CRITICAL **: 07:34:26.721: gtk_window_begin_resize_drag: assertion 'gtk_widget_get_visible (widget)' failed
  4. Alt + F8 is working (it's a desktop shortcut for resizing the window) - just pointing out to include in manual testing;
  5. I think rounded edges should be supported on the HeaderBar, since it's the default on gnome. For that to work, EXTENDED should be also transparent on Linux. It would loose the window drop shadow which can be added on the JavaFX side. gdk_window_set_shadow_width should be called with the drop shadow size, so the desktop will know the correct window bounds.

Added later: 6) It should have a "focused" state/pseudo class because on gnome (maybe others) the focused window has a different background on the HeaderBar which is darker. 7) Suggestion: Maybe make window states stylable on the HeaderBar with pseudo-classes like :maximized, :fullscreen, :focused, :solid (when it does not have rounded corners). Then it would be possible to CSS style it. 8) Maybe integrate with platform preferences and provide a way to CSS style it when it's Light or Dark?

Nice cleanup on Window.java . UndecoratedMoveResizeHelper was not going to work on Linux anyways.

tsayao avatar Oct 21 '24 10:10 tsayao

I suggest we convert this PR to Draft and first discuss this in the mailing list.

There are so many issues with the proposal that need to be ironed first: CSS support, height limitation (what happens when the app or CSS places too large of the component?), user-defined color/accents/transparency on Windows, to name just a few.

This change also may add a significant maintenance burden to the platform, for what I feel is a very small payout.

What do you think?

andy-goryachev-oracle avatar Oct 21 '24 20:10 andy-goryachev-oracle

I suggest we convert this PR to Draft and first discuss this in the mailing list.

This has already been discussed at various points in time, and was always received positively. The previous implementation is one of the most-upvoted feature proposals since OpenJFX moved to GitHub.

There are so many issues with the proposal that need to be ironed first: CSS support, height limitation (what happens when the app or CSS places too large of the component?), user-defined color/accents/transparency on Windows, to name just a few.

What about these things? I don't understand the question, but let me try to give some answers nontheless:

  1. CSS support: HeaderBar is a normal part of the scene graph, so it fully supports CSS styling.
  2. Height limitation: the height of HeaderBar is user-configurable, just like any layout container. It can be as large as you want.
  3. User-defined color/accents/transparency: Again, since HeaderBar is a part of the scene graph, all rules are the same.

This change also may add a significant maintenance burden to the platform, for what I feel is a very small payout.

Popular demand says otherwise.

mstr2 avatar Oct 21 '24 22:10 mstr2

Popular demand is good, but I would like to hear from the tech leads and the maintainers.

andy-goryachev-oracle avatar Oct 21 '24 22:10 andy-goryachev-oracle

To clarify about height: do all the platforms support arbitrary height? What if size set by the app/CSS exceeds the height supported by the platform?

About platform preferences: will it support all the attributes of the window decorations provided by the platform?

andy-goryachev-oracle avatar Oct 21 '24 22:10 andy-goryachev-oracle

To clarify about height: do all the platforms support arbitrary height? What if size set by the app/CSS exceeds the height supported by the platform?

Yes, all platforms support header bars of arbitrary height. You can make the header bar the size of the entire window, in which case everything is draggable.

About platform preferences: will it support all the attributes of the window decorations provided by the platform?

If by "attributes" you mean the default behavior of platform decorations, then the anwer is mostly. These are the behaviors that are available on every platform:

  1. A resize border.
  2. Minimize, maximize, and close buttons (this includes all states these buttons can be in: available/deactivated/disabled).
  3. Click-and-drag on the header bar.
  4. Double-click to maximize on the header bar.

On Windows, native window decorations also have the "system menu", which is this thing that appears when you click on the program icon: Ml7Pf

~EXTENDED windows have no system menu, because they have no program icon.~ Edit: they now have a system menu that opens with a right click on the header bar.

mstr2 avatar Oct 21 '24 23:10 mstr2

@tsayao Thanks for the comments. I'll have a look at the bugs that you found.

  1. It's not possible to move the window if the cursor is over a control. Maybe you should just gtk_window_begin_move_drag when a drag is detected, not on click. That would be on WindowContextBase::process_mouse_motion;

I know that dragging on interactive controls is a thing on Linux, but I don't think that we should be doing that. JavaFX applications are multi-platform apps, which means that their behavior should be consistent across platforms. Stealing mouse interactions on interactive controls is not a thing on Windows and macOS, and this has the potential to cause problems for application developers.

If you want, you can declare any node in the header bar to be draggable on all platforms with HeaderBar.setDraggable(Node, boolean).

  1. I think rounded edges should be supported on the HeaderBar, since it's the default on gnome. For that to work, EXTENDED should be also transparent on Linux. It would loose the window drop shadow which can be added on the JavaFX side. gdk_window_set_shadow_width should be called with the drop shadow size, so the desktop will know the correct window bounds.

I'll have to look into that, but in general an EXTENDED window should work out of the box for all platforms, without platform-specific changes on the JavaFX side.

Added later: 6) It should have a "focused" state/pseudo class because on gnome (maybe others) the focused window has a different background on the HeaderBar which is darker. 7) Suggestion: Maybe make window states stylable on the HeaderBar with pseudo-classes like :maximized, :fullscreen, :focused, :solid (when it does not have rounded corners). Then it would be possible to CSS style it. 8) Maybe integrate with platform preferences and provide a way to CSS style it when it's Light or Dark?

While that sounds useful at first, I don't think it carries its own weight. Many platforms use different styling for windows that are focused vs. windows that are not. This not only includes the header bar, but many other parts of the user interface as well. I don't think that we should be adding what would essentially be ad-hoc pseudo-classes only to HeaderBar.

In addition to that, it is extremely easy for an application to do this by adding a listener to Stage.focused and then toggling pseudo-classes on all relevant controls.

We should definitely not do pseudo-classes for light vs. dark mode. The correct way to solve this problem is with media queries (prefers-color-scheme).

mstr2 avatar Oct 21 '24 23:10 mstr2

Mailing list message from quizynox at gmail.com on openjfx-dev:

Hello,

Thank you so much for your effort! I'm really glad this hasn't been forgotten. I wouldn't say it's just popular demand; it's an absolute must. Here are a few thoughts, if you don't mind.

Every modern platform supports this feature: Electron, Tauri, Wails, Qt, and even Swing via FlatLaf. If you use IntelliJ or VSCode, you can see it for yourself. It's a popular design trend, which is why there's so much demand.

Unfortunately, the current UNDECORATED stage implementation lacks two important things: shadows and smooth resizing. Implementing shadows is tricky but possible. However, achieving smooth resizing with Java code alone is not feasible. There are several implementations on StackOverflow, but they tend to be jerky and not very performant.

That's why the implementation should be handled on the native side, which isn't something an app developer can do. We can only patiently wait for this feature to be integrated into the core JavaFX platform.

It's indeed a complex feature. For that reason, I believe the implementation shouldn't provide platform-dependent window controls. It should be left to app developers to dodge theming issues. In Linux, for example, it's common to install 3rd-party themes or decorations. You never know what decorations the end user will use, and OS developers can change themes over time too. It's just simpler to support this feature as a separate library, which I'm sure will be developed.

??, 22 ???. 2024??. ? 03:24, Michael Strau? <mstrauss at openjdk.org>:

-------------- next part -------------- An HTML attachment was scrubbed... URL: <https://mail.openjdk.org/pipermail/openjfx-dev/attachments/20241022/367f812e/attachment-0001.htm>

mlbridge[bot] avatar Oct 22 '24 04:10 mlbridge[bot]

I think we should look at use cases and design a simple solution that can be extended.

Doing this with JavaFX as it is now will be hacky, since it would need to touch internals that are not exposed by default.

Intellij Idea image

Nautilus image

Chrome image

Amberol (music player). image

App Center (Ubuntu Software Store) - This one uses flutter image

Some of them has no title at all. Some fuses the HeaderBar with the body, like nautilus. Even chrome, the tabs on the HeaderBar are not "isolated" from the body.

On modern Gnome, everything is client side decorated. Server side decoration is legacy. It's better for rendering since the window manager does not need to calculate, draw and sync with the window. It's probably less flickery.

Since JavaFx accounts the title as part of the window size, the current glass implementation is very hacky because it needs to request the decoration sizes from the window manager and then recalculate it. Having it on the client side is better, because no hacky solution is required.

tsayao avatar Oct 22 '24 10:10 tsayao

Adding some more examples.

Vivaldi browser actually allows you to switch between two modes: image

which can be switched with image

to image

So in the first mode, the menu is compressed vertically into the Vivaldi button.

Here is Discord: image

Very compact.

As for the payout of this feature, while personally I don't have a need for it, I will probably use it if it's not too much trouble. Regardless of my own opinion, this has been one of the most requested features, along with tray icon support, and it's available in the main "competition" frameworks. I would say that a very strong case will need to be made for this to not be added. The question that remains, as it often does, is if this is the right implementation. Hopefully the review process will figure that out.

nlisker avatar Oct 22 '24 10:10 nlisker

Continuing on window attributes. I would like to know what is and is not supported by platform, by feature.

For example:

Windows

  • translucency
  • color gradient
  • system menu on right click, on the toolbar and on the app components
  • color accent on hover over window buttons
  • window borders
  • round corners
  • double click to maximize
  • drag to reposition the window
  • dark/light theme
  • accessibility: keyboard focus, accessible focus, narrator

Did I miss anything?

andy-goryachev-oracle avatar Oct 22 '24 17:10 andy-goryachev-oracle

For the HeaderBar, I would like to see the explanation of different layout options, including the cases when all the information does not fit the window width. Which parts are contracted? How is overflow handled?

andy-goryachev-oracle avatar Oct 22 '24 17:10 andy-goryachev-oracle

May be I am late to the party, but I would suggest to discuss the JEP first. I would like to see the summary by platform by feature, I would like to see details of the layout, and the description if and how the proposed design responds to user preferences changes dynamically.

I would also like to see alternatives. Perhaps the app developers has all the tools already (for example, creating an overlay transparent scene on top of the platform title bar?), or maybe this functionality should be rather implemented in a library.

Lastly, there is a concern of adding a huge maintenance burden on the platform. Next time the major OS vendor changes the L&F or adds something to the window decorations, we are on the hook for supporting that.

I am not even qualified to access the impact of this feature in the Linux world. There are so many frameworks and opinions - how do you propose to handle that? Is it going to be supported on Wayland?

andy-goryachev-oracle avatar Oct 22 '24 17:10 andy-goryachev-oracle

Gtk does work on Mac and Windows, maybe we can see how it handles it's HeaderBar, for reference.

tsayao avatar Oct 22 '24 18:10 tsayao

Another aspect is whether this should be a conditional feature. If not, how will it be supported on Android/iOS? RaspPI?

andy-goryachev-oracle avatar Oct 22 '24 19:10 andy-goryachev-oracle

Continuing on window attributes. I would like to know what is and is not supported by platform, by feature.

For example:

Windows

  • translucency
  • color gradient
  • system menu on right click, on the toolbar and on the app components
  • color accent on hover over window buttons
  • window borders
  • round corners
  • double click to maximize
  • drag to reposition the window
  • dark/light theme
  • accessibility: keyboard focus, accessible focus, narrator

Did I miss anything?

I'll eagerly invite you to dissect this PR for its merits, its pros and cons. However, your questions lead me to conclude that you haven't really looked at what I'm proposing. Half of your questions are answered just by looking at the documentation for StageStyle.EXTENDED and HeaderBar. These are the two primary APIs that I've mentioned over and over again in this PR.

Let me try to explain StageStyle.EXTENDED in different terms:

  1. EXTENDED is like UNDECORATED in the following ways: The application controls the entirety of the window. There is no non-client area (i.e. no title bar), and you can place scene graph nodes everywhere. Since there is no non-client title bar, applications will have to provide their own HeaderBar and their own system menu (if they so desire).

  2. EXTENDED is like DECORATED in the following ways: The window has a resize border, shadows, and window animations. It has the platform window buttons (minimize, maximize, close) superimposed over the application window. Just as with a decorated window, applications have no control over whether corners are rounded, how borders look like, and so on.

Since there is no non-client title bar, all questions regarding the appearance or accessibility of the HeaderBar (color gradient, dark/light theme, etc.) are left to the purview of application developers. HeaderBar is a control just like any other JavaFX control, and application developers will decide how it looks like. Notably, there is no translucency, because JavaFX does not support window-level translucency. This has nothing to do with this feature proposal, and should be discussed on its own merits.

mstr2 avatar Oct 22 '24 20:10 mstr2

Another aspect is whether this should be a conditional feature. If not, how will it be supported on Android/iOS? RaspPI?

I answered this question in the opening post of this PR. StageStyle.EXTENDED is a conditional feature that downgrades to StageStyle.DECORATED on platforms that don't support it.

mstr2 avatar Oct 22 '24 20:10 mstr2

@mstr2 thank you for clarifications.

You are proposing a substantial change, I think it needs a JEP to communicate the new feature in a more human-oriented fashion. I think everyone will benefit from that, not only the reviewers.

andy-goryachev-oracle avatar Oct 22 '24 20:10 andy-goryachev-oracle

@mstr2 thank you for clarifications.

You are proposing a substantial change, I think it needs a JEP to communicate the new feature in a more human-oriented fashion. I think everyone will benefit from that, not only the reviewers.

I'll prepare a document for that.

mstr2 avatar Oct 22 '24 20:10 mstr2

A few points observed on Linux:

  1. It's possible to resize it to 1px using the provided functionality with gtk_window_begin_resize_drag. An then it's not possible to resize back. The Headerbar should block resizing to the size of window controls.

  2. The application is closing if the click happens on the top right corner (that's because it's triggering the close button instead of resizing (I think 2 should solve it as well). It closes with: (java:16179): Gtk-CRITICAL **: 07:34:26.721: gtk_window_begin_resize_drag: assertion 'gtk_widget_get_visible (widget)' failed

These bugs are now fixed.

mstr2 avatar Oct 26 '24 21:10 mstr2

I've found bug on resize cursors. Tried to investigate it but didn't find an reasonable explanation:

If you go do a resize border triggering the cursor change and then move the cursor through the window without clicking to resize, the cursor will remain in the resize state. Even weirder, if the window is placed above a text editor, for example, the cursor will inherit from the window behind.

tsayao avatar Oct 27 '24 23:10 tsayao