summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/batchprocessimages/outputdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/batchprocessimages/outputdialog.cpp')
-rw-r--r--kipi-plugins/batchprocessimages/outputdialog.cpp112
1 files changed, 112 insertions, 0 deletions
diff --git a/kipi-plugins/batchprocessimages/outputdialog.cpp b/kipi-plugins/batchprocessimages/outputdialog.cpp
new file mode 100644
index 0000000..3ba2a60
--- /dev/null
+++ b/kipi-plugins/batchprocessimages/outputdialog.cpp
@@ -0,0 +1,112 @@
+/* ============================================================
+ *
+ * This file is a part of kipi-plugins project
+ * http://www.kipi-plugins.org
+ *
+ * Date : 2004-10-01
+ * Description : a kipi plugin to batch process images
+ *
+ * Copyright (C) 2004-2007 by Gilles Caulier <caulier dot gilles at gmail dot com>
+ *
+ * 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, 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.
+ *
+ * ============================================================ */
+
+// Qt includes
+
+#include <qtextview.h>
+#include <qlayout.h>
+#include <qlabel.h>
+#include <qpushbutton.h>
+#include <qframe.h>
+
+// KDElib includes
+
+#include <klocale.h>
+#include <kapplication.h>
+#include <khelpmenu.h>
+#include <kiconloader.h>
+#include <kpopupmenu.h>
+#include <kstandarddirs.h>
+
+// Local includes
+
+#include "pluginsversion.h"
+#include "outputdialog.h"
+#include "outputdialog.moc"
+
+namespace KIPIBatchProcessImagesPlugin
+{
+
+OutputDialog::OutputDialog(QWidget* parent, QString caption, QString Messages, QString Header )
+ : KDialogBase( parent, "OutputDialog", true, caption, Help|User1|Ok, Ok, false,
+ i18n("Copy to Clip&board"))
+{
+ // About data and help button.
+
+ m_about = new KIPIPlugins::KPAboutData(I18N_NOOP("Batch processes images"),
+ 0,
+ KAboutData::License_GPL,
+ I18N_NOOP("An interface to show the output of the \"Batch Process "
+ "Images\" Kipi plugin.\n"
+ "This plugin uses the \"convert\" program from \"ImageMagick\" "
+ "package."),
+ "(c) 2003-2007, Gilles Caulier");
+
+ m_about->addAuthor("Gilles Caulier", I18N_NOOP("Author and maintainer"),
+ "caulier dot gilles at gmail dot com");
+
+ m_helpButton = actionButton( Help );
+ KHelpMenu* helpMenu = new KHelpMenu(this, m_about, false);
+ helpMenu->menu()->removeItemAt(0);
+ helpMenu->menu()->insertItem(i18n("Plugin Handbooks"), this, SLOT(slotHelp()), 0, -1, 0);
+ m_helpButton->setPopup( helpMenu->menu() );
+
+ //---------------------------------------------
+
+ QWidget* box = new QWidget( this );
+ setMainWidget(box);
+ QVBoxLayout *dvlay = new QVBoxLayout( box, 10, spacingHint() );
+
+ //---------------------------------------------
+
+ QLabel *labelHeader = new QLabel( Header, box);
+ dvlay->addWidget( labelHeader );
+
+ debugView = new QTextView( box );
+ debugView->append( Messages );
+ dvlay->addWidget( debugView );
+
+ connect(this, SIGNAL(user1Clicked()),
+ this, SLOT(slotCopyToCliboard()));
+
+ resize( 600, 400 );
+}
+
+OutputDialog::~OutputDialog()
+{
+ delete m_about;
+}
+
+void OutputDialog::slotHelp( void )
+{
+ KApplication::kApplication()->invokeHelp("",
+ "kipi-plugins");
+}
+
+void OutputDialog::slotCopyToCliboard( void )
+{
+ debugView->selectAll(true);
+ debugView->copy();
+ debugView->selectAll(false);
+}
+
+} // NameSpace KIPIBatchProcessImagesPlugin