e8a15d396a
- Created kf6-attica recipe (minimal core library build providing KF6::Attica cmake target, needed by kf6-knewstuff). v6.10.0, QML/tests/examples disabled. - Added kf6-attica to redbear-full.toml config, integrate-redbear.sh symlink, and recipes/kde/ symlink. - Fixed kf6-knewstuff: removed stale find_package(KF6Attica) suppression; added kf6-attica as dependency. Now publishes to repo (core-only build produces empty package — upstream code structure yields no libs with QtQuick/widgets/tools off). - Cookbook topo-sort: changed cycle fallback from silent Ok(recipes) to Err(Recursion) — surfaces dependency graph bugs instead of hiding them. - Fixed stale QtNetwork comment: QtNetwork IS enabled in qtbase since 2026-04-29 (relibc DNS resolver hardened). - Verified: kf6-attica builds, kf6-knewstuff publishes to repo
136 lines
1.9 KiB
C++
136 lines
1.9 KiB
C++
/*
|
|
This file is part of KDE.
|
|
|
|
SPDX-FileCopyrightText: 2011 Laszlo Papp <djszapi@archlinux.us>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
*/
|
|
|
|
#include "forum.h"
|
|
|
|
using namespace Attica;
|
|
|
|
class Q_DECL_HIDDEN Forum::Private : public QSharedData
|
|
{
|
|
public:
|
|
QString m_id;
|
|
QString m_name;
|
|
QString m_description;
|
|
QDateTime m_date;
|
|
QUrl m_icon;
|
|
int m_childCount;
|
|
int m_topics;
|
|
QList<Forum> m_children;
|
|
|
|
Private()
|
|
: m_childCount(0)
|
|
, m_topics(0)
|
|
{
|
|
}
|
|
};
|
|
|
|
Forum::Forum()
|
|
: d(new Private)
|
|
{
|
|
}
|
|
|
|
Forum::Forum(const Forum &other)
|
|
: d(other.d)
|
|
{
|
|
}
|
|
|
|
Forum &Forum::operator=(const Attica::Forum &other)
|
|
{
|
|
d = other.d;
|
|
return *this;
|
|
}
|
|
|
|
Forum::~Forum()
|
|
{
|
|
}
|
|
|
|
void Forum::setId(const QString &id)
|
|
{
|
|
d->m_id = id;
|
|
}
|
|
|
|
QString Forum::id() const
|
|
{
|
|
return d->m_id;
|
|
}
|
|
|
|
void Forum::setName(const QString &name)
|
|
{
|
|
d->m_name = name;
|
|
}
|
|
|
|
QString Forum::name() const
|
|
{
|
|
return d->m_name;
|
|
}
|
|
|
|
void Forum::setDescription(const QString &description)
|
|
{
|
|
d->m_description = description;
|
|
}
|
|
|
|
QString Forum::description() const
|
|
{
|
|
return d->m_description;
|
|
}
|
|
|
|
void Forum::setDate(const QDateTime &date)
|
|
{
|
|
d->m_date = date;
|
|
}
|
|
|
|
QDateTime Forum::date() const
|
|
{
|
|
return d->m_date;
|
|
}
|
|
|
|
void Forum::setIcon(const QUrl &icon)
|
|
{
|
|
d->m_icon = icon;
|
|
}
|
|
|
|
QUrl Forum::icon() const
|
|
{
|
|
return d->m_icon;
|
|
}
|
|
|
|
void Forum::setChildCount(const int childCount)
|
|
{
|
|
d->m_childCount = childCount;
|
|
}
|
|
|
|
int Forum::childCount() const
|
|
{
|
|
return d->m_childCount;
|
|
}
|
|
|
|
void Forum::setChildren(QList<Forum> children)
|
|
{
|
|
d->m_children = std::move(children); // TODO KF6 Make QList const & and remove the std::move
|
|
}
|
|
|
|
QList<Forum> Forum::children() const
|
|
{
|
|
return d->m_children;
|
|
}
|
|
|
|
void Forum::setTopics(const int topics)
|
|
{
|
|
d->m_topics = topics;
|
|
}
|
|
|
|
int Forum::topics() const
|
|
{
|
|
return d->m_topics;
|
|
}
|
|
|
|
bool Forum::isValid() const
|
|
{
|
|
return !(d->m_id.isEmpty());
|
|
}
|