File: PropertyGridPageState.xsp

package info (click to toggle)
libwx-perl 1%3A0.9909-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,912 kB
  • sloc: cpp: 9,728; perl: 8,182; ansic: 626; makefile: 41
file content (58 lines) | stat: -rw-r--r-- 1,577 bytes parent folder | download | duplicates (6)
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
#############################################################################
## Name:        ext/propgrid/XS/PropertyGridPageState.xsp
## Purpose:     XS++ for Wx::PropertyGridPageState
## Author:      Mark Dootson
## Modified by:
## Created:     04/03/2012
## RCS-ID:      $Id: $
## Copyright:   (c) 2012 Mattia Barbon
## Licence:     This program is free software; you can redistribute it and/or
##              modify it under the same terms as Perl itself
#############################################################################

%module{Wx};

#if WXPERL_W_VERSION_GE( 2, 9, 3 ) && wxUSE_PROPGRID

%loadplugin{build::Wx::XSP::Overload};

%name{Wx::PropertyGridIterator} class wxPropertyGridIterator : public %name{Wx::PropertyGridIteratorBase} wxPropertyGridIteratorBase
{
public:

    void Assign( const wxPropertyGridIteratorBase& it );
    bool AtEnd() const;
    wxPGProperty__parsed_nodelete* GetProperty() const;
    void Next( bool iterateChildren = true );
    void Prev();
    void SetBaseParent( wxPGProperty__parsed_nodelete* baseParent );
};


%name{Wx::PGVIterator} class wxPGVIterator
{
public:
    %name{newDefault} wxPGVIterator() %Overload;
    
    /* %name{newObject}  wxPGVIterator( wxPGVIteratorBase* obj ) %Overload; */
    
    %name{newCopy}    wxPGVIterator( const wxPGVIterator& it ) %Overload;
    
    %name{Destroy} ~wxPGVIterator();
    
    void UnRef();
    
    /* const wxPGVIterator& operator=( const wxPGVIterator& it ); */
    
    void Next();

    bool AtEnd();

    wxPGProperty__parsed_nodelete* GetProperty();

};


#endif