Add libwx-perl
[pkg-perl] / deb-src / libwx-perl / libwx-perl-0.96 / XS / ProgressDialog.xs
1 #############################################################################
2 ## Name:        XS/ProgressDialog.xs
3 ## Purpose:     XS for Wx::ProgressDialog
4 ## Author:      Mattia Barbon
5 ## Modified by:
6 ## Created:     29/12/2000
7 ## RCS-ID:      $Id: ProgressDialog.xs 2057 2007-06-18 23:03:00Z mbarbon $
8 ## Copyright:   (c) 2000-2002, 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 #include <wx/progdlg.h>
14
15 MODULE=Wx PACKAGE=Wx::ProgressDialog
16
17 wxProgressDialog*
18 wxProgressDialog::new( title, message, maximum = 100, parent = 0, style = wxPD_AUTO_HIDE|wxPD_APP_MODAL )
19     wxString title
20     wxString message
21     int maximum
22     wxWindow* parent
23     long style
24   CODE:
25     RETVAL = new wxProgressDialog( title, message, maximum, parent, style );
26   OUTPUT:
27     RETVAL
28
29 bool
30 wxProgressDialog::Update( value = -1, newmsg = wxEmptyString )
31     int value
32     wxString newmsg
33
34 void
35 wxProgressDialog::Resume()