Access JavaFX current controller from scene event filter The Next CEO of Stack OverflowPassing Parameters JavaFX FXMLAccessing FXML controller classJavaFX: How to get stage from controller during initialization?Setting the background of a GridPane (with or without JavaFx Scene Builder)Swapping anchor pane inside an anchor pane with another anchor pane in JavaFX/Scala?Communication between controllers JavaFXJavaFX, FXML and controllers: switching scenes, maintaining scene dataJavaFx handle dragging nodes from FXML controller of node or main?Javafx Scene switching causing stage size increaseEditing a Pane in a JavaFx SceneManaging scene switching in JavaFX via FXML (Performance Question)Javafx how to switch scenes correctly?
What steps are necessary to read a Modern SSD in Medieval Europe?
logical reads on global temp table, but not on session-level temp table
Can this transistor (2N2222) take 6 V on emitter-base? Am I reading the datasheet incorrectly?
Shortening a title without changing its meaning
How does a dynamic QR code work?
Car headlights in a world without electricity
How can I prove that a state of equilibrium is unstable?
Another proof that dividing by 0 does not exist -- is it right?
Could a dragon use its wings to swim?
What did the word "leisure" mean in late 18th Century usage?
How can a day be of 24 hours?
Why doesn't Shulchan Aruch include the laws of destroying fruit trees?
Traveling with my 5 year old daughter (as the father) without the mother from Germany to Mexico
Raspberry pi 3 B with Ubuntu 18.04 server arm64: what pi version
How can I separate the number from the unit in argument?
How seriously should I take size and weight limits of hand luggage?
Is the offspring between a demon and a celestial possible? If so what is it called and is it in a book somewhere?
Prodigo = pro + ago?
Free fall ellipse or parabola?
How badly should I try to prevent a user from XSSing themselves?
That's an odd coin - I wonder why
Is it OK to decorate a log book cover?
MT "will strike" & LXX "will watch carefully" (Gen 3:15)?
Cannot restore registry to default in Windows 10?
Access JavaFX current controller from scene event filter
The Next CEO of Stack OverflowPassing Parameters JavaFX FXMLAccessing FXML controller classJavaFX: How to get stage from controller during initialization?Setting the background of a GridPane (with or without JavaFx Scene Builder)Swapping anchor pane inside an anchor pane with another anchor pane in JavaFX/Scala?Communication between controllers JavaFXJavaFX, FXML and controllers: switching scenes, maintaining scene dataJavaFx handle dragging nodes from FXML controller of node or main?Javafx Scene switching causing stage size increaseEditing a Pane in a JavaFx SceneManaging scene switching in JavaFX via FXML (Performance Question)Javafx how to switch scenes correctly?
I am new in JavaFX and fail in what I need to do:
I change scene this way and at the same time define an event filter:
AnchorPane pane = FXMLLoader.load(getClass().getResource("blabla.fxml"));
Scene scene = new Scene(pane);
scene.addEventFilter(KeyEvent.KEY_PRESSED, new EventHandler<KeyEvent>()
public void handle(KeyEvent event)
System.out.println("Filtering event " + event.getEventType() + ", " + event.getCode());
//Here in the handle method I want to call a method of the current controller
);
Stage appStage = (Stage) ((Node) event.getSource()).getScene().getWindow();
appStage.setScene(scene);
appStage.show();
In the handle method of the event filter I want to execute a particular method of the loaded controller (change images). I cannot put a setOnKeyPressed in this controller since the associated fxml has only images key pressed are not catched. I read that I had to use the addEventFilter on the scene.
It works.
The handle method is correctly triggered but I do not know how to access a method on the controller associated to "blabla.fxml".
Many many thanks for your help.
Dominique
events javafx controller scene
add a comment |
I am new in JavaFX and fail in what I need to do:
I change scene this way and at the same time define an event filter:
AnchorPane pane = FXMLLoader.load(getClass().getResource("blabla.fxml"));
Scene scene = new Scene(pane);
scene.addEventFilter(KeyEvent.KEY_PRESSED, new EventHandler<KeyEvent>()
public void handle(KeyEvent event)
System.out.println("Filtering event " + event.getEventType() + ", " + event.getCode());
//Here in the handle method I want to call a method of the current controller
);
Stage appStage = (Stage) ((Node) event.getSource()).getScene().getWindow();
appStage.setScene(scene);
appStage.show();
In the handle method of the event filter I want to execute a particular method of the loaded controller (change images). I cannot put a setOnKeyPressed in this controller since the associated fxml has only images key pressed are not catched. I read that I had to use the addEventFilter on the scene.
It works.
The handle method is correctly triggered but I do not know how to access a method on the controller associated to "blabla.fxml".
Many many thanks for your help.
Dominique
events javafx controller scene
2
Possible duplicate of Accessing FXML controller class
– Slaw
Mar 21 at 20:48
Might also help: stackoverflow.com/questions/14187963/…
– Slaw
Mar 21 at 20:49
add a comment |
I am new in JavaFX and fail in what I need to do:
I change scene this way and at the same time define an event filter:
AnchorPane pane = FXMLLoader.load(getClass().getResource("blabla.fxml"));
Scene scene = new Scene(pane);
scene.addEventFilter(KeyEvent.KEY_PRESSED, new EventHandler<KeyEvent>()
public void handle(KeyEvent event)
System.out.println("Filtering event " + event.getEventType() + ", " + event.getCode());
//Here in the handle method I want to call a method of the current controller
);
Stage appStage = (Stage) ((Node) event.getSource()).getScene().getWindow();
appStage.setScene(scene);
appStage.show();
In the handle method of the event filter I want to execute a particular method of the loaded controller (change images). I cannot put a setOnKeyPressed in this controller since the associated fxml has only images key pressed are not catched. I read that I had to use the addEventFilter on the scene.
It works.
The handle method is correctly triggered but I do not know how to access a method on the controller associated to "blabla.fxml".
Many many thanks for your help.
Dominique
events javafx controller scene
I am new in JavaFX and fail in what I need to do:
I change scene this way and at the same time define an event filter:
AnchorPane pane = FXMLLoader.load(getClass().getResource("blabla.fxml"));
Scene scene = new Scene(pane);
scene.addEventFilter(KeyEvent.KEY_PRESSED, new EventHandler<KeyEvent>()
public void handle(KeyEvent event)
System.out.println("Filtering event " + event.getEventType() + ", " + event.getCode());
//Here in the handle method I want to call a method of the current controller
);
Stage appStage = (Stage) ((Node) event.getSource()).getScene().getWindow();
appStage.setScene(scene);
appStage.show();
In the handle method of the event filter I want to execute a particular method of the loaded controller (change images). I cannot put a setOnKeyPressed in this controller since the associated fxml has only images key pressed are not catched. I read that I had to use the addEventFilter on the scene.
It works.
The handle method is correctly triggered but I do not know how to access a method on the controller associated to "blabla.fxml".
Many many thanks for your help.
Dominique
events javafx controller scene
events javafx controller scene
asked Mar 21 at 20:00
Dominique SauquetDominique Sauquet
31
31
2
Possible duplicate of Accessing FXML controller class
– Slaw
Mar 21 at 20:48
Might also help: stackoverflow.com/questions/14187963/…
– Slaw
Mar 21 at 20:49
add a comment |
2
Possible duplicate of Accessing FXML controller class
– Slaw
Mar 21 at 20:48
Might also help: stackoverflow.com/questions/14187963/…
– Slaw
Mar 21 at 20:49
2
2
Possible duplicate of Accessing FXML controller class
– Slaw
Mar 21 at 20:48
Possible duplicate of Accessing FXML controller class
– Slaw
Mar 21 at 20:48
Might also help: stackoverflow.com/questions/14187963/…
– Slaw
Mar 21 at 20:49
Might also help: stackoverflow.com/questions/14187963/…
– Slaw
Mar 21 at 20:49
add a comment |
0
active
oldest
votes
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55288405%2faccess-javafx-current-controller-from-scene-event-filter%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55288405%2faccess-javafx-current-controller-from-scene-event-filter%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
Possible duplicate of Accessing FXML controller class
– Slaw
Mar 21 at 20:48
Might also help: stackoverflow.com/questions/14187963/…
– Slaw
Mar 21 at 20:49