* |REMOVAL OR MODIFICATION OF THIS HEADER IS STRICTLY PROHIBITED BY LAW|
* ======================================================================
*
* |REMOVAL OR MODIFICATION OF THIS HEADER IS STRICTLY PROHIBITED BY LAW|
* ======================================================================
*
Constructor for the applet window class.
****************************************************************************/
wxHtmlAppletWindow::wxHtmlAppletWindow(
Constructor for the applet window class.
****************************************************************************/
wxHtmlAppletWindow::wxHtmlAppletWindow(
- wxWindow *parent,
- wxWindowID id,
- const wxPoint& pos,
- const wxSize& size,
- long style,
- const wxString& name)
- : wxHtmlWindow(parent,id,pos,size,style,name)
+ wxWindow *parent,
+ wxWindowID id,
+ const wxPoint& pos,
+ const wxSize& size,
+ long style,
+ const wxString& name)
+ : wxHtmlWindow(parent,id,pos,size,style,name)
-className - Name of the applet class to create an object for
-size - Initial size of the applet to be created
+className - Name of the applet class to create an object for
+size - Initial size of the applet to be created
HTML page.
****************************************************************************/
wxApplet *wxHtmlAppletWindow::CreateApplet(
HTML page.
****************************************************************************/
wxApplet *wxHtmlAppletWindow::CreateApplet(
- // We presently only allow one applet per page of the same class!
- if (m_AppletList.Find(className))
- return NULL;
+ // We presently only allow one applet per page of the same class!
+ if (m_AppletList.Find(className))
+ return NULL;
- // Dynamically create the class instance at runtime
- wxClassInfo *info = wxClassInfo::FindClass(className.c_str());
+ // Dynamically create the class instance at runtime
+ wxClassInfo *info = wxClassInfo::FindClass(className.c_str());
- if (!applet)
- return NULL;
- if (!applet->Create(this,size)) {
- delete applet;
- return NULL;
- }
- m_AppletList.Append(className,applet);
- return applet;
+ if (!applet)
+ return NULL;
+ if (!applet->Create(this,size)) {
+ delete applet;
+ return NULL;
+ }
+ m_AppletList.Append(className,applet);
+ return applet;
Find an instance of an applet based on it's name
****************************************************************************/
wxApplet *wxHtmlAppletWindow::FindApplet(
Find an instance of an applet based on it's name
****************************************************************************/
wxApplet *wxHtmlAppletWindow::FindApplet(
Remove an applet from the manager. Called during applet destruction
****************************************************************************/
bool wxHtmlAppletWindow::RemoveApplet(
Remove an applet from the manager. Called during applet destruction
****************************************************************************/
bool wxHtmlAppletWindow::RemoveApplet(
- for (wxAppletList::Node *node = m_AppletList.GetFirst(); node; node = node->GetNext()) {
- if (node->GetData() == applet) {
- m_AppletList.DeleteNode(node);
- return true;
- }
- }
- return false;
-}
+ for (wxAppletList::Node *node = m_AppletList.GetFirst(); node; node = node->GetNext()) {
+ if (node->GetData() == applet) {
+ m_AppletList.DeleteNode(node);
+ return true;
+ }
+ }
+ return false;
+}
Remove an applet from the manager. Called during applet destruction
****************************************************************************/
bool wxHtmlAppletWindow::LoadPage(
Remove an applet from the manager. Called during applet destruction
****************************************************************************/
bool wxHtmlAppletWindow::LoadPage(
- for (wxAppletList::Node *node = m_AppletList.GetFirst(); node; node = node->GetNext())
- (node->GetData())->OnLinkClicked(hRef);
- return wxHtmlWindow::LoadPage(hRef);
+ for (wxAppletList::Node *node = m_AppletList.GetFirst(); node; node = node->GetNext())
+ (node->GetData())->OnLinkClicked(hRef);
+ return wxHtmlWindow::LoadPage(hRef);
REMARKS:
Called when the user navigates to a new URL from the current page. We simply
call the LoadPage function above to load the new page and display it.
****************************************************************************/
void wxHtmlAppletWindow::OnLinkClicked(
REMARKS:
Called when the user navigates to a new URL from the current page. We simply
call the LoadPage function above to load the new page and display it.
****************************************************************************/
void wxHtmlAppletWindow::OnLinkClicked(
- for (wxAppletList::Node *node = m_AppletList.GetFirst(); node; node = node->GetNext())
- (node->GetData())->OnLinkClicked(link);
- wxHtmlWindow::LoadPage(link.GetHref());
+ for (wxAppletList::Node *node = m_AppletList.GetFirst(); node; node = node->GetNext())
+ (node->GetData())->OnLinkClicked(link);
+ wxHtmlWindow::LoadPage(link.GetHref());
****************************************************************************/
bool wxHtmlAppletWindow::HistoryForward()
{
****************************************************************************/
bool wxHtmlAppletWindow::HistoryForward()
{
- if (!HistoryCanForward())
- return false;
- for (wxAppletList::Node *node = m_AppletList.GetFirst(); node; node = node->GetNext())
- (node->GetData())->OnHistoryForward();
- return wxHtmlWindow::HistoryForward();
+ if (!HistoryCanForward())
+ return false;
+ for (wxAppletList::Node *node = m_AppletList.GetFirst(); node; node = node->GetNext())
+ (node->GetData())->OnHistoryForward();
+ return wxHtmlWindow::HistoryForward();
****************************************************************************/
bool wxHtmlAppletWindow::HistoryBack()
{
****************************************************************************/
bool wxHtmlAppletWindow::HistoryBack()
{
- if (!HistoryCanBack())
- return false;
- for (wxAppletList::Node *node = m_AppletList.GetFirst(); node; node = node->GetNext())
- (node->GetData())->OnHistoryBack();
- return wxHtmlWindow::HistoryBack();
+ if (!HistoryCanBack())
+ return false;
+ for (wxAppletList::Node *node = m_AppletList.GetFirst(); node; node = node->GetNext())
+ (node->GetData())->OnHistoryBack();
+ return wxHtmlWindow::HistoryBack();
value (ie: by default it is true).
****************************************************************************/
void wxHtmlAppletWindow::SendMessage(
value (ie: by default it is true).
****************************************************************************/
void wxHtmlAppletWindow::SendMessage(
- wxEvent& msg)
-{
- // Preset the skip flag
- msg.Skip();
-
- // Process all applets in turn and send them the message
- for (wxAppletList::Node *node = m_AppletList.GetFirst(); node; node = node->GetNext()) {
- (node->GetData())->OnMessage(msg);
- if (!msg.GetSkipped())
- break;
- }
+ wxEvent& msg)
+{
+ // Preset the skip flag
+ msg.Skip();
+
+ // Process all applets in turn and send them the message
+ for (wxAppletList::Node *node = m_AppletList.GetFirst(); node; node = node->GetNext()) {
+ (node->GetData())->OnMessage(msg);
+ if (!msg.GetSkipped())
+ break;
+ }
was never actually destructed.
Note: If a cookie with the same name already exists, this function returns
was never actually destructed.
Note: If a cookie with the same name already exists, this function returns
- false. Hence if you wish to replace a cookie you should first call
- UnRegisterCookie to ensure the cookie is deleted and then call this
- function.
+ false. Hence if you wish to replace a cookie you should first call
+ UnRegisterCookie to ensure the cookie is deleted and then call this
+ function.
****************************************************************************/
bool wxHtmlAppletWindow::RegisterCookie(
****************************************************************************/
bool wxHtmlAppletWindow::RegisterCookie(
- // Fail if the named cookie already exists!
- if (m_Cookies.Get(name))
- return false;
- m_Cookies.Put(name,cookie);
- return true;
+ // Fail if the named cookie already exists!
+ if (m_Cookies.Get(name))
+ return false;
+ m_Cookies.Put(name,cookie);
+ return true;
cookie itself is also deleted before it is removed from the table.
****************************************************************************/
bool wxHtmlAppletWindow::UnRegisterCookie(
cookie itself is also deleted before it is removed from the table.
****************************************************************************/
bool wxHtmlAppletWindow::UnRegisterCookie(
returned.
****************************************************************************/
wxObject *wxHtmlAppletWindow::FindCookie(
returned.
****************************************************************************/
wxObject *wxHtmlAppletWindow::FindCookie(
- wxWindow *wnd;
- wxHtmlAppletWindow *appletWindow;
- wxApplet *applet;
- int width, height;
- int floatPercent = 0;
-
- wnd = m_WParser->GetWindow();
- if ((appletWindow = wxDynamicCast(wnd,wxHtmlAppletWindow)) != NULL) {
- tag.ScanParam("WIDTH", "%i", &width);
- tag.ScanParam("HEIGHT", "%i", &height);
- if (tag.HasParam("FLOAT"))
- tag.ScanParam("FLOAT", "%i", &floatPercent);
- if (tag.HasParam("APPLET")) {
- if ((applet = appletWindow->CreateApplet(tag.GetParam("APPLET"), wxSize(width, height))) != NULL) {
- applet->Show(true);
- m_WParser->OpenContainer()->InsertCell(new wxHtmlWidgetCell(applet,floatPercent));
- }
- }
- else if (tag.HasParam("TEXT")) {
- // TODO: Somehow get the text returned from this class displayed on the page!
- }
- }
- return false;
+ wxWindow *wnd;
+ wxHtmlAppletWindow *appletWindow;
+ wxApplet *applet;
+ int width, height;
+ int floatPercent = 0;
+
+ wnd = m_WParser->GetWindow();
+ if ((appletWindow = wxDynamicCast(wnd,wxHtmlAppletWindow)) != NULL) {
+ tag.ScanParam("WIDTH", "%i", &width);
+ tag.ScanParam("HEIGHT", "%i", &height);
+ if (tag.HasParam("FLOAT"))
+ tag.ScanParam("FLOAT", "%i", &floatPercent);
+ if (tag.HasParam("APPLET")) {
+ if ((applet = appletWindow->CreateApplet(tag.GetParam("APPLET"), wxSize(width, height))) != NULL) {
+ applet->Show(true);
+ m_WParser->OpenContainer()->InsertCell(new wxHtmlWidgetCell(applet,floatPercent));
+ }
+ }
+ else if (tag.HasParam("TEXT")) {
+ // TODO: Somehow get the text returned from this class displayed on the page!
+ }
+ }
+ return false;