1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#ifndef DIRECTORYSELECTDIALOG_H
#define DIRECTORYSELECTDIALOG_H
#ifdef _WIN32
#pragma once
#endif
#include <vgui_controls/Controls.h>
#include <vgui_controls/TreeView.h>
#include <vgui_controls/Frame.h>
namespace vgui
{
//-----------------------------------------------------------------------------
// Purpose: Used to handle dynamically populating the tree view
//-----------------------------------------------------------------------------
class DirectoryTreeView : public TreeView
{
public:
DirectoryTreeView(DirectorySelectDialog *parent, const char *name);
virtual void GenerateChildrenOfNode(int itemIndex);
private:
DirectorySelectDialog *m_pParent;
};
//-----------------------------------------------------------------------------
// Purpose: Utility dialog, used to let user select a directory (like during install)
//-----------------------------------------------------------------------------
class DirectorySelectDialog : public Frame
{
DECLARE_CLASS_SIMPLE( DirectorySelectDialog, Frame );
public:
DirectorySelectDialog(vgui::Panel *parent, const char *title);
// sets where it should start searching
void SetStartDirectory(const char *path);
// sets what name should show up by default in the create directory dialog
void SetDefaultCreateDirectoryName(const char *defaultCreateDirName);
// opens the dialog
void DoModal();
/* action signals
"DirectorySelected"
"dir" - the directory that was selected
*/
// Expand the tree nodes to match a supplied path, optionally selecting the final directory
void ExpandTreeToPath( const char *lpszPath, bool bSelectFinalDirectory = true );
protected:
virtual void PerformLayout();
virtual void ApplySchemeSettings(IScheme *pScheme);
virtual void OnClose();
// command buttons
virtual void OnCommand(const char *command);
private:
MESSAGE_FUNC( OnTextChanged, "TextChanged" );
MESSAGE_FUNC( OnTreeViewItemSelected, "TreeViewItemSelected" );
MESSAGE_FUNC_CHARPTR( OnCreateDirectory, "CreateDirectory", dir );
void BuildDirTree();
void BuildDriveChoices();
void ExpandTreeNode(const char *path, int parentNodeIndex);
void GenerateChildrenOfDirectoryNode(int nodeIndex);
void GenerateFullPathForNode(int nodeIndex, char *path, int pathBufferSize);
bool DoesDirectoryHaveSubdirectories(const char *path, const char *dir);
char m_szCurrentDir[512];
char m_szDefaultCreateDirName[64];
char m_szCurrentDrive[16];
vgui::TreeView *m_pDirTree;
vgui::ComboBox *m_pDriveCombo;
vgui::Button *m_pCancelButton;
vgui::Button *m_pSelectButton;
vgui::Button *m_pCreateButton;
friend class DirectoryTreeView;
};
} // namespace vgui
#endif // DIRECTORYSELECTDIALOG_H
|