bool getResults(wxArrayString& out, bool* createInfoPlistFile, bool* createIcon) { if(not m_accepted) return false; *createInfoPlistFile = m_info_plist_cb->IsChecked(); *createIcon = m_icon_cb->IsChecked(); const wxArrayString& items = m_choices_widget->GetStrings(); const int count = items.GetCount(); for(int n = 0; n < count; n++) { if(m_choices_widget->IsChecked(n)) out.Add(items[n]); } return true; }
void onPlistCheckboxPressed(wxCommandEvent& evt) { const bool on = m_info_plist_cb->IsChecked(); m_get_info_string->Enable(on); m_version->Enable(on); m_icon_file->Enable(on); m_identifier->Enable(on); m_signature->Enable(on); }