34 : wxDialog(parent, -1,_T(
"EXPORT FILES TO STORAGE"), wxDefaultPosition, wxSize(260,150))
39 wxStaticText * ExportText=
new wxStaticText(
this,-1,_T(
" Storage to export: "), wxPoint(5,10));
41 std::vector<std::string>::const_iterator it = storages.begin();
42 for(;it != storages.end(); it++)
44 names.Add(crea::std2wx(*it));
51 wxButton *Ok =
new wxButton(
this, -1,_T(
"OK"), wxPoint(5,50) );
52 Connect( Ok->GetId(), wxEVT_COMMAND_BUTTON_CLICKED , (wxObjectEventFunction) &
WxExportDlg::OnOk );
55 wxButton *Cancel =
new wxButton(
this, wxID_CANCEL,_T(
"CANCEL"), wxPoint(100,50) );