2006-01-16 22:02:54 +01:00
|
|
|
// Copyright (c) 2005, Rodrigo Braz Monteiro
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
// * Neither the name of the Aegisub Group nor the names of its contributors
|
|
|
|
// may be used to endorse or promote products derived from this software
|
|
|
|
// without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
2006-01-16 22:02:54 +01:00
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/// @file ass_exporter.cpp
|
|
|
|
/// @brief Overall set-up and management of export operations
|
|
|
|
/// @ingroup export
|
|
|
|
///
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2006-01-16 22:02:54 +01:00
|
|
|
#include "ass_export_filter.h"
|
2009-09-10 15:06:40 +02:00
|
|
|
#include "ass_exporter.h"
|
2006-01-16 22:02:54 +01:00
|
|
|
#include "ass_file.h"
|
2011-09-28 21:46:53 +02:00
|
|
|
#include "include/aegisub/context.h"
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-11-07 05:14:09 +01:00
|
|
|
#ifndef AGI_PRE
|
|
|
|
#include <algorithm>
|
|
|
|
#endif
|
|
|
|
|
2011-09-28 21:46:41 +02:00
|
|
|
static inline std::list<AssExportFilter*>::const_iterator filter_list_begin() {
|
|
|
|
return AssExportFilterChain::GetFilterList()->begin();
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline std::list<AssExportFilter*>::const_iterator filter_list_end() {
|
|
|
|
return AssExportFilterChain::GetFilterList()->end();
|
|
|
|
}
|
|
|
|
|
2011-09-28 21:46:53 +02:00
|
|
|
AssExporter::AssExporter(agi::Context *c)
|
|
|
|
: c(c)
|
2011-09-28 21:46:41 +02:00
|
|
|
, is_default(true)
|
|
|
|
{
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
AssExporter::~AssExporter () {
|
|
|
|
}
|
|
|
|
|
2011-09-28 21:46:41 +02:00
|
|
|
void AssExporter::DrawSettings(wxWindow *parent, wxSizer *target_sizer) {
|
|
|
|
is_default = false;
|
|
|
|
for (filter_iterator cur = filter_list_begin(); cur != filter_list_end(); ++cur) {
|
2007-09-24 19:40:03 +02:00
|
|
|
// Make sure to construct static box sizer first, so it won't overlap
|
|
|
|
// the controls on wxMac.
|
2011-09-28 21:46:41 +02:00
|
|
|
wxSizer *box = new wxStaticBoxSizer(wxVERTICAL, parent, (*cur)->GetName());
|
2011-09-28 21:46:53 +02:00
|
|
|
wxWindow *window = (*cur)->GetConfigDialogWindow(parent, c);
|
2006-01-16 22:02:54 +01:00
|
|
|
if (window) {
|
2011-09-28 21:46:41 +02:00
|
|
|
box->Add(window, 0, wxEXPAND, 0);
|
|
|
|
target_sizer->Add(box, 0, wxEXPAND | wxLEFT | wxRIGHT | wxBOTTOM, 5);
|
|
|
|
target_sizer->Show(box, false);
|
|
|
|
Sizers[(*cur)->GetName()] = box;
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
2007-09-24 19:40:03 +02:00
|
|
|
else {
|
|
|
|
delete box;
|
|
|
|
}
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-28 21:46:41 +02:00
|
|
|
void AssExporter::AddFilter(wxString const& name) {
|
|
|
|
AssExportFilter *filter = AssExportFilterChain::GetFilter(name);
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-09-28 21:43:48 +02:00
|
|
|
if (!filter) throw wxString::Format("Filter not found: %s", name);
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-09-28 21:46:41 +02:00
|
|
|
filters.push_back(filter);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void AssExporter::AddAutoFilters() {
|
2011-09-28 21:46:41 +02:00
|
|
|
for (filter_iterator it = filter_list_begin(); it != filter_list_end(); ++it) {
|
|
|
|
if ((*it)->GetAutoApply())
|
|
|
|
filters.push_back(*it);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-20 01:39:10 +01:00
|
|
|
wxArrayString AssExporter::GetAllFilterNames() const {
|
2006-01-16 22:02:54 +01:00
|
|
|
wxArrayString names;
|
2011-09-28 21:46:41 +02:00
|
|
|
transform(filter_list_begin(), filter_list_end(),
|
|
|
|
std::back_inserter(names), std::mem_fun(&AssExportFilter::GetName));
|
2006-01-16 22:02:54 +01:00
|
|
|
return names;
|
|
|
|
}
|
|
|
|
|
2011-09-28 21:46:41 +02:00
|
|
|
AssFile *AssExporter::ExportTransform(wxWindow *export_dialog, bool copy) {
|
2011-09-28 21:46:53 +02:00
|
|
|
AssFile *subs = copy ? new AssFile(*c->ass) : c->ass;
|
2011-09-28 21:46:41 +02:00
|
|
|
|
|
|
|
for (filter_iterator cur = filters.begin(); cur != filters.end(); cur++) {
|
2011-09-28 21:46:53 +02:00
|
|
|
(*cur)->LoadSettings(is_default, c);
|
2011-09-28 21:46:41 +02:00
|
|
|
(*cur)->ProcessSubs(subs, export_dialog);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2011-09-28 21:46:41 +02:00
|
|
|
return subs;
|
2007-01-21 07:30:19 +01:00
|
|
|
}
|
|
|
|
|
2011-09-28 21:46:41 +02:00
|
|
|
void AssExporter::Export(wxString const& filename, wxString const& charset, wxWindow *export_dialog) {
|
|
|
|
std::auto_ptr<AssFile> subs(ExportTransform(export_dialog, true));
|
|
|
|
subs->Save(filename, false, false, charset);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2011-09-28 21:46:41 +02:00
|
|
|
wxSizer *AssExporter::GetSettingsSizer(wxString const& name) {
|
|
|
|
std::map<wxString, wxSizer*>::iterator pos = Sizers.find(name);
|
|
|
|
if (pos == Sizers.end()) return 0;
|
|
|
|
return pos->second;
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2012-03-20 01:39:10 +01:00
|
|
|
wxString const& AssExporter::GetDescription(wxString const& name) const {
|
2011-09-28 21:46:41 +02:00
|
|
|
AssExportFilter *filter = AssExportFilterChain::GetFilter(name);
|
|
|
|
if (filter)
|
|
|
|
return filter->GetDescription();
|
2011-09-28 21:43:48 +02:00
|
|
|
throw wxString::Format("Filter not found: %s", name);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|