mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-11 18:34:58 +01:00
Implementation of Main pannel selection of sessions from recent history
AND from folder listing. Re-implementation in C++17 style of SystemToolkit.
This commit is contained in:
@@ -64,6 +64,7 @@ struct History
|
||||
bool save_on_exit;
|
||||
|
||||
History() {
|
||||
path = "Recent Files";
|
||||
load_at_start = false;
|
||||
save_on_exit = false;
|
||||
}
|
||||
@@ -98,6 +99,7 @@ struct Application
|
||||
float scale;
|
||||
int accent_color;
|
||||
bool pannel_stick;
|
||||
bool smooth_transition;
|
||||
|
||||
// Settings of widgets
|
||||
WidgetsConfig widget;
|
||||
@@ -116,12 +118,14 @@ struct Application
|
||||
|
||||
// recent files histories
|
||||
History recentSessions;
|
||||
History recentFolders;
|
||||
History recentImport;
|
||||
|
||||
Application() : name(APP_NAME){
|
||||
scale = 1.f;
|
||||
accent_color = 0;
|
||||
pannel_stick = false;
|
||||
smooth_transition = true;
|
||||
|
||||
current_view = 1;
|
||||
render_view_ar = 3;
|
||||
|
||||
Reference in New Issue
Block a user