free-the-pixel.blogspot.com
Free the pixel: April 2010
http://free-the-pixel.blogspot.com/2010_04_01_archive.html
About java swing/java2D stuff. Friday, April 2, 2010. GHOST drag and drop, over multiple windows. I guess many people seen the example(the photocollage application) from Romain Guy, when he was still playing with java, about ghost drag and drop using the glass pane to render the ghost image:. Http:/ www.jroller.com/gfx/entry/drag and drop effects the. One problem with this implementation is that it used the glasspane, a unique resource of a window. I didn’t investigate much on that but I guess it&#...
free-the-pixel.blogspot.com
Free the pixel: June 2010
http://free-the-pixel.blogspot.com/2010_06_01_archive.html
About java swing/java2D stuff. Saturday, June 5, 2010. Some days ago, a friend(hey Luiz! Asked me about a component that could display text with a kind of scrolling animation as you see in many media players where you see the band name / title name going from right to left. He wanted to add this kind of component to one of his application. As he knows I like to play with swing/java2D he asked me about it. Let’s have a look at the code. First the interface that will be used to control the animation:.
jportalgame.de
Credits - JPortal
http://www.jportalgame.de/7.html
All stuff I didn t do myself was taken from some accessable internet site. In my believe everything contained in JPortal is either done by myself or free to share. Some stuff I searched for, found and put into the game and can t seem to track down anymore. I m sorry if I miss some credits here. If a credit is missing it is not. Ambientmoon written by Achim Tober. Homepage: http:/ www.softworxs.de/music.html. Homepage: http:/ www.freesound.org/. Homepage: http:/ reinerstileset.4players.de. Homepage: http:...
free-the-pixel.blogspot.com
Free the pixel: Customs Toggle buttons
http://free-the-pixel.blogspot.com/2010/03/customs-toggle-buttons.html
About java swing/java2D stuff. Monday, March 1, 2010. First I will talk about why I ended up creating this customs jtoggle button. I was asked, what would be the best way to show a choice among 2 available options (option A or option B). Usually when you want the user to select one option among a few (let’s say less than 5) you can use some JRadioButton/JCheckBox/JToggleButton. I had to show the icon corresponding to each of the 2 options. The visual feedbacks I considered for this are the following:.
free-the-pixel.blogspot.com
Free the pixel: March 2010
http://free-the-pixel.blogspot.com/2010_03_01_archive.html
About java swing/java2D stuff. Sunday, March 14, 2010. Substance L&F: Button with multiline text. Usually when you need a button with text on multiple lines, you have to use html to format the text. This works fine, but as I am using Substance L&F, I ran into an unsupported featured concerning the foreground colour using html. First, let’s see how substance displays the text in a button. The foreground color depend of the button state (default,pressed,armed,…). So the plan was to make a custom SubstanceB...
free-the-pixel.blogspot.com
Free the pixel: Animated Scrolling text
http://free-the-pixel.blogspot.com/2010/06/scrolling-text.html
About java swing/java2D stuff. Saturday, June 5, 2010. Some days ago, a friend(hey Luiz! Asked me about a component that could display text with a kind of scrolling animation as you see in many media players where you see the band name / title name going from right to left. He wanted to add this kind of component to one of his application. As he knows I like to play with swing/java2D he asked me about it. Let’s have a look at the code. First the interface that will be used to control the animation:.
free-the-pixel.blogspot.com
Free the pixel: February 2010
http://free-the-pixel.blogspot.com/2010_02_01_archive.html
About java swing/java2D stuff. Thursday, February 11, 2010. I have already written about JTable on this blog, a lot can be written about it. This time I will talk about a custom jtable I developed in order to have the simplest way to show READ ONLY data. First how I was coding before:. DefaultTableModel dtm= new DefaultTableModel();. For(Person p: getListPersons() {. Dtmadd(new Object[]{p.getFirstName(),p.getLastName()});. DtmaddColumn(“firstName”);. DtmaddColumn(“lastName”);. JTable table=new JTable();.
free-the-pixel.blogspot.com
Free the pixel: January 2010
http://free-the-pixel.blogspot.com/2010_01_01_archive.html
About java swing/java2D stuff. Thursday, January 28, 2010. If you have been developing client software you certainly already ran into the following situation:. You have a table full of data, each line corresponding to an object you can interact with. Where and how should I put buttons for this purpose? I will explore several implementations in order to handle this situation. Buttons outside the table. It’s possible to add buttons somewhere on the screen that will do something related to the selecte...
free-the-pixel.blogspot.com
Free the pixel: GHOST drag and drop, over multiple windows
http://free-the-pixel.blogspot.com/2010/04/ghost-drag-and-drop-over-multiple.html
About java swing/java2D stuff. Friday, April 2, 2010. GHOST drag and drop, over multiple windows. I guess many people seen the example(the photocollage application) from Romain Guy, when he was still playing with java, about ghost drag and drop using the glass pane to render the ghost image:. Http:/ www.jroller.com/gfx/entry/drag and drop effects the. One problem with this implementation is that it used the glasspane, a unique resource of a window. I didn’t investigate much on that but I guess it&#...
free-the-pixel.blogspot.com
Free the pixel: Bean reader JTable
http://free-the-pixel.blogspot.com/2010/02/bean-reader-jtable.html
About java swing/java2D stuff. Thursday, February 11, 2010. I have already written about JTable on this blog, a lot can be written about it. This time I will talk about a custom jtable I developed in order to have the simplest way to show READ ONLY data. First how I was coding before:. DefaultTableModel dtm= new DefaultTableModel();. For(Person p: getListPersons() {. Dtmadd(new Object[]{p.getFirstName(),p.getLastName()});. DtmaddColumn(“firstName”);. DtmaddColumn(“lastName”);. JTable table=new JTable();.