Add libwx-perl
[pkg-perl] / deb-src / libwx-perl / libwx-perl-0.96 / cpp / panel.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name:        cpp/panel.h
3 // Purpose:     c++ wrapper for wxPanel
4 // Author:      Mattia Barbon
5 // Modified by:
6 // Created:     29/10/2000
7 // RCS-ID:      $Id: panel.h 2057 2007-06-18 23:03:00Z mbarbon $
8 // Copyright:   (c) 2000-2001, 2004 Mattia Barbon
9 // Licence:     This program is free software; you can redistribute it and/or
10 //              modify it under the same terms as Perl itself
11 /////////////////////////////////////////////////////////////////////////////
12
13 class wxPliPanel:public wxPanel
14 {
15     WXPLI_DECLARE_DYNAMIC_CLASS( wxPliPanel );
16     WXPLI_DECLARE_V_CBACK();
17 public:
18     WXPLI_DEFAULT_CONSTRUCTOR( wxPliPanel, "Wx::Panel", true );
19     WXPLI_CONSTRUCTOR_6( wxPliPanel, "Wx::Panel", true,
20                          wxWindow*, wxWindowID, const wxPoint&,
21                          const wxSize&, long, const wxString& );
22
23     DEC_V_CBACK_BOOL__VOID( TransferDataFromWindow );
24     DEC_V_CBACK_BOOL__VOID( TransferDataToWindow );
25     DEC_V_CBACK_BOOL__VOID( Validate );
26 };
27
28 DEF_V_CBACK_BOOL__VOID( wxPliPanel, wxPanel, TransferDataFromWindow );
29 DEF_V_CBACK_BOOL__VOID( wxPliPanel, wxPanel, TransferDataToWindow );
30 DEF_V_CBACK_BOOL__VOID( wxPliPanel, wxPanel, Validate );
31
32 WXPLI_IMPLEMENT_DYNAMIC_CLASS( wxPliPanel, wxPanel );
33
34 // Local variables: //
35 // mode: c++ //
36 // End: //