summaryrefslogtreecommitdiffstats
path: root/kivio/kiviopart/ui/export_page_dialog.h
blob: 16c805c5198a3c8d4594eefb69a5f87b40c467ce (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
#ifndef EXPORT_PAGE_DIALOG_H
#define EXPORT_PAGE_DIALOG_H

#include <kdialogbase.h>

class ExportPageDialogBase;

class ExportPageDialog : public KDialogBase
{
  Q_OBJECT
  
  public:
    ExportPageDialog(TQWidget* parent=0, const char* name=0);

    int quality();
    int border();

    bool crop();
    bool fullPage();
    bool selectedStencils();
  
  protected slots:
    void slotOk();

  private:
    ExportPageDialogBase* m_view;
};

#endif