00001 #ifndef __TranslationFrame__ 00002 #define __TranslationFrame__ 00003 00004 #include "TerrainEditor.h" 00005 #include "ITranslationToolController.h" 00006 00007 class TranslationFrame : public TranslationFrameBase { 00008 public: 00009 TranslationFrame(ITranslationToolController* controller, wxWindow* parent); 00010 00011 void onButtonClickApply(wxCommandEvent& event); 00012 00013 protected: 00014 ITranslationToolController* _controller; 00015 }; 00016 00017 #endif