Questions tagged [synth]

Synth is the name of a Look-and-Feel in Java Swing. For questions about sound and music, it is recommended that you use the 'synthesizer' tag instead.

Synth is a special look-and-feel provided by Swing which is completely unstyled by default, but can be customized using an XML configuration or by extending the code. It is essentially a 'skin' for Java applications.

See also:

86 questions
0
votes
1 answer

Swing Synth Skin: Region for Text highlighted with the Mouse?

If you select text in a Textfield/TextArea/something else, you'll likely find that the color of the text is inverted, and the background colour of the field is changed to sometihng dark/different to what it was. Is there a region to describe…
8bitjunkie
  • 11,360
  • 9
  • 49
  • 65
0
votes
0 answers

Hermite Interpolation and 16bit Integer Streaming

I'm working on a better Hermite Interpolation code with 16bit Integer Streaming using SSE/SSE2 (or even SSE3/4/AVX...) So far I got it running great, but I wonder if I could optimize it even further. And I also wonder if I could load faster the…
0
votes
0 answers

How create synth with FFMPG?

First, sorry for my poor english, I am french :-) I am looking for the creation of a synth (synthé in french) with FFMPEG. For more explanation, a synth is a rectangle on a movie, where you can write text. In France, we had a very good science…
Seb
  • 38
  • 1
  • 6
0
votes
1 answer

Is it possible to reflect over a JDK 10 private method (SynthLookAndFeel - the method "paintGrid" in SynthTableUI class)?

I'm currently modifying my GUI with SynthLookAndFeel, and I need to repaint the table Grid when I paint my table, but this method is private in JDK and cannot be invoked when the "paintGrid" method is retrieved through reflection (it's too…
scott.li
  • 3
  • 2
0
votes
1 answer

Synth look and feel user XML how to change JTable and JTree?

I want to change JTable and JTree style through Synth LookAndFeel xml configuration. But I only found that a small part can be implemented through the xml file configuration(eg. high-line, cell-color...). For example, the cell border, the dividing…
scott.li
  • 3
  • 2
0
votes
2 answers

Java MIDI Synthesizer .jar not playing

I wrote a simple synth instrument gui that works well on my machine. However, as soon as I put it in a jar file, it no longer plays sounds when executing that jar file. I assume that has to do with the soundbank. Either way, I cannot get it to…
Matt
  • 111
  • 1
  • 1
  • 4
0
votes
1 answer

Binding a custom renderer to a ComboBox using Synth

I'm customizing my LAF using Synth and now I'm working on the ComboBox which really confuses me. I looked into ComponentProperties Table and found ComboBox.listRenderer property which specifies a renderer for the JComboBox's list. Problem is I don't…
H.Wei
  • 21
  • 3
0
votes
0 answers

Customizing JTextField in Synth

I need to change the text color in a JTextField when it gets focus, but it looks like just the state SELECTED works.