javafx change background image via setStyle for selected/hovered ToggleButton - java

I have a ToggleGroup of ToggleButtons that should have the same style when unselected but each a different style when selected or hovered. I already found how this works with colors:
.my-toggle-button{
-fx-background-color: grey;
}
.my-toggle-button:hover{
-fx-background-color: -fx-mycolor;
}
.my-toggle-button:selected{
-fx-background-color: -fx-mycolor;
}
In my program, I can now set -fx-mycolor dynamically:
button.setStyle("-fx-mycolor: "+color);
where button is one of many ToggleButtons and color is a dynamically generated String.
This works just as expected: Each button has its own color when hovered over and keeps it when selected. If a different button gets selected, the previously selected button in the ToggleGroup snaps back to grey.
Now what I want is to do this with background images. I tried using
.toggle-button-fret-nonzero:selected{
-fx-background-image: url(-fx-myimage);
}
and then set it in Java via setStyle("-fx-myimage: "+image) but this doesn't work (CSS tries to load an image named -fx-myimage).
How can I achieve the behaviour demonstrated with colors for images?
I already tried to use setStyle("-fx-background-image: url("+image+");") directly on certain mouse-events like hovering or clicking but that's not what I want because then the button does not snap back to grey when another button is selected.
I would also like to avoid to define CSS-classes for every possible button since they are many.
EDIT: I solved the issue by using setStyle("-fx-background-image: url("+image+");") method and manually iterating over every button on every click, resetting the background-image accordingly. This works fine now, it's just that it feels like a hack since it's basically reimplementing the functionality of a ToggleButton...

Related

How to fit the clickable area on a button

I need to make a GUI in javafx where the buttons shape is custom made with a stylesheet
I use -fx-shape: "SVG Path"; to make the shape of my button
And sceneBuilder to make the GUI and if you need to know i use netbeans as my ide
Now when I make the custom form i want to only be able to click on that and not around it where the button is invisible
I have tried to use padding but i dont think that is the way
So if you look at this picture which is in scenebuilder
https://imgur.com/a/11dRR2G
you can see the white form which is what i want to be clickable
not the whole rectangle that you can see is lighted up
Ok this is not the direct answer to your question but a workaround on your Problem.
In you case i would just take the image which looks like that button and add a setOnMouseClickedEventListener
like this-
ImageView img = new ImageView("https://imgur.com/a/11dRR2G");
img.setPickOnBounds(false); // disables click on transparent areas
img.setOnMouseClicked((MouseEvent e) -> {
//do something
});

How can I prevent a CodenameOne GUI Element from scrolling (tickering?) when it changes to Bold?

I am building my first CodenameOne app using the GUI Builder. I've defined a style for my buttons where the "unselected" state is regular text and the "selected" or focus state has Bold text.
The problem I'm seeing is that once a button gains focus, the bold text is slightly wider than the original text and it starts scrolling (I think the effect is referred to as "tickering"):
Unselected Button Image
Selected Button Image
I see this in the simulator and on my Samsung SG6 testing. Is this a bug or is there something I can do to pre-size it for the bold text first so it doesn't start scrolling when it gets focus? I don't want to make the button larger than it needs to be (ie: fit it to a container)
You need to do 2 things,
first reduce the left and right padding of the selected button UIID and then call this in your code
mybutton.setEndsWith3Points(false);
mybutton.setTickerEnabled(false);
As an extra, place the button in a container with the right layout.
Note that since the text is now Bold, it's normal for the button to gain extra width. So I will suggest you make a room for that.
Edit:
I noticed that the button was tickering when you took the snapshot so ignore the first point about padding.

Remove Blue Box JavaFX

Whenever I open my JavaFX program, I there is a blue box around the first item in a TableView. Once the user clicks away, it's gone. Is there a way to remove it in a custom css file?
I've tried setting -fx-focus-color in .root and .table-row-cell (and much more that I can't remember) but nothing has worked.
I couldn't change the color to transparent but I was able to hide it by using
.table-row-cell:focused{
-fx-background-insets: 0;
}

Javafx button stays "enabled"

I've started to learn Javafx and I happened upon this "strange" feature. I've made a simple window with two buttons. When I press one of them a blue stroke appears and stays there until I press the other button. I can't find any logical use of this other than knowing which button was pressed last. Even from a UX perspective, it doesn't make sense. I've tried somehow to "deactivate" it throught CSS but no luck. Is there any solution for this?
It's hard to tell what you are searching for without the code.
But I think you are referring to the visual marker for the currently focused menu item. This function is used in situations where the user hit's the "Tab"-Key to navigate through your menu items.
You can disable this feature for items by unchecking the "Focus Traversable" option in the "Properties" Tab. This will also disable the tab navigation!
There is already a thread that has a solution for exactly this topic. See:Remove Focus Box Around TextField
It talks about disabling the focus color using css, while keeping the tab navigation feature by using this css styling rule:
-fx-focus-color: transparent;
(Source: Uluk Biy's answer in the linked topic)
The blue outline around controls in JavaFX is there to indicate which control has focus.
Focus indicators are a common idiom used across different UI frameworks, not specific to just JavaFX. In a traditional mouse/keyboard based input setup, there needs to be some indication of where a keystroke will be sent when a key is pressed. Imagine there are multiple fields on a form, a few text fields and a couple of buttons. If the user types some characters - how does the system know into which text field to insert the characters? Similarly if the user presses return to activate a button, which button will get activated? The answer is that the button or field which currently has focus will receive the input. The focus can be changed usually by pressing the tab key to tab to a new field or pressing on a different field with the mouse. However, even though the system knows that which field has focus, it is important to provide feedback to the user to let the user know which field has focus. That way when the user types, they have some idea of where there input will be directed.
What you see with a blue outline around a button in JavaFX is a visual indicator to note that the button has focus and, if you press space, that button's action will be triggered and not some other button. When you click the mouse on another button it will both trigger the other button's action and transfer focus to that button, so if you subsequently press space, the last clicked button will be actioned again.
The focus color for a controls in JavaFX that are using the default modena.css stylesheet which comes with JavaFX 8, can be controlled by a couple of css properties which you can override in the user stylesheet for your application (by defining the properties in the .root {} css style class:
/* A bright blue for the focus indicator of objects. Typically used as the
* first color in -fx-background-color for the "focused" pseudo-class. Also
* typically used with insets of -1.4 to provide a glowing effect.
*/
-fx-focus-color: #039ED3;
-fx-faint-focus-color: #039ED322;
So, for instance, you could remove all focus colors from your application using:
.root {
-fx-focus-color: transparent;
-fx-faint-focus-color: transparent;
}
However, removing focus color indicators would probably make your application much less intuitive and more difficult to understand.
Let's look at a simple form in JavaFX:
The blue ring around the text input field for User Name indicates that text input will go into that field.
Is there a proper way to disable the focus ring only from my project's buttons?
If you want to disable focus feedback only for buttons and for all buttons in a project and also not effect other controls, then you can define a stylesheet rule for that:
.button {
-fx-focus-color: transparent;
-fx-faint-focus-color: transparent;
}
Note: I still don't recommend doing this even if other frameworks you use do not provide focus rings for buttons.
This will override the default focus coloring for buttons defined in the default JavaFX 8 modena.css stylesheet. You do not need to (nor should you) modify the modena.css stylesheet to override values in it. You can just redefine the values using a more specific CSS selector rule within your application's stylesheet. If you need to understand how CSS selectors work, there are numerous resources on the web you can search for and read. Oracle provide a getting started tutorial on how you can set a custom CSS style for a scene. The relevant code line is to add your user stylesheet to your scene:
scene.getStylesheets().add(
MyApplication.class.getResource(
"my-stylesheet.css"
).toExternalForm()
);

Want to change color of a grid on second click

I have created a custom calendar, in which i'm setting the color for a single grid when it is clicked. My requirement is to change the color to some other color on second click. I tried achieving this by placing a onclick listener inside another onclick listener. It worked but its very buggy. sometimes the 2nd color stays in the previous grid or sometimes it doesnt work and sometimes it 'll turn to second color when i click on a previously clicked grid.
My requirement is to change the color of a grid to color1 on 1st click and color2 on second click on same grid cell.
try using counter for onClick. and according to counter change the color of grid..
set initially 0, if clicked once set it to 1 change the color and if clicked again increase counter and change color again. don't use onclick inside onclick.
use index counter and in onClick listener update the counter and change the color.
you can go for
GestureDetector
you can find more of it here - Detecting Common Gestures
with this you can detect common gestures like touch, down, fling, single tap, double tap, long press scroll

Categories

Resources