Add libwx-perl
[pkg-perl] / deb-src / libwx-perl / libwx-perl-0.96 / ext / html / XS / HtmlHelpController.xs
1 #############################################################################
2 ## Name:        ext/html/XS/HtmlHelpController.xs
3 ## Purpose:     XS for Wx::HtmlHelpController
4 ## Author:      Mattia Barbon
5 ## Modified by:
6 ## Created:     21/03/2001
7 ## RCS-ID:      $Id: HtmlHelpController.xs 2057 2007-06-18 23:03:00Z mbarbon $
8 ## Copyright:   (c) 2001, 2003-2004, 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 #include <wx/html/helpctrl.h>
14
15 #if defined(__WXMSW__)
16 #if wxPERL_USE_BESTHELP
17
18 #include <wx/msw/helpbest.h>
19 #undef THIS
20
21 MODULE=Wx PACKAGE=Wx::BestHelpController
22
23 #if WXPERL_W_VERSION_GE( 2, 7, 2 )
24
25 wxBestHelpController*
26 wxBestHelpController::new( parent = NULL, style = wxHF_DEFAULT_STYLE )
27     wxWindow* parent
28     int style
29
30 #else
31
32 wxBestHelpController*
33 wxBestHelpController::new()
34
35 #endif
36
37 #endif
38 #endif
39
40 MODULE=Wx PACKAGE=Wx::HtmlHelpController
41
42 wxHtmlHelpController*
43 wxHtmlHelpController::new( style = wxHF_DEFAULTSTYLE )
44     long style
45   CODE:
46     RETVAL = new wxHtmlHelpController( style );
47   OUTPUT:
48     RETVAL
49
50 bool
51 wxHtmlHelpController::AddBook( book, show_wait )
52      wxString book
53      bool show_wait
54
55 void
56 wxHtmlHelpController::Display( x )
57     wxString x
58
59 void
60 wxHtmlHelpController::DisplayId( id )
61     int id
62   CODE:
63     THIS->Display( id );
64
65 void
66 wxHtmlHelpController::DisplayContents()
67
68 void
69 wxHtmlHelpController::DisplayIndex()
70
71 bool
72 wxHtmlHelpController::KeywordSearch( keyword )
73     wxString keyword
74
75 void
76 wxHtmlHelpController::ReadCustomization( cfg, path = wxEmptyString )
77      wxConfigBase* cfg
78      wxString path
79
80 void
81 wxHtmlHelpController::SetTempDir( path )
82     wxString path
83
84 void
85 wxHtmlHelpController::SetTitleFormat( format )
86     wxString format
87
88 void
89 wxHtmlHelpController::UseConfig( config, path = wxEmptyString )
90     wxConfigBase* config
91     wxString path
92
93 void
94 wxHtmlHelpController::WriteCustomization( cfg, path = wxEmptyString )
95      wxConfigBase* cfg
96      wxString path
97
98