Questions tagged [matisse]

Matisse refers to the GUI-Builder module of the Netbeans IDE application. It allows for the creation/modification of Java Swing components in a WYSIWYG, "drag, drop & resize" fashion.

61 questions
0
votes
1 answer

MyEclipse Matisse switching view after any change

I hope I'm not putting this in the wrong place; I don't where else to post it. I'm not sure if it's MyEclipse or the Matisse plugin, but after making ANY change, it switches from from the design view to the source view, it's driving me crazy. I…
Gio Asencio
  • 577
  • 5
  • 8
0
votes
1 answer

Matisse properly setting image to panel

I got a problem with NetBeans resource managing while setting images to pannel: This is my not working code: try { BufferedImage myPicture = ImageIO.read(new File("images/3D.jpg")); JLabel picLabel = new JLabel(new ImageIcon(myPicture)); …
Alpha2k
  • 2,212
  • 7
  • 38
  • 65
0
votes
2 answers

NetBeans Matisse - Access jframe component from another class

The Matisse code from Netbeans is blocked. The problem I have is that I have to setBackground to a JLabel from another Class in different package but I cannot do this because i have no access to the JLabel due to its private and blocked code. Is…
Alpha2k
  • 2,212
  • 7
  • 38
  • 65
0
votes
1 answer

Matisse vertical Flow Layout

Is there a way to create Netbeans Matisse Vertical Flow Layout like : But Netbeans Matisse Flow Layout create like this :
hiddenuser
  • 525
  • 2
  • 7
  • 19
0
votes
2 answers

Netbeans Swing Matisse JCombobox Key-Value Pair

is there a way to set Key-Value String Map/Pair in JCombobox Netbeans Swing Matisse using GUI only ? Below screenshot allow to insert single list but is there a way to insert Map/Key-Value String Pair using Matisse GUI instead of code like Value -…
hiddenuser
  • 525
  • 2
  • 7
  • 19
0
votes
0 answers

Is it possible to modify components stored in an AbstractCollection in Netbeans Swing Gui Builder (Matisse)

I have some swing components (JSliders and JTextFields to be precise) in an AbstractCollection. The user will decide in runtime how many components are needed each time. Is there any way to do that through a GUI editor, preferably the Swing GUI…
Mr_Saint
  • 3
  • 1
  • 5
0
votes
1 answer

Edit JTable in Netbeans Builder

I designed a JTable with Netbeans Builder and I created 5 columns, the 5th one is Boolean so I want to know how to highlight whole the row when the user selected.
0
votes
3 answers

Convert JDialog to JPanel in Netbeans

I spent a long time creating a nice Dialog using Netbeans (Matisse), and now I realise that I want it as JPanel instead. Is there any way of converting the Dialog to Panel in Netbeans. The blasted GUI editor does not allow me to modify any of the…
Oliver Watkins
  • 12,575
  • 33
  • 119
  • 225
0
votes
1 answer

Form loading error in NetBeans Matisse

I am new to JAVA desktop application development and initially started to create all classes under the default package. Later I learned that this is not good practice, so I moved my classes to different packages according to their functionality. As…
Zihad
  • 352
  • 3
  • 21
0
votes
1 answer

How can I write a method that returns all records from a Matisse table in a list structure?

Very new to using Matisse so I don't know if I'm just flat out doing this wrong or something. I have a table containing usernames and passwords for the system, along with the following method... public List FindUsers() { …
0
votes
3 answers

Netbeans: Is it possible to convert a hand-coded GUI into one understood by Matisse?

I'm starting development on an existing open source project that used a hand-coded GUI. Is it possible to somehow import this into Matisse, so that I can edit this project's GUI in Matisse? Or do I basically have to rebuild it from scratch in…
red.october
  • 563
  • 1
  • 5
  • 12
0
votes
1 answer

Matisse forms too "spread out". How to shrink spacing globally?

How can I globally compress Matisse-generated GroupLayout and perhaps other gap spacings to make Swing dialogs generated with Matisse and GroupLayout more compact? I have used Matisse to re-implement in Java Swing some large dialogs originally…
Gene
  • 46,253
  • 4
  • 58
  • 96
0
votes
1 answer

Force top JPanel to resize to the height of its child JPanel

I am having some problems getting the height of the top JPanel (this is essentially the top-most parent JPanel) to resize to the height of its child JPanel. As a result, when I place the top JPanel into a grid layout, there is extra gap below the…
Justin
  • 742
  • 5
  • 17
  • 34
0
votes
1 answer

Myeclipse: when make change in Design View, automatically change to Source View

I'm using MyEclipse and use Matisse to programming Swing. This function of MyEclipse has one thing make me annoy: when you change something in design view (add component, resize, add event,... anythings), MyEclipse will automatically generated code…
hqt
  • 29,632
  • 51
  • 171
  • 250
-2
votes
3 answers

threads to show progress in java

Here's the situation: My code downloads a file from the internet, also displays its size and filename. The problem is that when I'm downloading that file, nothing appears in that JTextArea and the frame is like "frozen" until the download is…
Seba Paz
  • 55
  • 3
  • 9