summaryrefslogtreecommitdiffstats
path: root/filters/karbon/eps/epsexportdlg.cc
blob: 4bf4aec7edbf6fae59abeaf9b9011851739e5a9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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"