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

#include <kdialogbase.h>

class ExportPageDialogBase;

class ExportPageDialog : public KDialogBase
{
  Q_OBJECT
  public:
    ExportPageDialog(QWidget* 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