summaryrefslogtreecommitdiffstats
path: root/kivio/kiviopart/ui/export_page_dialog.h
blob: 0384b0ba497d200cc98d2afdfe146b9079fb985b (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
  TQ_OBJECT
  public:
    ExportPageDialog(TQWidget* tqparent=0, const char* name=0);

    int quality();
    int border();

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

  private:
    ExportPageDialogBase* m_view;
};

#endif