00001 #ifndef HEADER_SELECTLANG_H
00002 #define HEADER_SELECTLANG_H
00003
00004 class Path;
00005
00006 #include "VBox.h"
00007 #include "Scripter.h"
00008
00009
00010
00011
00012 class SelectLang : public VBox, public Scripter {
00013 private:
00014 static const int MAX_WIDTH = 200;
00015 std::string m_option;
00016 WiBox *m_activeRow;
00017 public:
00018 SelectLang(const std::string &option, const Path &datafile);
00019
00020 void addFlag(const std::string &value, const Path &picture);
00021 };
00022
00023 #endif