Add libwx-perl
[pkg-perl] / deb-src / libwx-perl / libwx-perl-0.96 / ext / print / XS / PageSetupDialog.xs
diff --git a/deb-src/libwx-perl/libwx-perl-0.96/ext/print/XS/PageSetupDialog.xs b/deb-src/libwx-perl/libwx-perl-0.96/ext/print/XS/PageSetupDialog.xs
new file mode 100755 (executable)
index 0000000..1567936
--- /dev/null
@@ -0,0 +1,33 @@
+#############################################################################
+## Name:        ext/print/XS/PageSetupDialog.xs
+## Purpose:     XS for Wx::PageSetupDialog
+## Author:      Mattia Barbon
+## Modified by:
+## Created:     04/05/2001
+## RCS-ID:      $Id: PageSetupDialog.xs 2057 2007-06-18 23:03:00Z mbarbon $
+## Copyright:   (c) 2001, 2004 Mattia Barbon
+## Licence:     This program is free software; you can redistribute it and/or
+##              modify it under the same terms as Perl itself
+#############################################################################
+
+#include <wx/printdlg.h>
+
+MODULE=Wx PACKAGE=Wx::PageSetupDialog
+
+wxPageSetupDialog*
+wxPageSetupDialog::new( parent, data = 0 )
+    wxWindow* parent
+    wxPageSetupDialogData* data
+
+void
+wxPageSetupDialog::Destroy()
+  CODE:
+    delete THIS;
+
+wxPageSetupDialogData*
+wxPageSetupDialog::GetPageSetupData()
+  CODE:
+    RETVAL = &THIS->GetPageSetupData();
+  OUTPUT:
+    RETVAL
+