You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
2.7 KiB
60 lines
2.7 KiB
/***************************************************************************
|
|
* Copyright (C) 2005-2008 by Tarek Saidi *
|
|
* tarek.saidi@arcor.de *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; version 2 of the License. *
|
|
* *
|
|
* 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., *
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
***************************************************************************/
|
|
#ifndef TOOLS_H
|
|
#define TOOLS_H
|
|
|
|
class IEntryHandle;
|
|
|
|
enum tKeyType {PASSWORD=0,KEYFILE=1,BOTH=2};
|
|
struct Translation {
|
|
QString nameCode;
|
|
QString nameLong;
|
|
QString nameEnglish;
|
|
QString author;
|
|
};
|
|
bool operator<(const Translation& t1, const Translation& t2);
|
|
|
|
#define CSTR(x)(QTextCodec::codecForLocale()->fromUnicode(x).constData())
|
|
|
|
const QIcon& getIcon(const QString& name);
|
|
const QPixmap* getPixmap(const QString& name);
|
|
void createBanner(QPixmap* Pixmap, const QPixmap* IconAlpha,const QString& Text,int Width);
|
|
void createBanner(QPixmap* Pixmap, const QPixmap* IconAlpha,const QString& Text,int Width,
|
|
QColor Color1, QColor Color2, QColor TextColor);
|
|
void openBrowser(const QString& UrlString);
|
|
void openBrowser(IEntryHandle* entry);
|
|
void showErrMsg(const QString& msg,QWidget* parent=NULL);
|
|
QString decodeFileError(QFile::FileError Code);
|
|
QString makePathRelative(const QString& Abs,const QString& Cur);
|
|
QString getImageFile(const QString& name);
|
|
bool createKeyFile(const QString& filename,QString* err, int length=32, bool Hex=true);
|
|
bool lockPage(void* addr, int len);
|
|
bool unlockPage(void* addr, int len);
|
|
bool syncFile(QFile* file);
|
|
void installTranslator();
|
|
bool isTranslationActive();
|
|
QList<Translation> getAllTranslations();
|
|
#ifdef Q_OS_WIN
|
|
#ifndef CSIDL_APPDATA
|
|
#define CSIDL_APPDATA 0x001a // <username>\Application Data
|
|
#endif
|
|
QString qtWindowsConfigPath(int type);
|
|
#endif
|
|
|
|
#endif //TOOLS_H
|
|
|