digiKam
printhelper.h
Go to the documentation of this file.
1 /* ============================================================
2  *
3  * This file is a part of digiKam project
4  * https://www.digikam.org
5  *
6  * Date : 2009-02-06
7  * Description : image editor printing interface.
8  *
9  * Copyright (C) 2009 by Angelo Naselli <anaselli at linux dot it>
10  * Copyright (C) 2009-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
11  *
12  * This program is free software; you can redistribute it
13  * and/or modify it under the terms of the GNU General
14  * Public License as published by the Free Software Foundation;
15  * either version 2, or (at your option)
16  * any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * ============================================================ */
24 
25 #ifndef DIGIKAM_PRINT_HELPER_H
26 #define DIGIKAM_PRINT_HELPER_H
27 
28 // Local includes
29 
30 #include "dimg.h"
31 
32 class QWidget;
33 
34 using namespace Digikam;
35 
37 {
38 
40 {
41 
42 public:
43 
44  explicit PrintHelper(QWidget* const parent);
45  ~PrintHelper();
46 
47  void print(DImg&);
48 
49 private:
50 
51  // Disable
52  PrintHelper(const PrintHelper&) = delete;
53  PrintHelper& operator=(const PrintHelper&) = delete;
54 
55 private:
56 
57  class Private;
58  Private* const d;
59 };
60 
61 } // namespace DigikamEditorPrintToolPlugin
62 
63 #endif // DIGIKAM_PRINT_HELPER_H
Definition: printhelper.h:40
Definition: dimg.h:62
Definition: printconfig.cpp:33
Definition: datefolderview.cpp:43