diff options
| author | oldmud0 <oldmud0@users.noreply.github.com> | 2021-05-29 10:43:53 -0500 |
|---|---|---|
| committer | oldmud0 <oldmud0@users.noreply.github.com> | 2021-05-29 10:43:53 -0500 |
| commit | a023657348051cbc7c8ea29e3b37f3e2e3fd16d8 (patch) | |
| tree | 2084980a9715c4de0bb32666aaa2154db5214eb3 /include | |
| parent | bddf6c67c2f6822f9f2b02b0c478bc0af71e1e8a (diff) | |
Partial: Add mount list to options dialog
Diffstat (limited to 'include')
| -rw-r--r-- | include/aoapplication.h | 1 | ||||
| -rw-r--r-- | include/aooptionsdialog.h | 11 |
2 files changed, 11 insertions, 1 deletions
diff --git a/include/aoapplication.h b/include/aoapplication.h index 9fa8c750..b0a87b53 100644 --- a/include/aoapplication.h +++ b/include/aoapplication.h @@ -130,7 +130,6 @@ public: // implementation in path_functions.cpp QString get_base_path(); - QString get_data_path(); QString get_theme_path(QString p_file, QString p_theme=""); QString get_character_path(QString p_char, QString p_file); QString get_misc_path(QString p_misc, QString p_file); diff --git a/include/aooptionsdialog.h b/include/aooptionsdialog.h index e88ce542..62ce2f7b 100644 --- a/include/aooptionsdialog.h +++ b/include/aooptionsdialog.h @@ -23,6 +23,7 @@ #include <QtWidgets/QWidget> #include <QDirIterator> +#include <QListWidget> #include <QTextStream> class Lobby; @@ -170,6 +171,16 @@ private: QLabel *ui_log_lbl; QCheckBox *ui_log_cb; + QWidget *ui_assets_tab; + QVBoxLayout *ui_assets_tab_layout; + QGridLayout *ui_mount_buttons_layout; + QLabel *ui_asset_lbl; + QListWidget *ui_mount_list; + QPushButton *ui_mount_add; + QPushButton *ui_mount_remove; + QPushButton *ui_mount_up; + QPushButton *ui_mount_down; + bool needs_default_audiodev(); void update_values(); |
