Files
GDevelop/IDE/Dialogs/HtmlViewerPnl.cpp
T
Florian 8672f179e9 Exchanged all french messages with their English counterparts.
Gui elements in SceneCanvas are now independant from the zoom factor.
Work in progress: NewProjectDialog.

git-svn-id: svn://localhost@837 8062f311-0dae-4547-b526-b8ab9ac864a5
2012-09-20 19:53:26 +00:00

43 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