Files
GDevelop/IDE/Dialogs/HtmlViewerPnl.cpp
T
Florian 82cd337c9c Deactivated Welcome screen.
Updated StartHere page.
Added "Add an external layout" button to ProjectManager.
Minor changes.

git-svn-id: svn://localhost@803 8062f311-0dae-4547-b526-b8ab9ac864a5
2012-08-07 17:44:28 +00:00

42 lines
1.1 KiB
C++

#if defined(DEACTIVATED)
#include "HtmlViewerPnl.h"
//(*InternalHeaders(HtmlViewerPnl)
#include <wx/intl.h>
#include <wx/string.h>
//*)
//(*IdInit(HtmlViewerPnl)
const long HtmlViewerPnl::ID_CUSTOM1 = wxNewId();
//*)
BEGIN_EVENT_TABLE(HtmlViewerPnl,wxPanel)
//(*EventTable(HtmlViewerPnl)
//*)
END_EVENT_TABLE()
HtmlViewerPnl::HtmlViewerPnl(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& size)
{
//(*Initialize(HtmlViewerPnl)
wxFlexGridSizer* FlexGridSizer1;
Create(parent, id, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL, _T("id"));
FlexGridSizer1 = new wxFlexGridSizer(0, 3, 0, 0);
FlexGridSizer1->AddGrowableCol(0);
FlexGridSizer1->AddGrowableRow(0);
Custom1 = wxWebView::New(this,ID_CUSTOM1,"www.wiki.compilgames.net",wxDefaultPosition,wxSize(278,334));
FlexGridSizer1->Add(Custom1, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 0);
SetSizer(FlexGridSizer1);
FlexGridSizer1->Fit(this);
FlexGridSizer1->SetSizeHints(this);
//*)
}
HtmlViewerPnl::~HtmlViewerPnl()
{
//(*Destroy(HtmlViewerPnl)
//*)
}
#endif