Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef LANGUAGESAVAILABLELISTBOX_H_
00022 #define LANGUAGESAVAILABLELISTBOX_H_
00023
00024 #include <wx/listbox.h>
00025
00026 namespace hipp {
00027
00028 class LanguagesAvailableListBox : public wxListBox{
00029 public:
00030 LanguagesAvailableListBox(
00031 wxWindow *parent, wxWindowID id, const wxPoint &pos, const wxSize &size,
00032 int n, const wxString choices[], long style
00033 );
00034 virtual ~LanguagesAvailableListBox();
00035
00036 void GetAvailableLanguages();
00037 };
00038
00039 }
00040
00041 #endif