mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-24 03:54:34 -04:00
8844642ae0
Added doxygen files. Cleaned some files.
51 lines
971 B
C++
51 lines
971 B
C++
#ifndef BUILDTOOLSPNL_H
|
|
#define BUILDTOOLSPNL_H
|
|
|
|
//(*Headers(BuildToolsPnl)
|
|
#include <wx/notebook.h>
|
|
#include <wx/sizer.h>
|
|
#include <wx/panel.h>
|
|
//*)
|
|
class ProjectManager;
|
|
class BuildProgressPnl;
|
|
class BuildMessagesPnl;
|
|
|
|
/**
|
|
* \brief Designed to handheld all GUI related to code compilation.
|
|
* Automatically create its child and associate it if necessary with the needed classes (CodeCompiler)
|
|
*
|
|
* \see CodeCompiler
|
|
* \see BuildProgressPnl
|
|
* \see BuildMessagesPnl
|
|
*/
|
|
class BuildToolsPnl: public wxPanel
|
|
{
|
|
public:
|
|
|
|
BuildToolsPnl(wxWindow* parent, ProjectManager * projectManager);
|
|
virtual ~BuildToolsPnl();
|
|
|
|
//(*Declarations(BuildToolsPnl)
|
|
wxNotebook* notebook;
|
|
//*)
|
|
|
|
BuildProgressPnl * buildProgressPnl;
|
|
BuildMessagesPnl * buildMessagesPnl;
|
|
|
|
protected:
|
|
|
|
//(*Identifiers(BuildToolsPnl)
|
|
static const long ID_NOTEBOOK1;
|
|
//*)
|
|
|
|
private:
|
|
|
|
//(*Handlers(BuildToolsPnl)
|
|
//*)
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
#endif
|
|
|