KNewStuff
category.cpp
Go to the documentation of this file.00001 /* 00002 This file is part of KNewStuff2. 00003 Copyright (c) 2006, 2007 Josef Spillner <spillner@kde.org> 00004 00005 This library is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU Library General Public 00007 License as published by the Free Software Foundation; either 00008 version 2 of the License, or (at your option) any later version. 00009 00010 This library is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 Library General Public License for more details. 00014 00015 You should have received a copy of the GNU Library General Public License 00016 along with this library; see the file COPYING.LIB. If not, write to 00017 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00018 Boston, MA 02110-1301, USA. 00019 */ 00020 00021 #include "category.h" 00022 00023 using namespace KNS; 00024 00025 struct KNS::CategoryPrivate { 00026 KTranslatable mName; 00027 KTranslatable mDescription; 00028 KUrl mIcon; 00029 QString mId; 00030 }; 00031 00032 Category::Category() 00033 : d(new CategoryPrivate) 00034 { 00035 } 00036 00037 Category::~Category() 00038 { 00039 delete d; 00040 } 00041 00042 void Category::setId(const QString& id) 00043 { 00044 d->mId = id; 00045 } 00046 00047 QString Category::id() const 00048 { 00049 return d->mId; 00050 } 00051 00052 void Category::setName(const KTranslatable& name) 00053 { 00054 d->mName = name; 00055 } 00056 00057 KTranslatable Category::name() const 00058 { 00059 return d->mName; 00060 } 00061 00062 void Category::setDescription(const KTranslatable &description) 00063 { 00064 d->mDescription = description; 00065 } 00066 00067 KTranslatable Category::description() const 00068 { 00069 return d->mDescription; 00070 } 00071 00072 void Category::setIcon(const KUrl& icon) 00073 { 00074 d->mIcon = icon; 00075 } 00076 00077 KUrl Category::icon() const 00078 { 00079 return d->mIcon; 00080 } 00081