mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-01-11 03:00:27 +01:00
95 lines
2.8 KiB
C++
95 lines
2.8 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/univ/choice.cpp
|
|
// Purpose: wxChoice implementation
|
|
// Author: Vadim Zeitlin
|
|
// Modified by:
|
|
// Created: 15.12.00
|
|
// RCS-ID: $Id: choice.cpp 39470 2006-05-30 07:34:30Z ABX $
|
|
// 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
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxChoice, wxControl)
|
|
|
|
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_COMMAND_CHOICE_SELECTED);
|
|
event.Skip();
|
|
GetEventHandler()->ProcessEvent(event);
|
|
}
|
|
else
|
|
event.Skip();
|
|
}
|
|
|
|
#endif // wxUSE_CHOICE
|