]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/private.h
Added wxRadioButton::MSWWindowProc to reset m_focusJustSet -- otherwise,
[wxWidgets.git] / include / wx / mac / private.h
CommitLineData
0dbd6262
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: private.h
5273bf2f
SC
3// Purpose: Private declarations: as this header is only included by
4// wxWindows itself, it may contain identifiers which don't start
5// with "wx".
6// Author: Stefan Csomor
0dbd6262
SC
7// Modified by:
8// Created: ??/??/98
9// RCS-ID: $Id$
5273bf2f 10// Copyright: (c) Stefan Csomor
0dbd6262
SC
11// Licence: wxWindows licence
12/////////////////////////////////////////////////////////////////////////////
13
14#ifndef _WX_PRIVATE_H_
15#define _WX_PRIVATE_H_
16
17#include "wx/defs.h"
18
5273bf2f 19#if defined(__POWERPC__) && defined(__DARWIN__)
fa9d617b
GD
20# include <Carbon/Carbon.h>
21# define TARGET_CARBON 1
5273bf2f 22#else
5921f83f
SC
23# include <Quickdraw.h>
24# include <Appearance.h>
25# include <Folders.h>
26# include <Controls.h>
27# include <ControlDefinitions.h>
28# include <LowMem.h>
29# include <Gestalt.h>
5273bf2f 30#endif
5921f83f 31
5273bf2f
SC
32#if UNIVERSAL_INTERFACES_VERSION < 0x0340
33 #error "please update to Apple's lastest universal headers from http://developer.apple.com/sdk/"
34#endif
35
fa9d617b
GD
36#include "wx/window.h"
37
5273bf2f
SC
38class wxMacPortStateHelper
39{
d84afea9
GD
40 DECLARE_NO_COPY_CLASS(wxMacPortStateHelper)
41
42public:
43 wxMacPortStateHelper( GrafPtr newport) ;
44 wxMacPortStateHelper() ;
45 ~wxMacPortStateHelper() ;
5273bf2f 46
d84afea9
GD
47 void Setup( GrafPtr newport ) ;
48 void Clear() ;
49 bool IsCleared() { return m_clip == NULL ; }
50 GrafPtr GetCurrentPort() { return m_currentPort ; }
5273bf2f 51
d84afea9
GD
52private:
53 GrafPtr m_currentPort ;
54 GrafPtr m_oldPort ;
55 RgnHandle m_clip ;
56 ThemeDrawingState m_drawingState ;
57 short m_textFont ;
58 short m_textSize ;
59 short m_textStyle ;
60 short m_textMode ;
5273bf2f
SC
61} ;
62
63class WXDLLEXPORT wxMacPortSetter
64{
d84afea9
GD
65 DECLARE_NO_COPY_CLASS(wxMacPortSetter)
66
67public:
68 wxMacPortSetter( const wxDC* dc ) ;
69 ~wxMacPortSetter() ;
70private:
71 wxMacPortStateHelper m_ph ;
72 const wxDC* m_dc ;
5273bf2f
SC
73} ;
74
75class wxMacDrawingHelper
76{
d84afea9
GD
77 DECLARE_NO_COPY_CLASS(wxMacDrawingHelper)
78
79public:
80 wxMacDrawingHelper( wxWindowMac * theWindow , bool clientArea = false ) ;
81 ~wxMacDrawingHelper() ;
82 bool Ok() { return m_ok ; }
83 void LocalToWindow( Rect *rect) { OffsetRect( rect , m_origin.h , m_origin.v ) ; }
84 void LocalToWindow( Point *pt ) { AddPt( m_origin , pt ) ; }
85 void LocalToWindow( RgnHandle rgn ) { OffsetRgn( rgn , m_origin.h , m_origin.v ) ; }
86 const Point& GetOrigin() { return m_origin ; }
87private:
88 Point m_origin ;
89 GrafPtr m_formerPort ;
90 GrafPtr m_currentPort ;
91 PenState m_savedPenState ;
92 bool m_ok ;
5273bf2f
SC
93} ;
94
33426639
SC
95// app.h
96bool wxMacConvertEventToRecord( EventRef event , EventRecord *rec) ;
5273bf2f
SC
97
98// filefn.h
99WXDLLEXPORT wxString wxMacFSSpec2MacFilename( const FSSpec *spec ) ;
100WXDLLEXPORT void wxMacFilename2FSSpec( const char *path , FSSpec *spec ) ;
101# ifndef __DARWIN__
102// Mac file names are POSIX (Unix style) under Darwin, so these are not needed
103WXDLLEXPORT wxString wxMacFSSpec2UnixFilename( const FSSpec *spec ) ;
104WXDLLEXPORT void wxUnixFilename2FSSpec( const char *path , FSSpec *spec ) ;
105WXDLLEXPORT wxString wxMac2UnixFilename( const char *s) ;
106WXDLLEXPORT wxString wxUnix2MacFilename( const char *s);
107# endif
108
109// utils.h
110WXDLLEXPORT wxString wxMacFindFolder(short vRefNum,
111 OSType folderType,
112 Boolean createFolder);
113
114GWorldPtr wxMacCreateGWorld( int width , int height , int depth ) ;
115void wxMacDestroyGWorld( GWorldPtr gw ) ;
116PicHandle wxMacCreatePict( GWorldPtr gw , GWorldPtr mask = NULL ) ;
117CIconHandle wxMacCreateCIcon(GWorldPtr image , GWorldPtr mask , short dstDepth , short iconSize ) ;
118void wxMacSetColorTableEntry( CTabHandle newColors , int index , int red , int green , int blue ) ;
119CTabHandle wxMacCreateColorTable( int numColors ) ;
22385679 120void wxMacCreateBitmapButton( ControlButtonContentInfo*info , const wxBitmap& bitmap ) ;
0dbd6262 121
5273bf2f
SC
122#define MAC_WXCOLORREF(a) (*((RGBColor*)&(a)))
123#define MAC_WXHBITMAP(a) (GWorldPtr(a))
124#define MAC_WXHMETAFILE(a) (PicHandle(a))
125#define MAC_WXHICON(a) (CIconHandle(a))
126#define MAC_WXHCURSOR(a) (CursHandle(a))
127#define MAC_WXHRGN(a) (RgnHandle(a))
128#define MAC_WXHWND(a) (WindowPtr(a))
129#define MAC_WXRECPTR(a) ((Rect*)a)
130#define MAC_WXPOINTPTR(a) ((Point*)a)
131#define MAC_WXHMENU(a) ((MenuHandle)a)
0dbd6262
SC
132#endif
133 // _WX_PRIVATE_H_