mirror of
https://github.com/aseprite/aseprite.git
synced 2025-02-24 21:39:51 +00:00
41 lines
840 B
C++
41 lines
840 B
C++
// Aseprite
|
|
// Copyright (C) 2001-2015, 2017 David Capello
|
|
//
|
|
// This program is distributed under the terms of
|
|
// the End-User License Agreement for Aseprite.
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "app/launcher.h"
|
|
|
|
#include "app/i18n/strings.h"
|
|
#include "base/exception.h"
|
|
#include "base/launcher.h"
|
|
#include "fmt/format.h"
|
|
#include "ui/alert.h"
|
|
|
|
namespace app {
|
|
namespace launcher {
|
|
|
|
void open_url(const std::string& url)
|
|
{
|
|
open_file(url);
|
|
}
|
|
|
|
void open_file(const std::string& file)
|
|
{
|
|
if (!base::launcher::open_file(file))
|
|
ui::Alert::show(fmt::format(Strings::alerts_cannot_open_file(), file));
|
|
}
|
|
|
|
void open_folder(const std::string& file)
|
|
{
|
|
if (!base::launcher::open_folder(file))
|
|
ui::Alert::show(fmt::format(Strings::alerts_cannot_open_folder(), file));
|
|
}
|
|
|
|
} // namespace launcher
|
|
} // namespace app
|