00001 #ifndef KDREPORTSTABLEBREAKINGSETTINGSDIALOG_H
00002 #define KDREPORTSTABLEBREAKINGSETTINGSDIALOG_H
00003
00004 #include "KDReportsGlobal.h"
00005 #include <QtGui/QDialog>
00006
00007 namespace KDReports {
00008 class Report;
00009
00020 class KDREPORTS_EXPORT TableBreakingSettingsDialog : public QDialog
00021 {
00022 Q_OBJECT
00023
00024 public:
00028 explicit TableBreakingSettingsDialog( KDReports::Report* report, QWidget *parent = 0 );
00029
00030 ~TableBreakingSettingsDialog();
00031
00032 private Q_SLOTS:
00034 void accept();
00036 void reject();
00037
00038 private:
00039 class Private;
00040 Private* const d;
00041 };
00042
00043 }
00044
00045 #endif