Make the style engine fix a little less obscure by copying the string explicitely...
[quassel.git] / src / common / util.h
1 /***************************************************************************
2  *   Copyright (C) 2005/06 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef _UTIL_H_
22 #define _UTIL_H_
23
24 #include <QIODevice>
25 #include <QVariant>
26 #include <QString>
27 #include <QMetaMethod>
28
29
30 // TODO Use versions from Network instead
31 QString nickFromMask(QString mask);
32 QString userFromMask(QString mask);
33 QString hostFromMask(QString mask);
34 bool isChannelName(QString str);
35
36
37 //! Take a string and decode it using the specified text codec, recognizing utf8.
38 /** This function takes a string and first checks if it is encoded in utf8, in which case it is
39  *  decoded appropriately. Otherwise, the specified text codec is used to transform the string.
40  *  \param input The input string containing encoded data
41  *  \param codec The text codec we use if the input is not utf8
42  *  \return The decoded string.
43  */
44 QString decodeString(const QByteArray &input, QTextCodec *codec = 0);
45
46 // NOTE: We have static copies of these in SignalProxy...
47 //void writeDataToDevice(QIODevice *, const QVariant &);
48 //bool readDataFromDevice(QIODevice *, quint32 &, QVariant &);
49
50 uint editingDistance(const QString &s1, const QString &s2);
51
52 QByteArray methodName(const QMetaMethod &method);
53
54 #endif