/********************************************************************** Audacity: A Digital Audio Editor HtmlWindow.cpp Leland Lucius *******************************************************************//** \file HtmlWindow.cpp Implements HtmlWindow *//*******************************************************************//** \class HtmlWindow \brief The widget to the left of a ToolBar that allows it to be dragged around to NEW positions. *//**********************************************************************/ #ifndef __AUDACITY_WIDGETS_HtmlWindow__ #define __AUDACITY_WIDGETS_HtmlWindow__ #include "../Audacity.h" #include // for wxUSE_* macros #include #include // to inherit //////////////////////////////////////////////////////////// /// HtmlWindow Class //////////////////////////////////////////////////////////// class AUDACITY_DLL_API HtmlWindow /* not final */ : public wxHtmlWindow { public: HtmlWindow(wxWindow *parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxHW_DEFAULT_STYLE, const wxString& name = wxT("htmlWindow")); virtual ~HtmlWindow(); }; #endif