/* This file is part of KDE. SPDX-FileCopyrightText: 2010 Intel Corporation SPDX-FileContributor: Mateu Batle Sastre SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL */ #ifndef ATTICA_ICON_H #define ATTICA_ICON_H #include #include #include "attica_export.h" namespace Attica { /** @class Icon icon.h The Icon class contains information about an icon. It consists of a Url and icon size information. */ class ATTICA_EXPORT Icon { public: typedef QList List; /** * Creates an empty Icon */ Icon(); /** * Copy constructor. * @param other the Icon to copy from */ Icon(const Icon &other); /** * Assignment operator. * @param other the Icon to assign from * @return pointer to this Icon */ Icon &operator=(const Icon &other); /** * Destructor. */ ~Icon(); QUrl url() const; void setUrl(const QUrl &url); uint width() const; void setWidth(uint width); uint height() const; void setHeight(uint height); private: class Private; QSharedDataPointer d; }; } #endif