A FileChooser Component
Hello, what I am trying to do is having an area in a panel where the thumbnails of some files of a specific directory will appear and being able to do some "gui file manipulation" on them, like you can do with a JFileChooser, i mean like select a file, double click on a directory and show its contents, drag&drop etc. I think my main problem is I cannot figure out what kind of components the shown files have to be, actually the whole thing after some search seems rather difficult so if someone could point to some direction would be appreciated. What I want is a component like a JFileChooser but without the buttons, the path field, and not in a dialog but in my frame. So my first thought was to override JFileChooser but this class seems very tight to do such changes so I believe I have to make a new component, anyway I hope you understand what i am trying to say...

