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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
/************************************************************************
*
* Copyright (C) 2009-2023 IRCAD France
* Copyright (C) 2012-2019 IHU Strasbourg
*
* This file is part of Sight.
*
* Sight is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Sight is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Sight. If not, see <https://www.gnu.org/licenses/>.
*
***********************************************************************/
#include "ui/__/dialog/location_base.hpp"
#include <core/location/single_file.hpp>
#include <core/location/single_folder.hpp>
#include <data/string.hpp>
#include <service/base.hpp>
#include <service/registry.hpp>
#include <ui/__/preferences.hpp>
#include <boost/algorithm/string.hpp>
namespace sight::ui::dialog
{
const location_base::factory_registry_key_t location_base::REGISTRY_KEY = "::ui::dialog::location";
const std::string location_base::SOFTWARE_UI = "SOFTWARE_UI";
const std::string location_base::DLG_DEFAULT_FILE = "DLG_DEFAULT_FILE";
const std::string location_base::DLG_DEFAULT_DIRECTORY = "DLG_DEFAULT_DIRECTORY";
//------------------------------------------------------------------------------
inline static std::string get_frame_key(const std::string& _title)
{
return std::string(location_base::SOFTWARE_UI) + "." + _title;
}
//------------------------------------------------------------------------------
inline static std::string get_file_key(const std::string& _title)
{
return get_frame_key(_title) + "." + location_base::DLG_DEFAULT_FILE;
}
//------------------------------------------------------------------------------
inline static std::string get_directory_key(const std::string& _title)
{
return get_frame_key(_title) + "." + location_base::DLG_DEFAULT_DIRECTORY;
}
//-----------------------------------------------------------------------------
location_base::location_base()
= default;
//-----------------------------------------------------------------------------
location_base::~location_base()
= default;
//------------------------------------------------------------------------------
void location_base::set_title(const std::string& _title)
{
m_title = _title;
}
//------------------------------------------------------------------------------
const std::string& location_base::get_title()
{
return m_title;
}
//------------------------------------------------------------------------------
void location_base::set_default_location(core::location::base::sptr _loc)
{
m_default_locaction = _loc;
}
//------------------------------------------------------------------------------
core::location::base::sptr location_base::get_default_location()
{
core::location::base::sptr location;
try
{
ui::preferences preferences;
if(const auto& default_file = preferences.get_optional<std::filesystem::path>(get_file_key(get_title()));
default_file)
{
auto single_file = std::make_shared<core::location::single_file>();
single_file->set_file(*default_file);
location = single_file;
}
else if(const auto& default_directory =
preferences.get_optional<std::filesystem::path>(get_directory_key(get_title())); default_directory)
{
auto single_directory = std::make_shared<core::location::single_folder>();
single_directory->set_folder(*default_directory);
location = single_directory;
}
}
catch(const ui::preferences_disabled&)
{
// Nothing to do..
}
if(!location)
{
location = m_default_locaction;
}
return location;
}
//-----------------------------------------------------------------------------
void location_base::save_default_location(core::location::base::sptr _loc)
{
if(_loc)
{
try
{
ui::preferences preferences;
if(auto single_file = std::dynamic_pointer_cast<core::location::single_file>(_loc))
{
preferences.put(get_file_key(get_title()), single_file->get_file());
}
else if(auto single_directory = std::dynamic_pointer_cast<core::location::single_folder>(_loc))
{
preferences.put(get_directory_key(get_title()), single_directory->get_folder());
}
}
catch(const ui::preferences_disabled&)
{
// Nothing to do..
}
}
}
//------------------------------------------------------------------------------
std::vector<std::string> location_base::get_selected_extensions() const
{
// Get the current selection, remove all "*" characters
const std::string& selection = boost::replace_all_copy(get_current_selection(), "*", "");
// Split the selection into a vector of extensions
std::vector<std::string> extensions;
boost::split(
extensions,
selection,
boost::is_any_of(" "),
boost::token_compress_on
);
return extensions;
}
//-----------------------------------------------------------------------------
} // namespace sight::ui::dialog
|