Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
PIM
PIM Messagelib
Commits
58ddd0d7
Commit
58ddd0d7
authored
May 12, 2016
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Start to create configure dialog box
parent
711be311
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
64 additions
and
0 deletions
+64
-0
webengineviewer/src/CMakeLists.txt
webengineviewer/src/CMakeLists.txt
+1
-0
webengineviewer/src/print/printconfiguredialog.cpp
webengineviewer/src/print/printconfiguredialog.cpp
+31
-0
webengineviewer/src/print/printconfiguredialog.h
webengineviewer/src/print/printconfiguredialog.h
+32
-0
No files found.
webengineviewer/src/CMakeLists.txt
View file @
58ddd0d7
...
...
@@ -20,6 +20,7 @@ if (WEBENGINEVIEWER_PRINTPREVIEW_SUPPORT)
print/printpreviewpageviewer.cpp
print/printpreviewpagewidget.cpp
print/printwebengineviewjob.cpp
print/printconfiguredialog.cpp
)
set
(
poppler_lib Poppler::Qt5
)
endif
()
...
...
webengineviewer/src/print/printconfiguredialog.cpp
0 → 100644
View file @
58ddd0d7
/*
Copyright (c) 2016 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "printconfiguredialog.h"
using
namespace
WebEngineViewer
;
PrintConfigureDialog
::
PrintConfigureDialog
(
QWidget
*
parent
)
:
QDialog
(
parent
)
{
}
PrintConfigureDialog
::~
PrintConfigureDialog
()
{
}
webengineviewer/src/print/printconfiguredialog.h
0 → 100644
View file @
58ddd0d7
/*
Copyright (c) 2016 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef PRINTCONFIGUREDIALOG_H
#define PRINTCONFIGUREDIALOG_H
#include <QDialog>
namespace
WebEngineViewer
{
class
PrintConfigureDialog
:
public
QDialog
{
Q_OBJECT
public:
explicit
PrintConfigureDialog
(
QWidget
*
parent
=
Q_NULLPTR
);
~
PrintConfigureDialog
();
};
}
#endif // PRINTCONFIGUREDIALOG_H
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment