Add libwx-perl
[pkg-perl] / deb-src / libwx-perl / libwx-perl-0.96 / XS / StaticLine.xs
1 #############################################################################
2 ## Name:        XS/StaticLine.xs
3 ## Purpose:     XS for Wx::StaticLine
4 ## Author:      Mattia Barbon
5 ## Modified by:
6 ## Created:     10/11/2000
7 ## RCS-ID:      $Id: StaticLine.xs 2057 2007-06-18 23:03:00Z mbarbon $
8 ## Copyright:   (c) 2000-2003, 2006 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 MODULE=Wx PACKAGE=Wx::StaticLine
14
15 #include <wx/statline.h>
16
17 wxStaticLine*
18 wxStaticLine::new( parent, id = wxID_ANY, pos = wxDefaultPosition, size = wxDefaultSize, style = wxLI_HORIZONTAL, name = wxStaticTextNameStr )
19     wxWindow* parent
20     wxWindowID id
21     wxPoint pos
22     wxSize size
23     long style
24     wxString name
25   CODE:
26     RETVAL = new wxStaticLine( parent, id, pos, size, style, name );
27     wxPli_create_evthandler( aTHX_ RETVAL, CLASS );
28   OUTPUT:
29     RETVAL
30
31 bool
32 wxStaticLine::Create( parent, id = wxID_ANY, pos = wxDefaultPosition, size = wxDefaultSize, style = wxLI_HORIZONTAL, name = wxStaticTextNameStr )
33     wxWindow* parent
34     wxWindowID id
35     wxPoint pos
36     wxSize size
37     long style
38     wxString name
39
40 bool
41 wxStaticLine::IsVertical()
42
43 int
44 wxStaticLine::GetDefaultSize()