Audacity 3.2.0
HtmlWindow.h
Go to the documentation of this file.
1/**********************************************************************
2
3 Audacity: A Digital Audio Editor
4
5 HtmlWindow.cpp
6
7 Leland Lucius
8
9*******************************************************************//*******************************************************************//**********************************************************************/
22
23#ifndef __AUDACITY_WIDGETS_HtmlWindow__
24#define __AUDACITY_WIDGETS_HtmlWindow__
25
26
27
28#include <wx/setup.h> // for wxUSE_* macros
29#include <wx/defs.h>
30#include <wx/html/htmlwin.h> // to inherit
31
35
36class WX_INIT_API HtmlWindow /* not final */ : public wxHtmlWindow
37{
38public:
39 HtmlWindow(wxWindow *parent,
40 wxWindowID id = wxID_ANY,
41 const wxPoint& pos = wxDefaultPosition,
42 const wxSize& size = wxDefaultSize,
43 long style = wxHW_DEFAULT_STYLE,
44 const wxString& name = wxT("htmlWindow"));
45 virtual ~HtmlWindow();
46};
47
48#endif
wxT("CloseDown"))
const TranslatableString name
Definition: Distortion.cpp:76
HtmlWindow Class.
Definition: HtmlWindow.h:37