TDME2 1.9.121
FileDialogScreenController.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <unordered_map>
5#include <vector>
6
7#include <tdme/tdme.h>
15
16using std::string;
17using std::unordered_map;
18using std::vector;
19
30
31/**
32 * File dialog screen controller
33 * @author Andreas Drewke
34 * @version $Id$
35 */
37 : public ScreenController
38 , public virtual GUIActionListener
39 , public virtual GUIChangeListener
40 , public virtual GUIFocusListener
41{
42
43private:
45 string cwd;
46 vector<string> extensions;
56 Action* applyAction { nullptr };
57 Action* cancelAction { nullptr };
58 vector<string> fileList;
61 vector<string> favorites;
62 vector<string> recents;
63 string defaultCwd;
64 unordered_map<string, string> defaultCwdByExtensions;
67
68private:
69
70 /**
71 * Set up files
72 * @return success
73 */
74 bool setupFiles();
75
76 /**
77 * Set up files
78 * @param fileNameList file name list
79 * @param selectedFileName selected file name
80 */
81 void setupFiles(const vector<string>& fileNameList, const string& selectedFileName = string());
82
83 /**
84 * Set up favorites
85 */
86 void setupFavorites();
87
88 /**
89 * Set up recent
90 */
91 void setupRecents();
92
93 /**
94 * Set up drives
95 */
96 void setupDrives();
97
98 /**
99 * @return extension hash
100 */
101 inline const string getExtensionHash() {
102 string extensionHash = "|";
103 for (auto& extension: extensions) extensionHash+= extension + "|";
104 if (extensions.empty() == true) extensionHash+= "|";
105 return extensionHash;
106 }
107
108public:
109 /**
110 * Public constructor
111 */
113
114 /**
115 * Destructor
116 */
118
119 // overridden methods
120 GUIScreenNode* getScreenNode() override;
121
122 /**
123 * @return default current working directory
124 */
125 inline const string& getDefaultCWD() {
126 return defaultCwd;
127 }
128
129 /**
130 * Set default current working directory
131 * @param defaultCWD default current working directory
132 */
133 void setDefaultCWD(const string& defaultCwd);
134
135 /**
136 * @return path name
137 */
138 const string& getPathName();
139
140 /**
141 * @return file name
142 */
143 const string getFileName();
144
145 /**
146 * Shows the file dialog pop up
147 * @param cwd current working directory
148 * @param captionText caption text
149 * @param extensions extensions
150 * @param fileName file name
151 * @param enableFilter enable filter
152 * @param applyAction apply action
153 * @param cancelAction cancel action
154 * @param settingsFileName settings file name
155 * @param settingsPathName settings path name
156 * @throws IOException
157 */
158 void show(const string& cwd, const string& captionText, const vector<string>& extensions, const string& fileName, bool enableFilter, Action* applyAction, Action* cancelAction = nullptr, const string& settingsFileName = ".filedialog.properties", const string& settingsPathName = string());
159
160 /**
161 * Abort the file dialog pop up
162 */
163 void close();
164
165 // overridden methods
166 void initialize() override;
167 void dispose() override;
168 void onValueChanged(GUIElementNode* node) override;
169 void onActionPerformed(GUIActionListenerType type, GUIElementNode* node) override;
170 void onFocus(GUIElementNode* node) override;
171 void onUnfocus(GUIElementNode* node) override;
172
173 /**
174 * Load settings
175 */
176 void loadSettings();
177
178 /**
179 * Save settings
180 */
181 void saveSettings();
182
183 /**
184 * Get file image name
185 * @param fileName file name
186 * @return file image name
187 */
188 static const string getFileImageName(const string& fileName);
189
190};
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
void onValueChanged(GUIElementNode *node) override
On value changed.
void show(const string &cwd, const string &captionText, const vector< string > &extensions, const string &fileName, bool enableFilter, Action *applyAction, Action *cancelAction=nullptr, const string &settingsFileName=".filedialog.properties", const string &settingsPathName=string())
Shows the file dialog pop up.
void setDefaultCWD(const string &defaultCwd)
Set default current working directory.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
static const string getFileImageName(const string &fileName)
Get file image name.
Mutable string class.
Definition: MutableString.h:16
GUI action listener interface.
GUI change listener interface.
GUI focus listener interface.
Screen controller, which connects GUI screen definition with code.
Action Interface.
Definition: Action.h:12