]> git.saurik.com Git - wxWidgets.git/blame - src/cocoa/bmpbuttn.mm
rebake
[wxWidgets.git] / src / cocoa / bmpbuttn.mm
CommitLineData
da0634c1 1/////////////////////////////////////////////////////////////////////////////
8898456d 2// Name: src/cocoa/bmpbuttn.mm
da0634c1
DE
3// Purpose: wxBitmapButton
4// Author: David Elliott
5// Modified by:
6// Created: 2003/03/16
8898456d 7// RCS-ID: $Id$
da0634c1 8// Copyright: (c) 2003 David Elliott
8898456d 9// Licence: wxWidgets licence
da0634c1
DE
10/////////////////////////////////////////////////////////////////////////////
11
12#include "wx/wxprec.h"
16c81607
RN
13
14#if wxUSE_BMPBUTTON
15
910b0053
WS
16#include "wx/bmpbuttn.h"
17
da0634c1 18#ifndef WX_PRECOMP
da0634c1
DE
19 #include "wx/log.h"
20#endif
21
c36a70f1
DE
22#include "wx/cocoa/autorelease.h"
23
da0634c1
DE
24#import <AppKit/NSButton.h>
25#import <Foundation/NSString.h>
26
27IMPLEMENT_DYNAMIC_CLASS(wxBitmapButton, wxControl)
28BEGIN_EVENT_TABLE(wxBitmapButton, wxBitmapButtonBase)
29END_EVENT_TABLE()
30WX_IMPLEMENT_COCOA_OWNER(wxBitmapButton,NSButton,NSControl,NSView)
31
32bool wxBitmapButton::Create(wxWindow *parent, wxWindowID winid,
33 const wxBitmap& bitmap, const wxPoint& pos,
34 const wxSize& size, long style,
35 const wxValidator& validator, const wxString& name)
36{
c36a70f1 37 wxAutoNSAutoreleasePool pool;
48580976 38 wxLogTrace(wxTRACE_COCOA,wxT("Creating control with id=%d"),winid);
da0634c1
DE
39 if(!CreateControl(parent,winid,pos,size,style,validator,name))
40 return false;
48580976 41 wxLogTrace(wxTRACE_COCOA,wxT("Created control with id=%d"),GetId());
da0634c1 42 m_cocoaNSView = NULL;
8d656ea9 43 SetNSButton([[NSButton alloc] initWithFrame: MakeDefaultNSRect(size)]);
da0634c1
DE
44 // NOTE: YES we want to release this (to match the alloc).
45 // DoAddChild(this) will retain us again since addSubView doesn't.
46 [m_cocoaNSView release];
47
7b73db07
DE
48 [GetNSButton() setBezelStyle: NSRegularSquareBezelStyle];
49 [GetNSButton() setImage:bitmap.GetNSImage(true)];
da0634c1
DE
50 [GetNSControl() sizeToFit];
51
52 if(m_parent)
53 m_parent->CocoaAddChild(this);
8d656ea9 54 SetInitialFrameRect(pos,size);
da0634c1
DE
55
56 return true;
57}
58
59wxBitmapButton::~wxBitmapButton()
60{
911e17c6 61 DisassociateNSButton(GetNSButton());
da0634c1
DE
62}
63
64void wxBitmapButton::Cocoa_wxNSButtonAction(void)
65{
48580976 66 wxLogTrace(wxTRACE_COCOA,wxT("YAY!"));
da0634c1
DE
67 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, GetId());
68 InitCommandEvent(event); // event.SetEventObject(this);
69 Command(event);
70}
71
16c81607 72#endif