| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /////////////////////////////////////////////////////////////////////////////
- // Name: src/cocoa/checklst.mm
- // Purpose: wxCheckListBox
- // Author: David Elliott
- // Modified by:
- // Created: 2003/03/18
- // Copyright: (c) 2003 David Elliott
- // Licence: wxWindows licence
- /////////////////////////////////////////////////////////////////////////////
- #include "wx/wxprec.h"
- #if wxUSE_CHECKLISTBOX
- #include "wx/checklst.h"
- #ifndef WX_PRECOMP
- #include "wx/log.h"
- #include "wx/app.h"
- #endif //WX_PRECOMP
- BEGIN_EVENT_TABLE(wxCheckListBox, wxCheckListBoxBase)
- END_EVENT_TABLE()
- // WX_IMPLEMENT_COCOA_OWNER(wxCheckListBox,NSButton,NSControl,NSView)
- bool wxCheckListBox::Create(wxWindow *parent, wxWindowID winid,
- const wxPoint& pos,
- const wxSize& size,
- const wxArrayString& choices,
- long style,
- const wxValidator& validator,
- const wxString& name)
- {
- wxCArrayString chs(choices);
- return Create(parent, winid, pos, size, chs.GetCount(), chs.GetStrings(),
- style, validator, name);
- }
- bool wxCheckListBox::Create(wxWindow *parent, wxWindowID winid,
- const wxPoint& pos,
- const wxSize& size,
- int n, const wxString choices[],
- long style,
- const wxValidator& validator,
- const wxString& name)
- {
- if(!CreateControl(parent,winid,pos,size,style,validator,name))
- return false;
- if(m_parent)
- m_parent->CocoaAddChild(this);
- return true;
- }
- wxCheckListBox::~wxCheckListBox()
- {
- }
- bool wxCheckListBox::IsChecked(unsigned int item) const
- {
- return false;
- }
- void wxCheckListBox::Check(unsigned int item, bool check)
- {
- }
- #endif
|