You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tellico/src/gui/previewdialog.cpp

57 lines
1.9 KiB

/***************************************************************************
copyright : (C) 2006 by Robby Stephenson
email : robby@periapsis.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of version 2 of the GNU General Public License as *
* published by the Free Software Foundation; *
* *
***************************************************************************/
#include "previewdialog.h"
#include "../entryview.h"
#include "../entry.h"
#include "../imagefactory.h" // for StyleOptions
#include <tdelocale.h>
#include <ktempdir.h>
#include <tdehtmlview.h>
using Tellico::GUI::PreviewDialog;
PreviewDialog::PreviewDialog(TQWidget* parent_)
: KDialogBase(parent_, "template preview dialog", false /* modal */,
i18n("Template Preview"), KDialogBase::Ok)
, m_tempDir(new KTempDir()) {
m_tempDir->setAutoDelete(true);
connect(this, TQT_SIGNAL(finished()), TQT_SLOT(delayedDestruct()));
m_view = new EntryView(this);
setMainWidget(m_view->view());
setInitialSize(TQSize(600, 500));
}
PreviewDialog::~PreviewDialog() {
delete m_tempDir;
m_tempDir = 0;
}
void PreviewDialog::setXSLTFile(const TQString& file_) {
m_view->setXSLTFile(file_);
}
void PreviewDialog::setXSLTOptions(StyleOptions options_) {
options_.imgDir = m_tempDir->name(); // images always get written to temp dir
ImageFactory::createStyleImages(options_);
m_view->setXSLTOptions(options_);
}
void PreviewDialog::showEntry(Data::EntryPtr entry_) {
m_view->showEntry(entry_);
}
#include "previewdialog.moc"