Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
tdegraphics/kfaxview/faxmultipage.cpp

86 строки
3.2 KiB

/***************************************************************************
* Copyright (C) 2005 by Stefan Kebekus *
* kebekus@kde.org *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
#include <config.h>
#include <tdefiledialog.h>
#include <tdeparts/genericfactory.h>
#include "faxmultipage.h"
typedef KParts::GenericFactory<FaxMultiPage> FaxMultiPageFactory;
K_EXPORT_COMPONENT_FACTORY(kfaxviewpart, FaxMultiPageFactory)
FaxMultiPage::FaxMultiPage(TQWidget *parentWidget, const char *widgetName, TQObject *parent,
const char *name, const TQStringList&)
: KMultiPage(parentWidget, widgetName, parent, name), faxRenderer(parentWidget)
{
/* This is tdeparts wizardry that cannot be understood by man. Simply
change the names to match your implementation. */
setInstance(FaxMultiPageFactory::instance());
faxRenderer.setName("Fax renderer");
setXMLFile("kfaxview.rc");
/* It is very important that this method is called in the
constructor. Otherwise tdemultipage does not know how to render
files, and crashes may result. */
setRenderer(&faxRenderer);
}
FaxMultiPage::~FaxMultiPage()
{
;
}
TDEAboutData* FaxMultiPage::createAboutData()
{
/* You obviously want to change this to match your setup */
TDEAboutData* about = new TDEAboutData("kfaxview", I18N_NOOP("KFaxView"), "0.1",
I18N_NOOP("KViewshell Fax Plugin."),
TDEAboutData::License_GPL,
"Stefan Kebekus",
I18N_NOOP("This program previews fax (g3) files."));
about->addAuthor ("Stefan Kebekus",
I18N_NOOP("Current Maintainer."),
"kebekus@kde.org",
"http://www.mi.uni-koeln.de/~kebekus");
return about;
}
TQStringList FaxMultiPage::fileFormats() const
{
/* This list is used in the file selection dialog when the file is
saved */
TQStringList r;
r << i18n("*.g3|Fax (g3) file (*.g3)");
return r;
}
#include "faxmultipage.moc"