summaryrefslogtreecommitdiff
path: root/src/lib/config.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-08-25 16:33:55 +0100
committerCarl Hetherington <cth@carlh.net>2014-08-25 16:33:55 +0100
commit7edf8e601ed2ede5b6758840fb9d8940393cf7e2 (patch)
treea3c5b068c226cd503219ba0bf6a02a4209dad6cd /src/lib/config.h
parent49e401f651ccf6c409fc84f57aa205f1920ef070 (diff)
Basic recent files list in the File menu.
Suggested-by: Carsten Kurz
Diffstat (limited to 'src/lib/config.h')
-rw-r--r--src/lib/config.h16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/lib/config.h b/src/lib/config.h
index 0ce6b8351..aa3c06356 100644
--- a/src/lib/config.h
+++ b/src/lib/config.h
@@ -208,7 +208,11 @@ public:
int log_types () const {
return _log_types;
}
-
+
+ std::vector<boost::filesystem::path> history () const {
+ return _history;
+ }
+
/** @param n New number of local encoding threads */
void set_num_local_encoding_threads (int n) {
_num_local_encoding_threads = n;
@@ -386,6 +390,13 @@ public:
_log_types = t;
changed ();
}
+
+ void clear_history () {
+ _history.clear ();
+ changed ();
+ }
+
+ void add_to_history (boost::filesystem::path p);
boost::filesystem::path signer_chain_directory () const;
@@ -453,7 +464,8 @@ private:
/** maximum allowed J2K bandwidth in bits per second */
int _maximum_j2k_bandwidth;
int _log_types;
-
+ std::vector<boost::filesystem::path> _history;
+
/** Singleton instance, or 0 */
static Config* _instance;
};