summaryrefslogtreecommitdiff
path: root/vgui2/matsys_controls/assetpicker.cpp
diff options
context:
space:
mode:
authorFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
committerFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
commit3bf9df6b2785fa6d951086978a3e66f49427166a (patch)
tree2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /vgui2/matsys_controls/assetpicker.cpp
downloadarchived-source-engine-2018-hl2-src-master.tar.xz
archived-source-engine-2018-hl2-src-master.zip
Diffstat (limited to 'vgui2/matsys_controls/assetpicker.cpp')
-rw-r--r--vgui2/matsys_controls/assetpicker.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/vgui2/matsys_controls/assetpicker.cpp b/vgui2/matsys_controls/assetpicker.cpp
new file mode 100644
index 0000000..4d30b7f
--- /dev/null
+++ b/vgui2/matsys_controls/assetpicker.cpp
@@ -0,0 +1,47 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+//=============================================================================
+
+#include "matsys_controls/assetpicker.h"
+
+
+using namespace vgui;
+
+
+//-----------------------------------------------------------------------------
+//
+// Asset Picker with no preview
+//
+//-----------------------------------------------------------------------------
+
+
+//-----------------------------------------------------------------------------
+// Purpose: Constructor
+//-----------------------------------------------------------------------------
+CAssetPicker::CAssetPicker( vgui::Panel *pParent, const char *pAssetType,
+ const char *pExt, const char *pSubDir, const char *pTextType ) :
+ BaseClass( pParent, pAssetType, pExt, pSubDir, pTextType )
+{
+ CreateStandardControls( this );
+ LoadControlSettingsAndUserConfig( "resource/assetpicker.res" );
+}
+
+
+//-----------------------------------------------------------------------------
+//
+// Purpose: Modal picker frame
+//
+//-----------------------------------------------------------------------------
+CAssetPickerFrame::CAssetPickerFrame( vgui::Panel *pParent, const char *pTitle,
+ const char *pAssetType, const char *pExt, const char *pSubDir, const char *pTextType ) :
+ BaseClass( pParent )
+{
+ SetAssetPicker( new CAssetPicker( this, pAssetType, pExt, pSubDir, pTextType ) );
+ LoadControlSettingsAndUserConfig( "resource/assetpickerframe.res" );
+ SetTitle( pTitle, false );
+}
+
+
+