File: _oglcanvas.i

package info (click to toggle)
wxwidgets2.8 2.8.10.1-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 239,052 kB
  • ctags: 289,550
  • sloc: cpp: 1,838,857; xml: 396,717; python: 282,506; ansic: 126,171; makefile: 51,406; sh: 14,581; asm: 299; sql: 258; lex: 194; perl: 139; yacc: 128; pascal: 95; php: 39; lisp: 38; tcl: 24; haskell: 20; java: 18; cs: 18; erlang: 17; ruby: 16; ada: 9; ml: 9; csh: 9
file content (161 lines) | stat: -rw-r--r-- 5,618 bytes parent folder | download | duplicates (3)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/////////////////////////////////////////////////////////////////////////////
// Name:        oglcanvas.i
// Purpose:     SWIG definitions for the wxWindows Object Graphics Library
//
// Author:      Robin Dunn
//
// Created:     7-Sept-1999
// RCS-ID:      $Id: _oglcanvas.i 28291 2004-07-17 22:51:01Z RD $
// Copyright:   (c) 1998 by Total Control Software
// Licence:     wxWindows license
/////////////////////////////////////////////////////////////////////////////


// not a %module


//---------------------------------------------------------------------------
%{
    // Put some wx default wxChar* values into wxStrings.
    DECLARE_DEF_STRING(ShapeCanvasNameStr);
%}

//---------------------------------------------------------------------------
//---------------------------------------------------------------------------

class wxDiagram : public wxObject {
public:
    wxDiagram();
    //~wxDiagram();

    void AddShape(wxPyShape* shape, wxPyShape *addAfter = NULL);
    void Clear(wxDC& dc);
    void DeleteAllShapes();
    void DrawOutline(wxDC& dc, double x1, double y1, double x2, double y2);
    wxPyShape* FindShape(long id);
    wxPyShapeCanvas* GetCanvas();
    int GetCount();
    double GetGridSpacing();
    int GetMouseTolerance();

    // wxList* GetShapeList();
    %extend {
        PyObject* GetShapeList() {
            wxList* list = self->GetShapeList();
            return wxPy_ConvertShapeList(list);
        }
    }

    bool GetQuickEditMode();
    bool GetSnapToGrid();
    void InsertShape(wxPyShape *shape);

#ifdef wxUSE_PROLOGIO
    bool LoadFile(const wxString& filename);
    bool SaveFile(const wxString& filename);
#endif

#ifdef wxUSE_PROLOGIO
    // **** Have to deal with wxExpr and wxExprDatabase first...
    //void OnDatabaseLoad(wxExprDatabase& database);
    //void OnDatabaseSave(wxExprDatabase& database);
    //bool OnHeaderLoad(wxExprDatabase& database, wxExpr& expr);
    //bool OnHeaderSave(wxExprDatabase& database, wxExpr& expr);
    //bool OnShapeLoad(wxExprDatabase& database, wxPyShape& shape, wxExpr& expr);
    //bool OnShapeSave(wxExprDatabase& database, wxPyShape& shape, wxExpr& expr);
#endif

#ifdef wxUSE_PROLOGIO
    void ReadContainerGeometry(wxExprDatabase& database);
    void ReadLines(wxExprDatabase& database);
    void ReadNodes(wxExprDatabase& database);
#endif

    void RecentreAll(wxDC& dc);
    void Redraw(wxDC& dc);
    void RemoveAllShapes();
    void RemoveShape(wxPyShape* shape);
    void SetCanvas(wxPyShapeCanvas* canvas);
    void SetGridSpacing(double spacing);
    void SetMouseTolerance(int tolerance);
    void SetQuickEditMode(bool mode);
    void SetSnapToGrid(bool snap);
    void ShowAll(bool show);
    void Snap(double *INOUT, double *INOUT);

};

//---------------------------------------------------------------------------

%{
    IMP_PYCALLBACK__2DBLINT(wxPyShapeCanvas, wxShapeCanvas, OnBeginDragLeft);
    IMP_PYCALLBACK__2DBLINT(wxPyShapeCanvas, wxShapeCanvas, OnBeginDragRight);
    IMP_PYCALLBACK__2DBLINT(wxPyShapeCanvas, wxShapeCanvas, OnEndDragLeft);
    IMP_PYCALLBACK__2DBLINT(wxPyShapeCanvas, wxShapeCanvas, OnEndDragRight);
    IMP_PYCALLBACK__BOOL2DBLINT(wxPyShapeCanvas, wxShapeCanvas, OnDragLeft);
    IMP_PYCALLBACK__BOOL2DBLINT(wxPyShapeCanvas, wxShapeCanvas, OnDragRight);
    IMP_PYCALLBACK__2DBLINT(wxPyShapeCanvas, wxShapeCanvas, OnLeftClick);
    IMP_PYCALLBACK__2DBLINT(wxPyShapeCanvas, wxShapeCanvas, OnRightClick);
%}


MustHaveApp(wxPyShapeCanvas);

class wxPyShapeCanvas : public wxScrolledWindow {
public:
    %pythonAppend wxPyShapeCanvas "self._setOORandCallbackInfo(PyShapeCanvas)"
    %typemap(out) wxPyShapeCanvas*;    // turn off this typemap

    wxPyShapeCanvas(wxWindow* parent = NULL, wxWindowID id = -1,
                    const wxPoint& pos = wxDefaultPosition,
                    const wxSize& size = wxDefaultSize,
                    long style = wxBORDER,
                    const wxString& name = wxPyShapeCanvasNameStr);

    %typemap(out) wxPyShapeCanvas*          { $result = wxPyMake_wxObject($1, $owner); }
    
    void _setCallbackInfo(PyObject* self, PyObject* _class);
    %pythoncode {
    def _setOORandCallbackInfo(self, _class):
        self._setOORInfo(self)
        self._setCallbackInfo(self, _class)
    }

    void AddShape(wxPyShape *shape, wxPyShape *addAfter = NULL);

    // ****  Need a typemap for wxClassInfo, or fully implement wxObject, etc.....
    wxPyShape* FindShape(double x1, double y, int *OUTPUT,
                       wxClassInfo *info = NULL, wxPyShape* notImage = NULL);

    wxPyShape * FindFirstSensitiveShape(double x1, double y, int *OUTPUT, int op);
    wxDiagram* GetDiagram();

    bool GetQuickEditMode();
    void InsertShape(wxPyShape* shape);


    void base_OnBeginDragLeft(double x, double y, int keys = 0);
    void base_OnBeginDragRight(double x, double y, int keys = 0);
    void base_OnEndDragLeft(double x, double y, int keys = 0);
    void base_OnEndDragRight(double x, double y, int keys = 0);
    void base_OnDragLeft(bool draw, double x, double y, int keys = 0);
    void base_OnDragRight(bool draw, double x, double y, int keys = 0);
    void base_OnLeftClick(double x, double y, int keys = 0);
    void base_OnRightClick(double x, double y, int keys = 0);

    void Redraw(wxDC& dc);
    void RemoveShape(wxPyShape *shape);
    void SetDiagram(wxDiagram *diagram);
    void Snap(double *INOUT, double *INOUT);


    %pythoncode {
    def GetShapeList(self):
        return self.GetDiagram().GetShapeList()
    }
};


//---------------------------------------------------------------------------