]>
git.saurik.com Git - wxWidgets.git/blob - contrib/src/applet/plugin.cpp
1 /****************************************************************************
3 * wxWindows HTML Applet Package
5 * Copyright (C) 1991-2001 SciTech Software, Inc.
8 * ========================================================================
10 * The contents of this file are subject to the wxWindows License
11 * Version 3.0 (the "License"); you may not use this file except in
12 * compliance with the License. You may obtain a copy of the License at
13 * http://www.wxwindows.org/licence3.txt
15 * Software distributed under the License is distributed on an
16 * "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
17 * implied. See the License for the specific language governing
18 * rights and limitations under the License.
20 * ========================================================================
25 * Description: Main wxPlugIn class implementation
27 ****************************************************************************/
29 // Include private headers
30 #include "wx/applet/plugin.h"
31 #include "wx/applet/window.h"
33 /*------------------------- Implementation --------------------------------*/
35 // Implement the abstract class functions
36 IMPLEMENT_ABSTRACT_CLASS(wxPlugIn
, wxEvtHandler
);
38 /****************************************************************************
40 Psuedo virtual constructor for the wxPlugIn class.
41 ****************************************************************************/
42 bool wxPlugIn::Create(
43 wxHtmlAppletWindow
*parent
)
49 /****************************************************************************
51 Destructor for the wxPlugIn class.
52 ****************************************************************************/
57 /****************************************************************************
59 Destructor for the wxPlugIn class.
60 ****************************************************************************/
62 const wxString
& WXUNUSED(cmdLine
))