1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** All rights reserved.
|
---|
5 | ** Contact: Nokia Corporation ([email protected])
|
---|
6 | **
|
---|
7 | ** This file is part of the tools applications of the Qt Toolkit.
|
---|
8 | **
|
---|
9 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
10 | ** Commercial Usage
|
---|
11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
12 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
13 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
14 | ** a written agreement between you and Nokia.
|
---|
15 | **
|
---|
16 | ** GNU Lesser General Public License Usage
|
---|
17 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
18 | ** General Public License version 2.1 as published by the Free Software
|
---|
19 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
20 | ** packaging of this file. Please review the following information to
|
---|
21 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
22 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
23 | **
|
---|
24 | ** In addition, as a special exception, Nokia gives you certain additional
|
---|
25 | ** rights. These rights are described in the Nokia Qt LGPL Exception
|
---|
26 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
---|
27 | **
|
---|
28 | ** GNU General Public License Usage
|
---|
29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
30 | ** General Public License version 3.0 as published by the Free Software
|
---|
31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
32 | ** packaging of this file. Please review the following information to
|
---|
33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
35 | **
|
---|
36 | ** If you have questions regarding the use of this file, please contact
|
---|
37 | ** Nokia at [email protected].
|
---|
38 | ** $QT_END_LICENSE$
|
---|
39 | **
|
---|
40 | ****************************************************************************/
|
---|
41 |
|
---|
42 | #include "docuwindow.h"
|
---|
43 | #include <QTextBrowser>
|
---|
44 | #include <QTextDocument>
|
---|
45 | #include <QToolBar>
|
---|
46 | #include <QToolButton>
|
---|
47 | #include <QFileDialog>
|
---|
48 | #include <QFile>
|
---|
49 | #include <QStatusBar>
|
---|
50 | #include <QPrinter>
|
---|
51 | #include <QPainter>
|
---|
52 | #include <QPrintDialog>
|
---|
53 | #include <QTextStream>
|
---|
54 |
|
---|
55 | QT_BEGIN_NAMESPACE
|
---|
56 |
|
---|
57 | static const char *filesave[] = {
|
---|
58 | " 14 14 4 1",
|
---|
59 | ". c #040404",
|
---|
60 | "# c #808304",
|
---|
61 | "a c #bfc2bf",
|
---|
62 | "b c None",
|
---|
63 | "..............",
|
---|
64 | ".#.aaaaaaaa.a.",
|
---|
65 | ".#.aaaaaaaa...",
|
---|
66 | ".#.aaaaaaaa.#.",
|
---|
67 | ".#.aaaaaaaa.#.",
|
---|
68 | ".#.aaaaaaaa.#.",
|
---|
69 | ".#.aaaaaaaa.#.",
|
---|
70 | ".##........##.",
|
---|
71 | ".############.",
|
---|
72 | ".##.........#.",
|
---|
73 | ".##......aa.#.",
|
---|
74 | ".##......aa.#.",
|
---|
75 | ".##......aa.#.",
|
---|
76 | "b............."
|
---|
77 | };
|
---|
78 |
|
---|
79 | static const char *fileprint[] = {
|
---|
80 | " 16 14 6 1",
|
---|
81 | ". c #000000",
|
---|
82 | "# c #848284",
|
---|
83 | "a c #c6c3c6",
|
---|
84 | "b c #ffff00",
|
---|
85 | "c c #ffffff",
|
---|
86 | "d c None",
|
---|
87 | "ddddd.........dd",
|
---|
88 | "dddd.cccccccc.dd",
|
---|
89 | "dddd.c.....c.ddd",
|
---|
90 | "ddd.cccccccc.ddd",
|
---|
91 | "ddd.c.....c....d",
|
---|
92 | "dd.cccccccc.a.a.",
|
---|
93 | "d..........a.a..",
|
---|
94 | ".aaaaaaaaaa.a.a.",
|
---|
95 | ".............aa.",
|
---|
96 | ".aaaaaa###aa.a.d",
|
---|
97 | ".aaaaaabbbaa...d",
|
---|
98 | ".............a.d",
|
---|
99 | "d.aaaaaaaaa.a.dd",
|
---|
100 | "dd...........ddd"
|
---|
101 | };
|
---|
102 |
|
---|
103 |
|
---|
104 | DocuWindow::DocuWindow(const QString& docu, QWidget *parent, QWidget *source)
|
---|
|
---|