File indexing completed on 2023-05-30 09:09:55
0001 /* 0002 * This file is part of the KDE libraries 0003 * Copyright (c) 2002 Michael Goffioul <kdeprint@swing.be> 0004 * 0005 * This library is free software; you can redistribute it and/or 0006 * modify it under the terms of the GNU Library General Public 0007 * License version 2 as published by the Free Software Foundation. 0008 * 0009 * This library is distributed in the hope that it will be useful, 0010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 0011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 0012 * Library General Public License for more details. 0013 * 0014 * You should have received a copy of the GNU Library General Public License 0015 * along with this library; see the file COPYING.LIB. If not, write to 0016 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 0017 * Boston, MA 02110-1301, USA. 0018 **/ 0019 0020 #ifndef KHTML_PRINTSETTINGS_H 0021 #define KHTML_PRINTSETTINGS_H 0022 0023 #include <QWidget> 0024 0025 class QCheckBox; 0026 0027 class KHTMLPrintSettings : public QWidget 0028 { 0029 Q_OBJECT 0030 public: 0031 KHTMLPrintSettings(QWidget *parent = nullptr); 0032 ~KHTMLPrintSettings(); 0033 0034 bool printFriendly(); 0035 bool printImages(); 0036 bool printHeader(); 0037 0038 private: 0039 QCheckBox *m_printfriendly; 0040 QCheckBox *m_printimages; 0041 QCheckBox *m_printheader; 0042 }; 0043 0044 #endif