File: ExportDialog.h

package info (click to toggle)
xca 2.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,328 kB
  • sloc: cpp: 30,584; sh: 341; xml: 74; makefile: 56; python: 34
file content (44 lines) | stat: -rw-r--r-- 1,053 bytes parent folder | download | duplicates (2)
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
/* vi: set sw=4 ts=4:
 *
 * Copyright (C) 2014 Christian Hohnstaedt.
 *
 * All rights reserved.
 */

#ifndef __EXPORTDIALOG_H
#define __EXPORTDIALOG_H

#include "ui_ExportDialog.h"
#include "lib/pki_export.h"
#include <QModelIndexList>

class QPixmap;
class pki_base;

class ExportDialog: public QDialog, public Ui::ExportDialog
{
	Q_OBJECT

  protected:
	QString filter{}, savedFile{}, filenameLabelOrig{};
	QList<const pki_export*> alltypes;

  public:
	ExportDialog(QWidget *w, const QString &title, const QString &filt,
		     const QModelIndexList &indexes, const QPixmap &img,
		     QList<const pki_export*> types,
		     const QString &help_ctx = QString());
	~ExportDialog();
	const pki_export *export_type(int idx = -1) const;
	static bool mayWriteFile(const QString &fname, bool inSeparateFiles);
	void setupExportFormat(int disable_flag);

  public slots:
	void on_fileBut_clicked();
	void on_separateFiles_clicked(bool checked);
	void on_exportFormat_activated(int);
	void on_exportFormat_highlighted(int index);
	void accept();
};

#endif