Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
1k views

JSlider for doubles

I am making a GUI (using swing) for a poker framework and need some sort of slider to allow players to select a bet size. However the Swing JSlider only works with int values whereas i need something ...
4
votes
2answers
202 views

Set the size of a JSlider thumb

How can the size of the thumb be configured for a JSlider? With the defaults, and a range for the JSlider of 256, the thumb is only a few pixels wide, which makes it quite difficult to control with a ...
4
votes
2answers
403 views

Painting the slider icon of JSlider

Would like to repaint the the marker or the thumb of the JSlider instead of the standard gray. How can I achieve this?
3
votes
3answers
205 views

Java JSlider precision problems

I have a list of N JSliders (N does not change procedurally, only as I add more features. Currently N equals 4). The sum of all the sliders values must equal to 100. As one slider moves the rest of ...
3
votes
2answers
113 views

Tooltip in labels in JSlider

I want to create a JSlider with labels, which have a tooltip. JSlider slider = new JSlider(); JLabel label = new JLabel("First"); slider.setPaintLabels(true); Hashtable<Integer, JLabel> labels ...
3
votes
2answers
190 views

jSlider go to clicked position - problem only on Macintosh

I have been using the above MetalSliderUI solution for all my JSliders. Windows users have been happy with it. I appreciate finding this solution on stackoverflow.com The solution was discussed here: ...
3
votes
1answer
263 views

How to get thumb icon of swing jslider?

I need to get the thumb icon which is used to select range in Jslider. How to get only the thumb icon from Jslider?
3
votes
1answer
2k views

Java: link JSlider and JTextfield for float value

what is the best and easiest way to link a JSlider and a JTextField so that if one changes, the other gets updated too, but there is no recursive loop? thanks!
3
votes
3answers
3k views

Java Swing Range Slider U.I

I needed a slider with two knobs on it (representing a range) and I found this nifty one here. However, they created their own U.I. which extends Java's BasicSliderUI. They override the paint method ...
3
votes
3answers
2k views

JSlider question: Position after leftclick

Whenever I click a JSlider it gets positioned one majorTick in the direction of the click instead of jumping to the spot I actually click. (If slider is at point 47 and I click 5 it'll jump to 37 ...
2
votes
1answer
40 views

JSlider in JTable

For putting a JSlider into a JTable I wrote am AbstractCellEditor which implements a TableCellRendererand a TableCellEditor. It gets initialized with values from 0 to 100. I have the strange ...
2
votes
1answer
88 views

Extending Java Swing Widgets (Wish to add animation and extra markers to JSlider)

I am interested in creating a new widget similar to the JSlider widget, but with a "ghost" (translucent) knob displaying the previous slider position, as well as adding a trails-like animation to the ...
2
votes
1answer
71 views

How to zoom in and out the image in the line using JSlider in java?

I have a diagonal line starting from the bottom left part going to the upper right corner of the screen. I have also a human image drawn to a canvas having a 2 meters interval in the that diagonal ...
2
votes
3answers
78 views

Is it Possible to Click two JSliders At once

I am trying to select a coordinate from a grid using JSliders. Can I make it so when it clicks one it clicks the other as well, one is vertical while the other is horizontal? So I can drag them both ...
2
votes
1answer
90 views

Circle JSlider - Java program

Can someone show me code that will set up a JSlider except, instead of a thumb, it is a circle? Specifically, instead of that little triangle which points to the current position, it is a blue circle ...
2
votes
3answers
110 views

problem with setLabelTable method to customize JSlider's lables

According to this tutorial, one should do the following to customize JSlider's lables: JSlider framesPerSecond = new JSlider(JSlider.VERTICAL, FPS_MIN, FPS_MAX, ...
2
votes
2answers
163 views

Get access to Thumb/Handle/Knob of Swing's JSlider

Basically I want to display the current value pointed to by the slider handle when in motion (either via mouse or keyboard). I can easily get the current value by adding a new ChangeListener & ...
2
votes
3answers
134 views

Custom range to use with JSlider

I'm trying to create a jslider that moves withing the following ranges. [-x,-1)[1,x] In short I don't want the values -1 and 0 to be valid values for the JSlider. But the values from x to -1 should ...
2
votes
3answers
189 views

Movable bars with value using java

I want to create a bar with a value. If i move the circle, then the value in the field should change. How can i do this? Here is the screen shot. How can i achieve this? Something similar to this is ...
2
votes
1answer
425 views

Remove value displaying over thumb in JSlider

I have a little problem with my JSlider, that I haven't been able to solve. To explain the situation a little, I have to do a JSlider going from 0 to 20, through 0.1 steps. I tricked my way out of ...
2
votes
1answer
165 views

Is there a way to flip a JSlider so that the slider arrow points upwards?

I've been trying to find a way to do this for a while now and can't quite seem to figure it out. I know you can change the orientation of a JSlider, using setOrientation(HORIZONTAL|VERTICAL), and that ...
2
votes
1answer
375 views

Using paintThumb I've made my arrow fall off the JSlider when at 0 or 100, how can this be fixed?

The picture explains it all. I've painted a new Thumb and it goes off the JSlider area when at higher than 95 or below 5. I've tried padding the Track with no success. Does anyone have any tips? ...
2
votes
2answers
251 views

Changing the width of a knob on a JSlider

Ok, so I have searched google for a while now to see if I can find the answer to this but no dice. Maybe I am just searching for the wrong thing but this is what I want to know: How do you change the ...
2
votes
3answers
684 views

How to un-link a JSlider's progress indicator from its thumb?

I'm using a JSlider to show progress in my application, so that it updates as a certain process computes. I want a user to be able to drag the thumb backwards to a tick mark in the past, but when ...
2
votes
4answers
1k views

Overlay multiple JSliders in Swing

Is it possible to overlay multiple JSliders so I can see the "thumbs" on both (I've tried disabling the painting of the track and setting opacity to false but one still hides the other)? Basically I'd ...
2
votes
3answers
2k views

Changing a JLabel's Value from a JSlider's Value

I have a single JPanel that contains a JSlider and a JLabel. I want to configure it so that when the JSlider's value is being changed by the user, that new value is reflected by the JLabel. I ...
2
votes
2answers
1k views

Change displayable labels for a JSlider?

I have a JSlider with a min of 0 and a max of 10,000. I have the major tick marks set at 1,000. If I were to paint the labels now they would show up as 0, 1000, 2000, 3000, 4000, etc. What I would ...
1
vote
3answers
36 views

Using JSlider to create a date chooser?

I want to implement a date chooser using a JSlider. The user should be able to use the slider to freely choose between two previously known dates. I've seen examples like this one: But I want to do ...
1
vote
1answer
75 views

Range Slider or Multi Thumb Slider for SWING

I need a Multi Thumb Slider for Java. I would need a MultiThumb that can represent a range (so with 2 thumbs) but until now, I can't find any starting point. It must be: consistent with the Nimbus ...
1
vote
2answers
116 views

Linked JSliders With Maximum Combined Value

What's the best way to 'link' JSliders to put a cap on the combined value? Imagine a fighting game where the user can specify character traits like speed, agility, endurance and accuracy. The user ...
1
vote
1answer
92 views

JSlider - clicking makes the dot go towards that direction

I have a JSlider with minimum value of 0 and max value of 100. When the JSlider first launches, the value is 0. Now, when I click my mouse on the 50, or even the 20 or 100, the JSlider doesn't move ...
1
vote
0answers
158 views

Custom JSlider - Java program

I'm trying to make a custom JSlider and I don't want the thumb (the little triangle thing on the slider that shows the position) to show up. So, I have a CustomSlider class which is basically just a ...
1
vote
2answers
113 views

Dynamically added elements don't load in my jQuery slider

My page currently uses Slides I want to be able to add new "slides" to my slider dynamically. The way I do this is through an XML document, which contains a link to the "slide image" and the href. ...
1
vote
3answers
296 views

Java JSlider set values

How can I set the values of a JSlider? I want to assign it specific values, with intervals that are not constant. Please help
1
vote
1answer
190 views

java/swing: JSlider.setValue is blocking

my call to JSlider.setValue is sometimes blocking the thread which results ins a deadlock of the whole application. here is the stacktrace of the blocking thread. Thread [RenderThread] (Suspended) ...
1
vote
1answer
87 views

A JSlider with both minor and major labels?

Is it possible for both minor and major ticking labels to be displayed on the same JSlider?
1
vote
2answers
211 views

Circular JSlider?

A JSlider by default takes a straight line shape. Can we make JSlider a circle resembling like speed-o-meter or circle with reading? If anyone has done something similar to this task... Please share ...
1
vote
1answer
92 views

JSlider last value

When implementing JSlider's ChangeListener, the event is fired whenever the value changes. I need to get the last value of a JSLider: I don't need every value visited by the slider, just the last ...
1
vote
2answers
215 views

JSlider#setLabelTable, labels make the track narrower

I'm having a annoying issue when calling JSlider#setLabelTable with descriptive labels. The problem is that the track (that usually goes from side to side using all of the sliders width) gets narrowed ...
1
vote
3answers
486 views

how to move the jslider on pressing mouse on jbutton?

I have two jbuttons (left and right on jslider) and one jslider. On pressing mouse on left Jbutton, jslider needs to be move towards left. On pressing mouse on right Jbutton, jslider needs to be ...
1
vote
1answer
178 views

how to have jslider's track below the knob's image and how to fill colours in track on Slider's knob movement?

HI All, i need to put jSlider's track below the knob's image and fill different colours in track on Slider's knob movement. Please explain with some code snippets. Thanks Jyoti
1
vote
2answers
445 views

How to hide the knob of jSlider?

I need to customize the knob of JSlider. I need to put my own knob's image over default knob of Jslider. The problem is that currently two knobs are coming in response. One my own knob and second the ...
1
vote
3answers
317 views

how to put image on jslilder's knob of swing in java?

I need to customize the look and feel of jslider in swing in java. I have an image of knob of jslider. I need to put this image of knob over jslider's knob which we used to select a value from the ...
1
vote
2answers
735 views

getting JSlider bar to move on mouse click event

I have a JSlider which shows bet sizes (for a poker game) I am trying to achieve the effect that when a mouse click occurs the slider jumps forward by a bet amount (i.e. a big blind amount) rather ...
1
vote
1answer
473 views

Custom Jslider Initialization Problem

I am working on a custom JSlider that has a custom Track Rectangle. I want the ability to set the color of the track rectangle when first declaring the slider. Here's a snippet of what I have (The ...
1
vote
2answers
139 views

JSlider key bindings

So I'm a bit nonplussed at the JSlider default key bindings for vertical sliders. Home: goes to the bottom (why not the top?) End: goes to the top (why not the bottom?) PageUp/PageDown: direction ...
1
vote
3answers
850 views

Updating position of JSlider Swing

My apologies for posting tons of questions as of late. I'm trying to get a JSlider to update its position based on a constantly updating variable. The setValue(n) method doesn't seem to work. Is ...
1
vote
1answer
552 views

Mimicking Zoom bar from Office 2007 in Java (Modified JSlider)

I'm attempting to mimic (or find a preexisting component) that mimics the zoom slider from Word 2007: There are two main differences between this component and a standard Java JSlider: Does not ...
0
votes
2answers
22 views

php jquery toggle slide open/close link issue

I have the following code that I am using to show/hide elements in a list. The problem I have is that it loads fine, and opens/collapses fine. But after you have opened/closed once, it stays on the ...
0
votes
1answer
24 views

How to make visible only the extremities for JSliders

Let's say I have a horizoltal JSlider from 0 to 100. What i want to do is: - set major spacing to 10 and minor to 5 but the digits shouldn't be visible - the values of extremities (0 and 100) should ...

1 2