Files
wxWidgets/src/osx/cocoa/checkbox.mm
Artur Wieczorek da0299f30e Fix text alignment in wxCheckBox
Align the text according to the style.

See #17933.
2017-08-03 11:55:36 +02:00

43 lines
1.4 KiB
Plaintext

/////////////////////////////////////////////////////////////////////////////
// Name: src/osx/cocoa/checkbox.mm
// Purpose: wxCheckBox
// Author: Stefan Csomor
// Modified by:
// Created: 2008-08-20
// Copyright: (c) Stefan Csomor
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#include "wx/wxprec.h"
#if wxUSE_CHECKBOX
#include "wx/checkbox.h"
#include "wx/osx/private.h"
wxWidgetImplType* wxWidgetImpl::CreateCheckBox( wxWindowMac* wxpeer,
wxWindowMac* WXUNUSED(parent),
wxWindowID WXUNUSED(id),
const wxString& WXUNUSED(label),
const wxPoint& pos,
const wxSize& size,
long style,
long WXUNUSED(extraStyle))
{
NSRect r = wxOSXGetFrameForControl( wxpeer, pos , size ) ;
wxNSButton* v = [[wxNSButton alloc] initWithFrame:r];
[v setButtonType:NSSwitchButton];
if (style & wxALIGN_RIGHT)
[v setImagePosition:NSImageRight];
if (style & wxCHK_3STATE)
[v setAllowsMixedState:YES];
[v setAlignment: (style & wxALIGN_RIGHT) ?
NSRightTextAlignment : NSLeftTextAlignment];
wxWidgetCocoaImpl* c = new wxWidgetCocoaImpl( wxpeer, v );
return c;
}
#endif