File: dcclient.h

package info (click to toggle)
wxpython3.0 3.0.2.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 482,760 kB
  • ctags: 518,293
  • sloc: cpp: 2,127,226; python: 294,045; makefile: 51,942; ansic: 19,033; sh: 3,013; xml: 1,629; perl: 17
file content (69 lines) | stat: -rw-r--r-- 2,119 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/////////////////////////////////////////////////////////////////////////////
// Name:        wx/cocoa/dcclient.h
// Purpose:     wxClientDCImpl, wxPaintDCImpl and wxWindowDCImpl classes
// Author:      David Elliott
// Modified by:
// Created:     2003/04/01
// Copyright:   (c) 2003 David Elliott
// Licence:     wxWindows licence
/////////////////////////////////////////////////////////////////////////////

#ifndef __WX_COCOA_DCCLIENT_H__
#define __WX_COCOA_DCCLIENT_H__

#include "wx/cocoa/dc.h"

// DFE: A while ago I stumbled upon the fact that retrieving the parent
// NSView of the content view seems to return the entire window rectangle
// (including decorations).  Of course, that is not at all part of the
// Cocoa or OpenStep APIs, but it might be a neat hack.
class WXDLLIMPEXP_CORE wxWindowDCImpl: public wxCocoaDCImpl
{
    DECLARE_DYNAMIC_CLASS(wxWindowDCImpl)
public:
    wxWindowDCImpl(wxDC *owner);
    // Create a DC corresponding to a window
    wxWindowDCImpl(wxDC *owner, wxWindow *win);
    virtual ~wxWindowDCImpl(void);

protected:
    wxWindow *m_window;
    WX_NSView m_lockedNSView;
// DC stack
    virtual bool CocoaLockFocus();
    virtual bool CocoaUnlockFocus();
    bool CocoaLockFocusOnNSView(WX_NSView nsview);
    bool CocoaUnlockFocusOnNSView();
    virtual bool CocoaGetBounds(void *rectData);
};

class WXDLLIMPEXP_CORE wxClientDCImpl: public wxWindowDCImpl
{
    DECLARE_DYNAMIC_CLASS(wxClientDCImpl)
public:
    wxClientDCImpl(wxDC *owner);
    // Create a DC corresponding to a window
    wxClientDCImpl(wxDC *owner, wxWindow *win);
    virtual ~wxClientDCImpl(void);
protected:
// DC stack
    virtual bool CocoaLockFocus();
    virtual bool CocoaUnlockFocus();
};

class WXDLLIMPEXP_CORE wxPaintDCImpl: public wxWindowDCImpl
{
    DECLARE_DYNAMIC_CLASS(wxPaintDCImpl)
public:
    wxPaintDCImpl(wxDC *owner);
    // Create a DC corresponding to a window
    wxPaintDCImpl(wxDC *owner, wxWindow *win);
    virtual ~wxPaintDCImpl(void);
protected:
// DC stack
    virtual bool CocoaLockFocus();
    virtual bool CocoaUnlockFocus();
};

#endif
    // __WX_COCOA_DCCLIENT_H__