This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
92 lines
2.7 KiB
C++
92 lines
2.7 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/univ/choice.cpp
|
|
// Purpose: wxChoice implementation
|
|
// Author: Vadim Zeitlin
|
|
// Modified by:
|
|
// Created: 15.12.00
|
|
// Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ============================================================================
|
|
// declarations
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// headers
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if wxUSE_CHOICE
|
|
|
|
#include "wx/choice.h"
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/arrstr.h"
|
|
#endif
|
|
|
|
BEGIN_EVENT_TABLE(wxChoice, wxComboBox)
|
|
EVT_COMBOBOX(wxID_ANY, wxChoice::OnComboBox)
|
|
END_EVENT_TABLE()
|
|
|
|
wxChoice::wxChoice(wxWindow *parent, wxWindowID id,
|
|
const wxPoint& pos,
|
|
const wxSize& size,
|
|
const wxArrayString& choices,
|
|
long style,
|
|
const wxValidator& validator,
|
|
const wxString& name)
|
|
{
|
|
Create(parent, id, pos, size, choices, style, validator, name);
|
|
}
|
|
|
|
bool wxChoice::Create(wxWindow *parent, wxWindowID id,
|
|
const wxPoint& pos,
|
|
const wxSize& size,
|
|
const wxArrayString& choices,
|
|
long style,
|
|
const wxValidator& validator,
|
|
const wxString& name)
|
|
{
|
|
wxCArrayString chs(choices);
|
|
|
|
return Create(parent, id, pos, size, chs.GetCount(), chs.GetStrings(),
|
|
style, validator, name);
|
|
}
|
|
|
|
bool wxChoice::Create(wxWindow *parent, wxWindowID id,
|
|
const wxPoint& pos,
|
|
const wxSize& size,
|
|
int n, const wxString choices[],
|
|
long WXUNUSED(style),
|
|
const wxValidator& validator,
|
|
const wxString& name)
|
|
{
|
|
wxString value;
|
|
if ( n )
|
|
value = choices[0];
|
|
return wxComboBox::Create(parent, id, value,
|
|
pos, size, n, choices,
|
|
wxCB_READONLY, validator, name);
|
|
}
|
|
|
|
|
|
void wxChoice::OnComboBox(wxCommandEvent& event)
|
|
{
|
|
if ( event.GetId() == GetId() )
|
|
{
|
|
event.SetEventType(wxEVT_CHOICE);
|
|
event.Skip();
|
|
GetEventHandler()->ProcessEvent(event);
|
|
}
|
|
else
|
|
event.Skip();
|
|
}
|
|
|
|
#endif // wxUSE_CHOICE
|