From 9cc790869ed3905c78c7eeeb0bb44f800b3f2af4 Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Fri, 18 Apr 2014 17:11:09 +0200 Subject: 3.15 --- shared/dir_picker_i18n.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 shared/dir_picker_i18n.h (limited to 'shared/dir_picker_i18n.h') diff --git a/shared/dir_picker_i18n.h b/shared/dir_picker_i18n.h new file mode 100644 index 00000000..89b54bf4 --- /dev/null +++ b/shared/dir_picker_i18n.h @@ -0,0 +1,30 @@ +#ifndef DIR_PICKER_I18N_H_INCLUDED +#define DIR_PICKER_I18N_H_INCLUDED + +#include +#include "i18n.h" + + +class FfsDirPickerCtrl : public wxDirPickerCtrl +{ +public: + FfsDirPickerCtrl(wxWindow* parent, wxWindowID id, + const wxString& path = wxEmptyString, + const wxString& message = wxDirSelectorPromptStr, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, + long style = wxDIRP_DEFAULT_STYLE, + const wxValidator& validator = wxDefaultValidator, + const wxString& name = wxDirPickerCtrlNameStr) : + wxDirPickerCtrl(parent, id, path, message, pos, size, style, validator, name) + { +#ifdef FFS_WIN + //fix wxWidgets localization gap: + wxButton* button = dynamic_cast(m_pickerIface); + if (button) button->SetLabel(_("Browse")); +#endif + } +}; + + +#endif // DIR_PICKER_I18N_H_INCLUDED -- cgit