File indexing completed on 2024-04-14 05:44:11

0001 /*
0002   SPDX-FileCopyrightText: 2012 Kasper Laudrup <laudrup@stacktrace.dk>
0003 
0004   SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005 */
0006 
0007 #ifndef PRINTOPTIONS_H
0008 #define PRINTOPTIONS_H
0009 
0010 #include "ui_PrintOptions.h"
0011 
0012 namespace Konsole
0013 {
0014 class PrintOptions : public QWidget, private Ui::PrintOptions
0015 {
0016     Q_OBJECT
0017 
0018 public:
0019     explicit PrintOptions(QWidget *parent = nullptr);
0020     ~PrintOptions() override;
0021 
0022 public Q_SLOTS:
0023     void saveSettings();
0024 };
0025 }
0026 
0027 #endif