• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/applet/

Lines Matching defs:applet

30 #include "wx/applet/applet.h"
31 #include "wx/applet/window.h"
32 #include "wx/applet/loadpage.h"
33 #include "wx/applet/plugin.h"
36 #include "wx/applet/prepinclude.h"
37 #include "wx/applet/prepecho.h"
38 #include "wx/applet/prepifelse.h"
82 Constructor for the applet window class.
125 Destructor for the applet window class.
145 className - Name of the applet class to create an object for
146 size - Initial size of the applet to be created
149 Pointer to the wxApplet created, or NULL if unable to create the applet.
165 wxApplet *applet = wxDynamicCast(obj,wxApplet);
166 if (!applet)
168 if (!applet->Create(this,params,size)) {
169 delete applet;
174 wxSize nsize = applet->GetBestSize();
177 applet->SetSize(nsize);
180 m_AppletList.Append(iName,(wxObject*)applet);
181 return applet;
218 appletName - Name of the applet class to find
224 Find an instance of an applet based on it's name
237 applet - Pointer to the applet object to remove from the list
240 True if the applet was found and removed, false if not. The applet itself
244 Remove an applet from the manager. Called during applet destruction
247 const wxApplet *applet)
250 if (node->GetData() == applet) {
266 Remove an applet from the manager. Called during applet destruction
334 // This launches a qlet - It is like an applet but is more generic in that it
475 // named applet
493 of data in the applet window's cookie table. Cookies are arbitrary data
497 applet is created it would use the cookie to store data to maintain
499 is would be able to re-load the prior state as though the applet
527 cookie of data in the applet window's cookie table. The data in the
617 name - name of the last applet that changed the data in this object
662 wxApplet *applet;
672 // Parse the applet dimensions from the tag
684 // Parse the applet alignment from the tag
695 // Create the applet based on it's class
710 // We got all the params and can now create the applet
711 if ((applet = appletWindow->CreateApplet(classId, name, tag , size)) != NULL) {
712 applet->Show(true);
713 m_WParser->OpenContainer()->InsertCell(new wxHtmlAppletCell(applet,al));
776 Code to draw the html applet cell
799 Code to draw the html applet cell invisibly
820 Code to layout the html applet cell.