Tagged Questions
The heavyweight tag has no wiki summary.
3
votes
1answer
142 views
Java swing: Remanence when removing a heavyweight jogl component to add a lightweight component at the same place
In my swing application, when I remove a jogl GLCanvas from my main component to add a jPanel at the same place, there are some display glitches:
During the time when the old component has been ...
2
votes
2answers
279 views
Cannot mix lightweight and heavyweight components in an undecorated JFrame
I am attempting to mix heavyweight and lightweight components according to these guidelines.
I am expecting the following code to paint the entire window green. Instead, it renders half the screen ...
2
votes
0answers
134 views
Making JPopupMenu's submenus heavyweight
http://java.sun.com/products/jfc/tsc/articles/mixing/index.html advices how to make JPopupMenus heavyweight. Just set the property:
setLightWeightPopupEnabled(false);
It works fine, but if I have ...
2
votes
3answers
320 views
Java AWT Heavyweight Canvas
I have an applet where I am drawing stuff by overriding the paint() method, and have added a Canvas to the applet, which will take up the whole screen. This canvas seems to be being drawn after my ...
2
votes
3answers
861 views
Heavy weight and light weight thread
What are the Light weight and heavy weight threads in terms of java????
1
vote
2answers
80 views
Java Swing: overlay components for light and heavyweight components?
Are there any good overlay component library for both lightweight and heavyweight components?
Is this achievable with JLabel even with highest opacity setting?
The overlay component needs to be ...
1
vote
1answer
66 views
clustering objects with weighted attributes
I want to cluster a set of objects which have multiple attributes and some attributes are more important than others
is there a simple way to give these specific attributes a heavy weight in a way to ...
1
vote
2answers
167 views
foreach and preg_match on a heavy amount of data not working properly
I have to files, one is full of keywords sequences (~20k lines), the other is full of regular expression (~2.5k).
I want to test each keyword with each regexp and print the one that matches. I tested ...
1
vote
1answer
629 views
Drawing on Java heavyweight swing components
I'm working with an application in which I add a heavyweight (Canvas) to a JFrame. The Canvas is a 3rd party component, so I am required to keep it heavyweight. I'd like to add capabilities for the ...
0
votes
1answer
119 views
Most efficient way to play sound (many play button in one page)
I have a page where the user can click a button to play word pronunciation,
you can take a loot at http://japaneseclass.jp/note/open/351
Right now, the page uses flash player, and it is really heavy ...
0
votes
1answer
396 views
Possible to stop flickering java tooltip in heavyweight mode?
Similar Q to ToolTip flicker in Java if outside JFrame?
A constantly updating lightweight tooltip works fine, but once it moves out the window bounds or is made heavyweight (by disabling lightweight ...
0
votes
3answers
172 views
A heavyweight and a lightweight version of the same object
For a project we are developing, we are in need of a lightweight and a heavyweight object of the same entity class. We are having a simple solution, but need to know if there is any better solutions ...
0
votes
2answers
135 views
Lightweight on top of heavyweight
I have a JFrame that has a JLayeredPane. The JLayeredPane contains a heavyweight component (Ardor3d AWT canvas). I am trying to display a JPanel on top of the heavyweight component. This works ...
0
votes
1answer
310 views
Transarent background over heavyweight components
I've got a problem. In LayeredPane I have 2 components: heavyweight coponent and JComponent(or any other what I could draw text in) that is placed above the first one. I'd like JComponent to have ...
0
votes
5answers
337 views
Is it good practice to generally make heavyweight classes non-copyable?
I have a Shape class containing potentially many vertices, and I was contemplating making copy-constructor/copy-assignment private to prevent accidental needless copying of my heavyweight class (for ...
0
votes
2answers
608 views
Adding components to a GLCanvas
I'm working with an application that draws on a GLCanvas. I'd like to add a "floating menu" on top of it (something I would do in Swing by adding a menu to the glass pane). Since GLCanvas doesn't ...