Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

62 lines
1.5 KiB

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#ifndef DMESOURCESKINPANEL_H
#define DMESOURCESKINPANEL_H
#ifdef _WIN32
#pragma once
#endif
#include "vgui_controls/EditablePanel.h"
#include "datamodel/dmehandle.h"
//-----------------------------------------------------------------------------
// Forward declarations
//-----------------------------------------------------------------------------
namespace vgui
{
class TextEntry;
class CheckButton;
}
class CDmeSourceSkin;
//-----------------------------------------------------------------------------
// Purpose: Asset builder
//-----------------------------------------------------------------------------
class CDmeSourceSkinPanel : public vgui::EditablePanel
{
DECLARE_CLASS_SIMPLE( CDmeSourceSkinPanel, EditablePanel );
public:
CDmeSourceSkinPanel( vgui::Panel *pParent, const char *pPanelName );
virtual ~CDmeSourceSkinPanel();
void SetDmeElement( CDmeSourceSkin *pSourceSkin );
/*
messages sent:
"DmeElementChanged" The element has been changed
*/
private:
MESSAGE_FUNC_PARAMS( OnTextChanged, "TextChanged", kv );
MESSAGE_FUNC_INT( OnCheckButtonChecked, "CheckButtonChecked", state );
// Marks the file as dirty
void SetDirty( );
vgui::TextEntry *m_pSkinName;
vgui::TextEntry *m_pScale;
vgui::CheckButton *m_pFlipTriangles;
CDmeHandle< CDmeSourceSkin > m_hSourceSkin;
};
#endif // DMESOURCESKINPANEL_H