kde-workspace/kcontrol/kfontinst/lib/File.h
2021-06-25 15:36:24 +03:00

85 lines
2.2 KiB
C++

#ifndef __FILE_H__
#define __FILE_H__
/*
* KFontInst - KDE Font Installer
*
* Copyright 2003-2009 Craig Drummond <craig@kde.org>
*
* ----
*
* 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; either version 2 of the License, or
* (at your option) any later version.
*
* 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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include <QtCore/QSet>
#include <QtCore/QMetaType>
#include <QtDBus/QtDBus>
#include "kfontinst_export.h"
#include <QDomElement>
#include <QTextStream>
namespace KFI
{
class KFONTINST_EXPORT File
{
public:
static bool equalIndex(int a, int b)
{
return a<=1 && b<=1;
}
File(const QString &pth=QString(), const QString &fndry=QString(), int idx=0)
: itsPath(pth), itsFoundry(fndry), itsIndex(idx) { }
File(const QDomElement &elem, bool disabled);
bool operator==(const File &o) const
{
return equalIndex(itsIndex, o.itsIndex) && itsPath==o.itsPath;
}
QString toXml(bool disabledOnly, QTextStream &s) const;
const QString & path() const { return itsPath; }
const QString & foundry() const { return itsFoundry; }
int index() const { return itsIndex; }
private:
QString itsPath,
itsFoundry;
int itsIndex;
};
typedef QSet<File> FileCont;
inline KDE_EXPORT uint qHash(const File &key)
{
return qHash(key.path()); // +qHash(key.index());
}
}
Q_DECLARE_METATYPE(KFI::File)
QT_BEGIN_NAMESPACE
KDE_EXPORT QDBusArgument & operator<<(QDBusArgument &argument, const KFI::File &obj);
KDE_EXPORT const QDBusArgument & operator>>(const QDBusArgument &argument, KFI::File &obj);
QT_END_NAMESPACE
#endif