protected void installListeners() { .... .... .... this.scrollListener = new MouseWheelListener() { @Override public void mouseWheelMoved(MouseWheelEvent e) { if ((JoxyComboBoxUI.this.comboBox.isEnabled())) { if (e.getScrollType() == 0) { int currentIndex = JoxyComboBoxUI. this.comboBox.getSelectedIndex(); if (e.getWheelRotation() == 1) { if (currentIndex < JoxyComboBoxUI. this.comboBox.getItemCount() - 1) { JoxyComboBoxUI.this.comboBox.setSelectedIndex( currentIndex + 1); } } if (e.getWheelRotation()...
missing . . . protected void paintSafely(Graphics g) { ...... if (dropCaret != null) { //<<-- dropCaret.paint(g); } } alternative . . . protected void paintSafely(Graphics g) { if (!this.changeListenerAdded) { this.changeListenerAdded = true; this.textField.getDocument() .addDocumentListener(this.changeListener); } Graphics2D g2 = (Graphics2D) g; g2.setRenderingHint( RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); g2.setRenderingHint( RenderingHints.KEY_ALPHA_INTERPOLATION, RenderingHints.VALUE_ALPHA_INTERPOLATION_QUALITY);...
Scrolling in disabled JComboBoxes is possible
Okay, that is fixed in [8b3195].
Small fix to [c2a7b8]: make it also work for Di...
Hmm, this doesn't work for Dialogs since they are not Frames. Let's see how to fix...
I have put this code in the paint method of JRootPane. See commit [c2a7b8]. That...
Notify X11 / Oxygen that we are drawing a radia...
Setting this X Atom works indeed: Oxygen nicely draws its radial background again....
Joxy-themed windows do not get a radial background anymore in the window decoration
Joxy-themed windows do not get a radial background anymore in the window decoration
Hi Jose, Thanks for cooperating so much, it really helps (also for other users of...
Hello! here's the output: /script.sh script.sh: Comiling Java source... -- INSTALLED...
Hello! here's the output: /script.sh script.sh: Comiling Java source... -- INSTALLED...
Hi Jose, Thanks for your answer. Could you please save the following script in a...
Hi Jose, Thanks for you answer. Could you please save the following script in a directory...
Hi Jose, Thanks for you answer. Could you please save the following script in a directory...
No compilation I downloaded the zip file "joxy-latest", and well, it seems that everything...
Fixed some PHP strict standards warnings.
libjoxy.so is not working...
Hi Jose, First of all, I'm very sorry to hear that native text rendering does not...
Add an anchor to link to.
libjoxy.so is not working...
Hi George, With respect to your compilation issue of the Test GUI: I have just added...
Performance is bad
status: open --> closed Milestone: future --> 0.3.0
Caching has been implemented for almost all painters now; closing.
Component: laf --> native-text
Component: laf --> native-text
Refactor joxy.utils.Utils
Priority: ? --> refactor
Refactor joxy.utils.Utils
Hello George, I've looked into this, but it seems that Jitsi deliberately ignores...
Hello, I have been trying to make joxy work with Jitsi (previously SIP communicator),...