You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
410 B
28 lines
410 B
#pragma once |
|
|
|
/* |
|
* SPDX-FileCopyrightText: 2003-2007 Craig Drummond <craig@kde.org> |
|
* SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#include <QComboBox> |
|
#include <QDialog> |
|
|
|
namespace KFI |
|
{ |
|
class CPrintDialog : public QDialog |
|
{ |
|
public: |
|
CPrintDialog(QWidget *parent); |
|
|
|
bool exec(int size); |
|
int chosenSize() |
|
{ |
|
return m_size->currentIndex(); |
|
} |
|
|
|
private: |
|
QComboBox *m_size; |
|
}; |
|
|
|
}
|
|
|