52 lines
1.1 KiB
C++
52 lines
1.1 KiB
C++
#include "pch.h"
|
|
|
|
#include "app.h"
|
|
#include "legacy_brush_package_export_services.h"
|
|
#include "legacy_document_export_services.h"
|
|
|
|
#include <utility>
|
|
|
|
namespace pp::panopainter {
|
|
|
|
void open_document_export_dialog(App& app, std::string ext)
|
|
{
|
|
open_legacy_document_export_dialog(app, std::move(ext));
|
|
}
|
|
|
|
void open_document_export_layers_dialog(App& app)
|
|
{
|
|
open_legacy_document_export_layers_dialog(app);
|
|
}
|
|
|
|
void open_document_export_anim_frames_dialog(App& app)
|
|
{
|
|
open_legacy_document_export_anim_frames_dialog(app);
|
|
}
|
|
|
|
void open_document_export_depth_dialog(App& app)
|
|
{
|
|
open_legacy_document_export_depth_dialog(app);
|
|
}
|
|
|
|
void open_document_export_cube_faces_dialog(App& app)
|
|
{
|
|
open_legacy_document_export_cube_faces_dialog(app);
|
|
}
|
|
|
|
void open_ppbr_export_dialog(App& app)
|
|
{
|
|
open_legacy_ppbr_export_dialog(app);
|
|
}
|
|
|
|
void open_document_timelapse_export_dialog(App& app)
|
|
{
|
|
open_legacy_document_timelapse_export_dialog(app);
|
|
}
|
|
|
|
void open_document_export_mp4_dialog(App& app)
|
|
{
|
|
open_legacy_document_export_mp4_dialog(app);
|
|
}
|
|
|
|
} // namespace pp::panopainter
|