Which Control To Use? Topic is solved

If you are using the main C++ distribution of wxWidgets, Feel free to ask any question related to wxWidgets development here. This means questions regarding to C++ and wxWidgets, not compile problems.
Post Reply
timw4mail
Experienced Solver
Experienced Solver
Posts: 99
Joined: Sun Mar 23, 2008 6:59 pm
Location: United States
Contact:

Which Control To Use?

Post by timw4mail »

I want to add an FTP pane to my program. I've already got the frame set up. What I want is a a filelist, similar to what Filezilla has:

http://filezilla-project.org/images/scr ... x_main.png

Would this be a custom control, or is this the wxTreeCtrl?
My wxWidgets Program:Snaga

Platforms:Windows, Linux, Solaris, Mac
IDE/Compiler:Netbeans with MinGW/GCC, Sun Compilers for Solaris, Xcode for Mac
wxWidgets Version:2.8.7
Frank
Filthy Rich wx Solver
Filthy Rich wx Solver
Posts: 211
Joined: Sat Jan 01, 2005 6:19 pm

Post by Frank »

That are two controls. The top one is a wxTreeCtrl, the bottom one is a wxListCtrl. And a splitter in between.
gawi
Knows some wx things
Knows some wx things
Posts: 49
Joined: Sun Mar 16, 2008 8:30 am
Location: Poland

Post by gawi »

wxGenericDirCtrl will be good for You.
Example? - look in
\examples\wxWidgets\generic\dirctrlg.cpp
in Your wxDevC++ installation directory.
timw4mail
Experienced Solver
Experienced Solver
Posts: 99
Joined: Sun Mar 23, 2008 6:59 pm
Location: United States
Contact:

Post by timw4mail »

gawi wrote:wxGenericDirCtrl will be good for You.
Example? - look in
\examples\wxWidgets\generic\dirctrlg.cpp
in Your wxDevC++ installation directory.
I don't use wxDevC++, do you have another example?
My wxWidgets Program:Snaga

Platforms:Windows, Linux, Solaris, Mac
IDE/Compiler:Netbeans with MinGW/GCC, Sun Compilers for Solaris, Xcode for Mac
wxWidgets Version:2.8.7
Post Reply