summaryrefslogtreecommitdiff
path: root/src/util/tool.cpp
blob: 8e8bb00d3382ec91fd82d253b03663339d5b8329 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2008 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/

#include "util/tool.h"

#include <QApplication>
#include <QFile>
#include <QFileDialog>
#include <QLabel>
#include <QRegExp>
#include <QTextStream>
#include <QWidget>
#include "backend/drivers/cswordmoduleinfo.h"
#include "backend/managers/cswordbackend.h"
#include "util/cresmgr.h"
#include "util/directory.h"
#include "util/dialogutil.h"


/** Converts HTML text to plain text */
QString util::tool::htmlToText(const QString& html) {
    QString newText = html;
    // convert some tags we need in code
    newText.replace( QRegExp(" "), "#SPACE#" );
    newText.replace( QRegExp("<br\\s*/?>\\s*"), "<br/>\n" );
    newText.replace( QRegExp("#SPACE#"), " " );

    QRegExp re("<.+>");
    re.setMinimal(true);
    newText.replace( re, "" );
    return newText;
}

/** Converts text to HTML (\n to <br/>) */
QString util::tool::textToHTML(const QString& text) {
    QString newText = text;
    newText.replace( QRegExp("<br\\s*/?>\n"), "#NEWLINE#" );
    newText.replace( QRegExp("\n"), "<br/>\n" );
    newText.replace( QRegExp("#NEWLINE#"), "<br/>\n");
    return newText;
}

/** Creates the file filename and put text into the file.
 */
bool util::tool::savePlainFile( const QString& filename, const QString& text, const bool& forceOverwrite, QTextCodec* fileCodec) {
    QFile saveFile(filename);
    bool ret;

    if (saveFile.exists()) {
        if (!forceOverwrite && util::showQuestion(0, QObject::tr("Overwrite File?"),
                QString::fromLatin1("<qt><b>%1</b><br/>%2</qt>")
                .arg( QObject::tr("The file already exists.") )
                .arg( QObject::tr("Do you want to overwrite it?")),
                QMessageBox::Yes | QMessageBox::No,
                QMessageBox::No) == QMessageBox::No
           ) {
            return false;
        }
        else { //either the user chose yes or forceOverwrite is set
            saveFile.remove();
        }
    }

    if ( saveFile.open(QIODevice::ReadWrite) ) {
        QTextStream textstream( &saveFile );
        textstream.setCodec(fileCodec);
        textstream << text;
        saveFile.close();
        ret = true;
    }
    else {
        QMessageBox::critical(0, QObject::tr("Error"),
                              QString::fromLatin1("<qt>%1<br/><b>%2</b></qt>")
                              .arg( QObject::tr("The file couldn't be saved.") )
                              .arg( QObject::tr("Please check permissions etc.")));
        saveFile.close();
        ret = false;
    }
    return ret;
}


/** Returns the icon used for the module given as aparameter. */
QIcon util::tool::getIconForModule( CSwordModuleInfo* module_info ) {
    namespace DU = util::directory;
    return DU::getIcon(getIconNameForModule(module_info));
}

/** Returns the name for the icon used for the module given as aparameter. */
QString util::tool::getIconNameForModule( CSwordModuleInfo* module_info ) {
    //qDebug() << "util::tool::getIconNameForModule";
    if (!module_info) return CResMgr::modules::book::icon_locked;

    if (module_info->category() == CSwordModuleInfo::Cult) {
        return "stop.svg";
    }

    switch (module_info->type()) {
        case CSwordModuleInfo::Bible:
            if (module_info->isLocked())
                return CResMgr::modules::bible::icon_locked;
            else
                return CResMgr::modules::bible::icon_unlocked;
            break;

        case CSwordModuleInfo::Lexicon:
            if (module_info->isLocked())
                return CResMgr::modules::lexicon::icon_locked;
            else
                return CResMgr::modules::lexicon::icon_unlocked;
            break;

        case CSwordModuleInfo::Commentary:
            if (module_info->isLocked())
                return CResMgr::modules::commentary::icon_locked;
            else
                return CResMgr::modules::commentary::icon_unlocked;
            break;

        case CSwordModuleInfo::GenericBook:
            if (module_info->isLocked())
                return CResMgr::modules::book::icon_locked;
            else
                return CResMgr::modules::book::icon_unlocked;
            break;

        case CSwordModuleInfo::Unknown: //fallback
        default:
            if (module_info->isLocked())
                return CResMgr::modules::book::icon_locked;
            else
                return CResMgr::modules::book::icon_unlocked;
            break;
    }
    return CResMgr::modules::book::icon_unlocked;
}

QLabel* util::tool::explanationLabel(QWidget* parent, const QString& heading, const QString& text ) {
    QString br;
    if (!heading.isEmpty() && !text.isEmpty()) {
        br = QString::fromLatin1("<span style='white-space:pre'>  -  </span>");
    }
    QLabel* label = new QLabel( QString::fromLatin1("<b>%1</b>%2<small>%3</small>").arg(heading).arg(br).arg(text), parent );

    label->setWordWrap(true);
    label->setMargin(1);
    label->setFrameStyle(QFrame::Box | QFrame::Sunken);
    return label;
}

/** No descriptions */
bool util::tool::inHTMLTag(int pos, QString & text) {
    int i1 = text.lastIndexOf("<", pos);
    int i2 = text.lastIndexOf(">", pos);
    int i3 = text.indexOf(">", pos);
    int i4 = text.indexOf("<", pos);


    // if ((i1>0) && (i2==-1))  //we're in th first html tag
    //  i2=i1; // not ncessary, just for explanation

    if ((i3 > 0) && (i4 == -1))  //we're in the last html tag
        i4 = i3 + 1;

    //  qWarning("%d > %d && %d < %d",i1,i2,i3,i4);

    if ( (i1 > i2) && (i3 < i4) )
        return true; //yes, we're in a tag

    return false;
}

QString util::tool::moduleToolTip(CSwordModuleInfo* module) {
    Q_ASSERT(module);
    if (!module) {
        return QString::null;
    }

    QString text;

    text = QString("<b>%1</b> ").arg( module->name() )
           + ((module->category() == CSwordModuleInfo::Cult) ? QString::fromLatin1("<small><b>%1</b></small><br/>").arg(QObject::tr("Take care, this work contains cult / questionable material!")) : QString::null);

    text += QString("<small>(") + module->config(CSwordModuleInfo::Description) + QString(")</small><hr>");

    text += QObject::tr("Language") + QString(": %1<br/>").arg( module->language()->translatedName() );

    if (module->isEncrypted()) {
        text += QObject::tr("Unlock key") + QString(": %1<br/>")
                .arg(!module->config(CSwordModuleInfo::CipherKey).isEmpty() ? module->config(CSwordModuleInfo::CipherKey) : QString("<font COLOR=\"red\">%1</font>").arg(QObject::tr("not set")));
    }

    if (module->hasVersion()) {
        text += QObject::tr("Version") + QString(": %1<br/>").arg( module->config(CSwordModuleInfo::ModuleVersion) );
    }

    QString options;
    unsigned int opts;
    for (opts = CSwordModuleInfo::filterTypesMIN; opts <= CSwordModuleInfo::filterTypesMAX; ++opts) {
        if (module->has( static_cast<CSwordModuleInfo::FilterTypes>(opts) )) {
            if (!options.isEmpty()) {
                options += QString::fromLatin1(", ");
            }

            options += CSwordBackend::translatedOptionName(
                           static_cast<CSwordModuleInfo::FilterTypes>(opts)
                       );
        }
    }

    if (!options.isEmpty()) {
        text += QObject::tr("Options") + QString::fromLatin1(": <small>") + options + QString("</small>");
    }

    if (text.right(4) == QString::fromLatin1("<br/>")) {
        text = text.left(text.length() - 4);
    }

    return text;
}

QString util::tool::remoteModuleToolTip(CSwordModuleInfo* module, QString localVer) {
    Q_ASSERT(module);
    if (!module) {
        return QString::null;
    }

    QString text;

    text = QString("<p style='white-space:pre'><b>%1</b> ").arg( module->name() )
           + ((module->category() == CSwordModuleInfo::Cult) ? QString::fromLatin1("<small><b>%1</b></small><br/>").arg(QObject::tr("Take care, this work contains cult / questionable material!")) : QString::null);

    text += QString("<small>(") + module->config(CSwordModuleInfo::Description) + QString(")</small><hr/>");

    if (module->isEncrypted()) {
        text += QObject::tr("Encrypted - needs unlock key") + QString("<br/>");
    }

    if (!localVer.isEmpty()) {
        text += QString("<b>") + QObject::tr("Updated version available!") + QString("</b><br/>");
    }

    if (module->hasVersion()) {
        text += QObject::tr("Version") + QString(": %1").arg( module->config(CSwordModuleInfo::ModuleVersion) );
    }
    // if installed already
    if (!localVer.isEmpty()) {
        text += QString("  ") + QObject::tr("Installed version") + QString(": %1").arg(localVer);
    }
    text += QString("<br/>");

    text += QString("<small>(") + QObject::tr("Double click for more information") + QString(")</small></p>");


    if (text.right(4) == QString::fromLatin1("<br/>")) {
        text = text.left(text.length() - 4);
    }

    return text;
}


int util::tool::mWidth(const QWidget* widget, int m) {
    if (widget) {
        return widget->fontMetrics().width(QString().fill('M', m));
    }
    return QApplication::fontMetrics().width(QString().fill('M', m));
}