File indexing completed on 2023-05-30 10:45:28
0001 /* 0002 SPDX-FileCopyrightText: 2004-2008 Peter Hedlund <peter.hedlund@kdemail.net> 0003 SPDX-License-Identifier: LGPL-2.0-only 0004 */ 0005 0006 #ifndef WQPRINTDIALOGPAGE_H 0007 #define WQPRINTDIALOGPAGE_H 0008 0009 #include <QGroupBox> 0010 #include <QButtonGroup> 0011 0012 #include "prefs.h" 0013 0014 /** 0015 Print dialog page to provide specific print options for KWordQuiz 0016 0017 @author Peter Hedlund 0018 */ 0019 class WQPrintDialogPage : public QWidget 0020 { 0021 Q_OBJECT 0022 public: 0023 explicit WQPrintDialogPage(QWidget *parent = nullptr); 0024 0025 int printStyle(); 0026 void setPrintStyle(int style); 0027 0028 private: 0029 QGroupBox *g; 0030 QButtonGroup *bg; 0031 }; 0032 0033 #endif