mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-23 18:45:48 -04:00
64e6860718
Updated copyrights.
41 lines
1.2 KiB
C++
41 lines
1.2 KiB
C++
/**
|
|
|
|
GDevelop - Tile Map Extension
|
|
Copyright (c) 2014-2015 Victor Levasseur (victorlevasseur52@gmail.com)
|
|
This project is released under the MIT License.
|
|
*/
|
|
|
|
#ifndef TILESETCONFIGURATIONEDITOR_H
|
|
#define TILESETCONFIGURATIONEDITOR_H
|
|
#include "TileMapDialogs.h"
|
|
|
|
#include "TileSet.h"
|
|
|
|
class ResourcesEditor;
|
|
namespace gd {class MainFrameWrapper;}
|
|
|
|
class TileSetConfigurationEditor : public TileSetConfigurationEditorBase
|
|
{
|
|
public:
|
|
TileSetConfigurationEditor(wxWindow* parent, TileSet &tileSet_, gd::Project & game_, gd::MainFrameWrapper & mainFrameWrapper);
|
|
virtual ~TileSetConfigurationEditor();
|
|
|
|
private:
|
|
TileSet &tileSet; ///< Ref to the current TileMapObject tileset
|
|
gd::Project &game;
|
|
|
|
TileSet previewTileSet;
|
|
ResourcesEditor *resourcesEditorPnl;
|
|
|
|
void UpdatePreviewTileSetPanel();
|
|
|
|
protected:
|
|
virtual void OnHelpButtonClicked(wxHyperlinkEvent& event);
|
|
virtual void OnTileSetParameterUpdated(wxSpinEvent& event);
|
|
virtual void OnTileSetTextureUpdated(wxCommandEvent& event);
|
|
virtual void OnCancelButtonClicked(wxCommandEvent& event);
|
|
virtual void OnOkButtonClicked(wxCommandEvent& event);
|
|
virtual void OnSetTextureButtonClicked(wxCommandEvent& event);
|
|
};
|
|
#endif // TILESETCONFIGURATIONEDITOR_H
|