mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
88 lines
2.7 KiB
C++
88 lines
2.7 KiB
C++
#ifndef __FAMILY_H__
|
|
#define __FAMILY_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 "Style.h"
|
|
|
|
class QDomElement;
|
|
class QTextStream;
|
|
|
|
namespace KFI
|
|
{
|
|
|
|
class KFONTINST_EXPORT Family
|
|
{
|
|
public:
|
|
|
|
Family(const QString &n=QString()) : itsName(n) { }
|
|
Family(const QDomElement &elem, bool loadStyles);
|
|
|
|
bool operator==(const Family &o) const { return itsName==o.itsName; }
|
|
|
|
void toXml(bool disabled, QTextStream &s) const;
|
|
StyleCont::ConstIterator add(const Style &s) const { return itsStyles.insert(s); }
|
|
void remove(const Style &s) const { itsStyles.remove(s); }
|
|
void setStyles(const StyleCont &s) const { itsStyles=s; }
|
|
const QString & name() const { return itsName; }
|
|
const StyleCont styles() const { return itsStyles; }
|
|
|
|
private:
|
|
|
|
QString itsName;
|
|
mutable StyleCont itsStyles;
|
|
};
|
|
|
|
typedef QSet<Family> FamilyCont;
|
|
|
|
struct KFONTINST_EXPORT Families
|
|
{
|
|
Families(const Family &f, bool sys) : isSystem(sys) { items.insert(f); }
|
|
Families(bool sys=false) : isSystem(sys) { }
|
|
|
|
bool isSystem;
|
|
FamilyCont items;
|
|
};
|
|
|
|
inline KDE_EXPORT uint qHash(const Family &key)
|
|
{
|
|
return qHash(key.name());
|
|
}
|
|
|
|
}
|
|
|
|
Q_DECLARE_METATYPE(KFI::Family)
|
|
Q_DECLARE_METATYPE(KFI::Families)
|
|
Q_DECLARE_METATYPE(QList<KFI::Families>)
|
|
|
|
KDE_EXPORT QDBusArgument & operator<<(QDBusArgument &argument, const KFI::Family &obj);
|
|
KDE_EXPORT const QDBusArgument & operator>>(const QDBusArgument &argument, KFI::Family &obj);
|
|
KDE_EXPORT QDBusArgument & operator<<(QDBusArgument &argument, const KFI::Families &obj);
|
|
KDE_EXPORT const QDBusArgument & operator>>(const QDBusArgument &argument, KFI::Families &obj);
|
|
|
|
#endif
|