Files
textmate/Frameworks/document/src/collection.cc
2013-05-12 11:09:16 +07:00

52 lines
1.2 KiB
C++

#include "collection.h"
#include <OakSystem/application.h>
#include <plist/plist.h>
#include <regexp/format_string.h>
#include <text/format.h>
#include <io/path.h>
OAK_DEBUG_VAR(Document_Collection);
namespace document
{
ui_proxy_t*& ui_proxy ();
oak::uuid_t const kCollectionAny = oak::uuid_t().generate();
void show (document_ptr document, oak::uuid_t const& collection, text::range_t const& selection, bool bringToFront)
{
ui_proxy()->show_document(collection, document, selection, bringToFront);
}
void show (std::vector<document_ptr> const& documents)
{
if(!documents.empty())
ui_proxy()->show_documents(documents);
}
void show_browser (std::string const& path)
{
ui_proxy()->show_browser(path);
}
void run (bundle_command_t const& command, ng::buffer_t const& buffer, ng::ranges_t const& selection, document::document_ptr document, std::map<std::string, std::string> const& env, std::string const& pwd)
{
ui_proxy()->run(command, buffer, selection, document, env, pwd);
}
// ============
// = UI Proxy =
// ============
ui_proxy_t*& ui_proxy ()
{
static ui_proxy_t* proxy = NULL;
return proxy;
}
void set_ui_proxy (ui_proxy_t* proxy)
{
ui_proxy() = proxy;
}
} /* document */