Files
RedBear-OS/local/recipes/kde/kf6-attica/source/src/folder.h
T
vasilito e8a15d396a fix: KF6Attica recipe, kf6-knewstuff Attica dep, topo-sort cycle error
- 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
2026-04-30 01:32:25 +01:00

117 lines
2.2 KiB
C++

/*
This file is part of KDE.
SPDX-FileCopyrightText: 2008 Cornelius Schumacher <schumacher@kde.org>
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
#ifndef ATTICA_FOLDER_H
#define ATTICA_FOLDER_H
#include "attica_export.h"
#include <QList>
#include <QSharedDataPointer>
#include <QString>
namespace Attica
{
/**
* @class Folder folder.h <Attica/Folder>
*
* Represents a single mail folder
*/
class ATTICA_EXPORT Folder
{
public:
typedef QList<Folder> List;
class Parser;
/**
* Creates an empty Folder
*/
Folder();
/**
* Copy constructor.
* @param other the Folder to copy from
*/
Folder(const Folder &other);
/**
* Assignment operator.
* @param other the Folder to assign from
* @return pointer to this Folder
*/
Folder &operator=(const Folder &other);
/**
* Destructor.
*/
~Folder();
/**
* Sets the id of the Folder.
* The id uniquely identifies a Folder with the OCS API.
* @param id the new id
*/
void setId(const QString &id);
/**
* Gets the id of the Folder.
* The id uniquely identifies a Folder with the OCS API.
* @return the id
*/
QString id() const;
/**
* Sets the name of the Folder.
* @param name the new name
*/
void setName(const QString &name);
/**
* Gets the name of the Folder.
* @return the name
*/
QString name() const;
/**
* Sets the number of messages in the Folder.
* @param messageCount the new number of messages
*/
void setMessageCount(int messageCount);
/**
* Gets the number of messages in the Folder.
* @return the number of messages
*/
int messageCount() const;
/**
* Sets the type of the folder
* @param type the new type
*/
void setType(const QString &type);
/**
* Gets the type of the Folder.
* @return the type
*/
QString type() const;
/**
* Checks whether this Folder has an id
* @return @c true if an id has been set, @c false otherwise
*/
bool isValid() const;
private:
class Private;
QSharedDataPointer<Private> d;
};
}
#endif