Tagged Questions

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.

learn more… | top users | synonyms

6
votes
1answer
576 views

Lightweight open source software synth library on pure C (possibly C++). PCM.?

Are there any portable open source libraries that support sample-based synthesis and encapsulate producing and mixing simple PCMs? I really need something minimalistic and decoupled from operating ...
5
votes
1answer
825 views

How can I change the arrow style in a JComboBox

Let's say I want to use a custom image for the arrow in JComboBox, how can I do this? I understand it's possible using the synth xml files, or maybe even UIManager.put(...), but I don't know how. ...
4
votes
1answer
269 views

Insets for custom Synth look and feel

I'm implementing a custom Look & Feel using Synth for my application - basically providing custom versions of SynthStyle, SynthPainter and SynthStyleFactory. I am not using any XML, i.e. ...
3
votes
4answers
3k views

Sound Synthesis Framework in C/C++/Objective-C?

I've searched the net but didn't found anything interesting. Maybe I'm doing something wrong. I'm looking for sound synthesis API written on C, C++ or even Objective-C, which can synthesize ...
2
votes
1answer
121 views

Swing Font Rendering

I am developing a Java swing Application with a Synth look and feel. The application has a background image that contains some text, and I need some 'active' text (text in a JLabel) above this ...
2
votes
2answers
73 views

Really simple wave synth/table in ios

I want to make a really simple synth. In short, i want to play a wav file, and have it loop at certain points until touch is released. I am looking for some example code, (doesn't need to be free). ...
2
votes
1answer
118 views

How do I go about setting the exact style for tabs in a JTabbedPane?

I have looked around and I cannot figure out how to do it. Should I use the Synth look & feel? How would I go about doing this?
1
vote
1answer
67 views

Cannot change colors of a ScrollBar using Synth - Java Swing

I am unable to change the color of a Java Swing JScrollBar. I have searched and read much on this. I am trying to use an XML file to define the colors using the Synth look and feel for Swing. This ...
1
vote
1answer
60 views

styling Combobox in Java using Synth

Hello i want to set the background for the combobox i have to another color except from white, and during rendering when the user clicks to choose from the items inside how do i achieve that using ...
1
vote
1answer
39 views

Exclude certain Jmenu's from Synth

I am using Synth L&F in a XML File, I set up everything so far, but no I have a nested JMenu, and I don't want the nested ones to take the style of the top JMenu's. JMenu accountMenu = new ...
1
vote
0answers
50 views

Set JLabel icon in Synth xml

I am trying to set the icon for a JLabel in a synth xml file but it does not display. I have tried to set both the defaultIcon and icon properties and none seem to be taking. Should I be using ...
1
vote
0answers
85 views

Setting the background image of a JToggleButton

I am trying to use synth look and feel xml to set the background image of a JToggleButton which seems to work but the text in the button isn't displaying. Is there something that I'm missing? Here's ...
1
vote
1answer
76 views

JPanel states for Synth

In my application I have some custom buttons which have custom text/icon layouts and some extra elements not normally associated with buttons. e.g. Some have 2 text labels instead of one. I've ...
1
vote
1answer
236 views

How can I implement a custom java synth button style if I have a button style that already exists?

So I am trying to create a custom LookAndFeel using java synth and I am having problems binding a custom button. (the Exit Button has a different look). Here are the buttons from my synth file: ...
1
vote
2answers
126 views

How to debug needless repainting occurring within Swing

I'm having some strange issues with repainting going on in a Swing app I'm developing. I'm finding that when I set the text of a certain component (it's just a status bar text label along the very ...
1
vote
4answers
628 views

Where to start on iOS audio synth?

I know this is a very broad topic, but I've been floundering around with demos and my own tests and am not sure if I'm attacking the problem correctly. So any leads on where I should start would be ...
1
vote
1answer
264 views

Controlling layout of a checkbox in a custom Synth Look & Feel

I'm trying to implement a custom "Steampunk" themed look and feel using Synth - basically providing custom versions of SynthStyle, SynthPainter and SynthStyleFactory. I am not using any XML, i.e. ...
1
vote
2answers
561 views

Synth LaF JLabel DISABLED color

Using the Synth LaF, I am unable to set a JLabel's FOREGROUND color for the DISABLED state. has anybody succeeded in doing this? Here is my label's style definition in my LaF.xml file. <style ...
1
vote
3answers
2k views

Java L&F customization: How do I use synth to customize BorderFactory borders?

Specifically, I currently have a JPanel with a TitledBorder. I want to customize the look of the border. In my app's current state, the title is drawn, but not the line border itself. If I bind an ...
1
vote
2answers
1k views

Free Wavetable Synthesizer?

I need to implement a wavetable synthesizer in an ARM Cortex-M3 core. I'm looking for any code or tools to help me get started. I'm aware of this AVR implementation. I actually converted it to a PIC ...
0
votes
1answer
82 views

Synth - setting background to JFrame

I'm creating an app in Java using Swing and Synth. I want to set image background to JFrame using Synth. How to do it?
0
votes
0answers
53 views

JMenuBar with Synth

Would someone please help me to create a simple frame with a JMenuBar using Synth L&F as I read multiple tutorials and I can't seem to get it right. Don't know what I am doing wrong. As ...
0
votes
1answer
68 views

Which real-time C++ audio libraries work with Xcode 4?

I am wanting to begin a project in C++ which would allow me to create sounds with functions such as float y = sin(2 * PI * f * t);, FM synthesis, and other more complex algorithms`. I am using Xcode 4 ...
0
votes
0answers
89 views

Java 1.7 RE Synth Custom Painter For Tabbed Pane in Applet

Prior to upgrading my JRE, I had a working custom painter that filled in gfx for a tabbed pane's tabs. public void paintTabbedPaneTabBackground(SynthContext context,Graphics g,int x, int y, int w, ...
0
votes
1answer
229 views

setting font color of button using XML and Java Swing Synth LaF

I'm using the Java Swing Synth Look and Feel. I'm able to specify the style of several components. Nonetheless, I'm not able to set the font color of a button for the default state. Text of buttons is ...
0
votes
1answer
128 views

Java Synth: can't get a white background in textfield

I can't get a white background for my JTextField, what am I doing wrong ? (I know that the image is not painted in the center for the text to be shown, but I'va set background to white; has no effect) ...
0
votes
1answer
197 views

Customizing components using Java Synth xml file?

I'm developing a Java application with a custom UI and I'm using Java Synth to achieve that. Currently I'm developing the xml file manually. Do you think this is a good way to do it, or should I use ...
0
votes
0answers
86 views

Can flash synth multiple sounds at the same time? [closed]

I would like to know how I can do THIS: http://wonderfl.net/c/jcyp For now, all I could reach in coding is this: http://wonderfl.net/c/jcyp When I try to synth multiple strings at the same time it ...
0
votes
0answers
175 views

How to make flash synth multiple sounds at the same time

I would like to know how I can do THIS: http://wonderfl.net/c/jcyp For now, all I could reach in coding is this: http://wonderfl.net/c/jcyp When I try to synth multiple strings at the same time it ...
0
votes
1answer
245 views

Swing Synth Skin: Can you override Styles?

I have a style defined for a JLabel: <style id="myLabel"> <state> <opaque value="true"/> <color value="blue" type="BACKGROUND"/> ...
0
votes
1answer
79 views

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 ...
0
votes
1answer
405 views

How to easily Generate Synth Chords Sounds in Android?

How to easily Generate Synth Chords Sounds in Android? I wanna be able to generate dynamically an in game Music using 8bit. Tried with AudioTrack, but did not get good results of nice sounds yet. Any ...
0
votes
2answers
245 views

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 ...
0
votes
1answer
567 views

Java Synth: Problem with JTabbedPane and SynthGraphicsUtils

in my Java application, I have a JTabbedPane and a synth look&feel. The l&f is defined by a xml file. This works very fine for me. Now the challenge: I want the text in the tabs of the ...
0
votes
1answer
275 views

Applying a Synth Look and Feel to Sliders?

I have a bunch of sliders that I am trying to apply a custom thumb to. The dimensions of it are 12x20, and I am applying it using a synth look and feel with the code below. This displays the thumb ...
0
votes
1answer
154 views

Synth LaF Different Panel Styles

i have an app with two JPanels and they must have different styles. I use the Synth LaF and I don't know how to have two different styles in one xml file. I define a style and bind it to "Panel" but ...