summaryrefslogtreecommitdiffstats
path: root/filters/karbon/eps/epsexportdlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'filters/karbon/eps/epsexportdlg.cpp')
-rw-r--r--filters/karbon/eps/epsexportdlg.cpp65
1 files changed, 65 insertions, 0 deletions
diff --git a/filters/karbon/eps/epsexportdlg.cpp b/filters/karbon/eps/epsexportdlg.cpp
new file mode 100644
index 000000000..4bf4aec7e
--- /dev/null
+++ b/filters/karbon/eps/epsexportdlg.cpp
@@ -0,0 +1,65 @@
+/* This file is part of the KDE project
+ Copyright (C) 2002, The Karbon Developers
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library 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
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public License
+ along with this library; see the file COPYING.LIB. If not, write to
+ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+*/
+
+#include <tqbuttongroup.h>
+#include <tqradiobutton.h>
+#include <tqstring.h>
+#include <tqvbox.h>
+#include <tqcheckbox.h>
+
+#include <tdelocale.h>
+#include <knuminput.h>
+
+#include "epsexportdlg.h"
+
+
+EpsExportDlg::EpsExportDlg( TQWidget* parent, const char* name )
+ : KDialogBase( parent, name, true, i18n( "EPS Export" ), Ok | Cancel )
+{
+ TQVBox* page = makeVBoxMainWidget();
+
+ m_psLevelButtons = new TQButtonGroup( 1, Qt::Horizontal,
+ i18n( "Options" ), page );
+
+ TQRadioButton* radio;
+ radio = new TQRadioButton( i18n( "PostScript level 1" ), m_psLevelButtons );
+ radio = new TQRadioButton( i18n( "PostScript level 2" ), m_psLevelButtons );
+ radio = new TQRadioButton( i18n( "PostScript level 3" ), m_psLevelButtons );
+
+ m_hiddenExport = new TQCheckBox( i18n( "Export hidden layers" ), page );
+ m_hiddenExport->setChecked( true );
+
+ m_psLevelButtons->setRadioButtonExclusive( true );
+ m_psLevelButtons->setButton( 2 );
+}
+
+uint
+EpsExportDlg::psLevel() const
+{
+ return static_cast<uint>(
+ m_psLevelButtons->id( m_psLevelButtons->selected() ) );
+}
+
+bool
+EpsExportDlg::exportHidden() const
+{
+ return m_hiddenExport->isChecked();
+}
+#include "epsexportdlg.moc"
+