-
Notifications
You must be signed in to change notification settings - Fork 90
#2278: Split main-view.fxml into separate layout components #2297
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
hohwille
merged 14 commits into
devonfw:main
from
krystynaShatkovska:feature/issue-2278
Aug 21, 2026
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
92b6d78
#2278: Split main-view.fxml into separate layout components
krystynaShatkovska 001e320
#2278: Add CHANGELOG entry
krystynaShatkovska ac31d84
Merge branch 'main' into feature/issue-2278
krystynaShatkovska c87cc20
#2278: Fix FXML split — keep IDE rows inline to preserve onAction han…
krystynaShatkovska c4788d6
#2278: Remove stale ide-rows.fxml no longer referenced by main-view.fxml
krystynaShatkovska 5178f15
Fix FXML splitting: use setControllerFactory with initialize() guard
krystynaShatkovska 8d213c3
Merge branch 'main' into feature/issue-2278
krystynaShatkovska f0fe64f
Merge remote-tracking branch 'upstream/main' into feature/issue-2278
maybeec 4020c41
#2278: move changelog entry to current milestone section
maybeec e18c2e2
constructive review: set initialized flag only when initialization is…
hohwille 77d97d9
Merge branch 'main' into feature/issue-2278
hohwille 99a0f13
constructive review: removed from CHANGELOG
hohwille 4feeffd
Merge branch 'main' into feature/issue-2278
krystynaShatkovska 10bb71a
Merge branch 'main' into feature/issue-2278
hohwille File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
87 changes: 87 additions & 0 deletions
87
gui/src/main/resources/com/devonfw/ide/gui/navigation.fxml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,87 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
|
|
||
| <?import javafx.geometry.*?> | ||
| <?import javafx.scene.control.*?> | ||
| <?import javafx.scene.image.*?> | ||
| <?import javafx.scene.layout.*?> | ||
| <VBox fx:id="navigationPanel" | ||
| fx:controller="com.devonfw.ide.gui.MainController" | ||
| prefHeight="428.0" | ||
| prefWidth="181.0" | ||
| spacing="4.0" | ||
| stylesheets="@style/navigation.css" | ||
| xmlns="http://javafx.com/javafx/25.0.0" | ||
| xmlns:fx="http://javafx.com/fxml/1"> | ||
| <padding> | ||
| <Insets bottom="10.0" left="10.0" right="10.0" top="10.0"/> | ||
| </padding> | ||
|
|
||
| <HBox alignment="CENTER_LEFT" prefWidth="200.0"> | ||
| <VBox.margin> | ||
| <Insets bottom="10.0"/> | ||
| </VBox.margin> | ||
| <ImageView fitHeight="150.0" | ||
| fitWidth="200.0" | ||
| pickOnBounds="true" | ||
| preserveRatio="true"> | ||
| <Image url="@assets/logo.png"/> | ||
| </ImageView> | ||
| </HBox> | ||
|
|
||
| <VBox maxHeight="-Infinity" | ||
| prefWidth="100.0" | ||
| styleClass="sideNavigationElement"> | ||
| <padding> | ||
| <Insets left="8.0" right="8.0"/> | ||
| </padding> | ||
| <Label fx:id="labelProject" | ||
| maxWidth="1.7976931348623157E308" | ||
| text="%project"/> | ||
| <ComboBox fx:id="selectedProject" | ||
| maxWidth="1.7976931348623157E308" | ||
| minWidth="-Infinity" | ||
| prefHeight="40.0" | ||
| prefWidth="150.0" | ||
| promptText="%chooseProject" | ||
| styleClass="chooseProject"/> | ||
| </VBox> | ||
|
|
||
| <VBox maxHeight="-Infinity" | ||
| prefWidth="100.0" | ||
| styleClass="sideNavigationElement"> | ||
| <padding> | ||
| <Insets left="8.0" right="8.0"/> | ||
| </padding> | ||
| <Label fx:id="labelWorkspace" | ||
| maxWidth="1.7976931348623157E308" | ||
| text="%workspace"/> | ||
| <ComboBox fx:id="selectedWorkspace" | ||
| disable="true" | ||
| maxWidth="1.7976931348623157E308" | ||
| minWidth="-Infinity" | ||
| prefHeight="40.0" | ||
| prefWidth="150.0" | ||
| promptText="%chooseWorkspace" | ||
| styleClass="chooseProject" | ||
| VBox.vgrow="ALWAYS"/> | ||
| </VBox> | ||
|
|
||
| <!-- Language selector --> | ||
| <VBox maxHeight="-Infinity" | ||
| prefWidth="100.0" | ||
| styleClass="sideNavigationElement"> | ||
| <padding> | ||
| <Insets left="8.0" right="8.0"/> | ||
| </padding> | ||
| <Label fx:id="labelLanguage" | ||
| maxWidth="1.7976931348623157E308" | ||
| text="%language"/> | ||
| <ComboBox fx:id="selectedLanguage" | ||
| maxWidth="1.7976931348623157E308" | ||
| minWidth="-Infinity" | ||
| prefHeight="40.0" | ||
| prefWidth="150.0" | ||
| promptText="%chooseLanguage" | ||
| styleClass="chooseProject"/> | ||
| </VBox> | ||
| </VBox> |
23 changes: 23 additions & 0 deletions
23
gui/src/main/resources/com/devonfw/ide/gui/status-bar.fxml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
|
|
||
| <?import javafx.geometry.*?> | ||
| <?import javafx.scene.control.*?> | ||
| <?import javafx.scene.layout.*?> | ||
| <HBox fx:id="bottomPanelContainer" | ||
| fx:controller="com.devonfw.ide.gui.MainController" | ||
| alignment="CENTER_RIGHT" | ||
| prefHeight="40.0" | ||
| prefWidth="200.0" | ||
| spacing="10.0" | ||
| xmlns="http://javafx.com/javafx/25.0.0" | ||
| xmlns:fx="http://javafx.com/fxml/1"> | ||
| <padding> | ||
| <Insets right="8.0"/> | ||
| </padding> | ||
|
|
||
| <Label fx:id="statusLabel" text="IDEasy is ready."/> | ||
| <ProgressBar fx:id="statusProgressBar" | ||
| prefWidth="0.0" | ||
| progress="0.0" | ||
| visible="false"/> | ||
| </HBox> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.