27#ifndef BINARYNAMECTRL_H
28#define BINARYNAMECTRL_H
33#include <wx/textctrl.h>
35#include "../Configuration.h"
43 wxString GetValue()
const {
return m_binaryName->GetValue();}
44 void SetValue(
const wxString &val) {m_binaryName->SetValue(val);}
45 void SetToolTip(
const wxString tip){m_binaryName->SetToolTip(tip);}
47 void TextChangedEvent(wxCommandEvent &evt);
49 void OnBrowse(wxCommandEvent &event);
51 wxTextCtrl *m_binaryName;
52 wxButton *m_browseButton;
A dialog that shows the program's license.
Definition: BinaryNameCtrl.h:40