67 lines
2.2 KiB
C++
67 lines
2.2 KiB
C++
// This file is part of VSTGUI. It is subject to the license terms
|
|
// in the LICENSE file found in the top-level directory of this
|
|
// distribution and at http://github.com/steinbergmedia/vstgui/LICENSE
|
|
|
|
#pragma once
|
|
|
|
#include "../../uidescription/uidescriptionfwd.h"
|
|
#include "../../lib/optional.h"
|
|
#include "../include/ishareduiresources.h"
|
|
|
|
#if VSTGUI_LIVE_EDITING
|
|
#include <string>
|
|
#endif
|
|
|
|
//------------------------------------------------------------------------
|
|
namespace VSTGUI {
|
|
namespace Standalone {
|
|
namespace Detail {
|
|
|
|
//------------------------------------------------------------------------
|
|
const ISharedUIResources& getSharedUIResources ();
|
|
|
|
//------------------------------------------------------------------------
|
|
SharedPointer<UIDescription> getSharedUIDescription ();
|
|
|
|
//------------------------------------------------------------------------
|
|
void cleanupSharedUIResources ();
|
|
|
|
//------------------------------------------------------------------------
|
|
//------------------------------------------------------------------------
|
|
//------------------------------------------------------------------------
|
|
#if VSTGUI_LIVE_EDITING
|
|
void saveSharedUIDescription ();
|
|
|
|
//------------------------------------------------------------------------
|
|
struct IEditFileMap
|
|
{
|
|
virtual void set (const std::string& filename, const std::string& absolutePath) = 0;
|
|
virtual Optional<const char*> get (const std::string& filename) const = 0;
|
|
};
|
|
|
|
//------------------------------------------------------------------------
|
|
IEditFileMap& getEditFileMap ();
|
|
|
|
//------------------------------------------------------------------------
|
|
enum class UIDescCheckFilePathResult
|
|
{
|
|
Exists,
|
|
NewPathSet,
|
|
Cancel
|
|
};
|
|
|
|
//------------------------------------------------------------------------
|
|
UIDescCheckFilePathResult checkAndUpdateUIDescFilePath (
|
|
UIDescription& uiDesc, CFrame* _frame,
|
|
UTF8StringPtr notFoundText = "The uidesc file location cannot be found.");
|
|
|
|
//------------------------------------------------------------------------
|
|
bool initUIDescAsNew (UIDescription& uiDesc, CFrame* _frame);
|
|
|
|
#endif // VSTGUI_LIVE_EDITING
|
|
|
|
//------------------------------------------------------------------------
|
|
} // Detail
|
|
} // Standalone
|
|
} // VSTGUI
|