summaryrefslogtreecommitdiff
path: root/src/util/ctoolclass.h
blob: 47ba228c6eeb87771fdcb656a5f39805700c74fb (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
/*********
*
* 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.
*
**********/
#ifndef CTOOLCLASS_H
#define CTOOLCLASS_H

//Qt
#include <QString>
#include <QIcon>
#include <QTextCodec>

class CSwordModuleInfo;
class QLabel;
class QWidget;

/**
 * Provides some useful functions which would be normally global.
 *
 * Some methods,that would be normaly global, but I hate global functions :-)
 * (the function locateHTML is from Sandy Meier (KDevelop))
 *
 * TODO: I think this could be implemented as a namespace:
 * namespace util { function()...}
 * And used:
 * #include "util/util.h"
 * util::function();
 * (comment by Eeli)
 * 
 */
class CToolClass {
public:
	/**
	 * Converts HTML text to plain text.
	 * This function converts some HTML tags in text (e.g. <BR> to \n)
	 * @return The text withput HTML tags and with converted <BR> to \n
	 * @author Joachim Ansorg  
	 */
	static QString htmlToText(const QString&);
	/**
	* Converts text to HTML converting some text commands into HTML tags (e.g. \n to <BR>)
	* @return The HTML formatted text we got after changing \n to <BR>
	* @author Joachim Ansorg
	*/
	static QString textToHTML(const QString&);
	/**
	* Creates the file filename and put the text of parameter "text" into the file.
	* @return True if saving was sucessful, otherwise false
	* @author Joachim Ansorg
	*/
	static bool savePlainFile( const QString& filename, const QString& text, const bool& forceOverwrite = false, QTextCodec* fileCodec = QTextCodec::codecForLocale());
	/**
	* Returns the icon used for the module given as aparameter.
	*/
	static QIcon getIconForModule( CSwordModuleInfo* );
	/**
	* Returns the name for the icon used for the module given as aparameter.
	*/
	static QString getIconNameForModule( CSwordModuleInfo* );
	
	/** Returns a label to explain difficult things of dialogs.
	* This function returns a label with heading "heading" and explanation "text". This label should be used to
	* explain difficult things of the GUI, e.g. in the optionsdialog.
	*/
	static QLabel* explanationLabel(QWidget* parent, const QString& heading, const QString& text );
	/**
	* Returns true if the character at position "pos" of text is inside an HTML tag. Returns false if it's not inside an HTML tag.
	*/
	static bool inHTMLTag(int pos, QString & text);

	/** Return the module's tooltip text
	* @param module The module required for the tooltip
	* @return The tooltip text for the passed module
	*/
	static QString moduleToolTip(CSwordModuleInfo* module);

	/** Return the module's tooltip text for a remote module
	* @param module The module required for the tooltip
	* @return The tooltip text for the passed module
	*/
	static QString remoteModuleToolTip(CSwordModuleInfo* module, QString localVer);
	
	/**
	* Returns the width in pixels for a string which has mCount 'M' letters, using the specified widget's font.
	* This can be used when setting the size for a widget. It may be better to roughly calculate the size based on some text width rather than use pixels directly.
	*/
	static int mWidth(const QWidget* widget, int mCount);
};

#endif