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 Lesser General Public 00007 License as published by the Free Software Foundation; either 00008 version 2.1 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 Lesser General Public License for more details. 00014 00015 You should have received a copy of the GNU Lesser General Public 00016 License along with this library. If not, see <http://www.gnu.org/licenses/>. 00017 */ 00018 00019 #include "category.h" 00020 00021 using namespace KNS; 00022 00023 struct KNS::CategoryPrivate { 00024 KTranslatable mName; 00025 KTranslatable mDescription; 00026 KUrl mIcon; 00027 QString mId; 00028 }; 00029 00030 Category::Category() 00031 : d(new CategoryPrivate) 00032 { 00033 } 00034 00035 Category::~Category() 00036 { 00037 delete d; 00038 } 00039 00040 void Category::setId(const QString& id) 00041 { 00042 d->mId = id; 00043 } 00044 00045 QString Category::id() const 00046 { 00047 return d->mId; 00048 } 00049 00050 void Category::setName(const KTranslatable& name) 00051 { 00052 d->mName = name; 00053 } 00054 00055 KTranslatable Category::name() const 00056 { 00057 return d->mName; 00058 } 00059 00060 void Category::setDescription(const KTranslatable &description) 00061 { 00062 d->mDescription = description; 00063 } 00064 00065 KTranslatable Category::description() const 00066 { 00067 return d->mDescription; 00068 } 00069 00070 void Category::setIcon(const KUrl& icon) 00071 { 00072 d->mIcon = icon; 00073 } 00074 00075 KUrl Category::icon() const 00076 { 00077 return d->mIcon; 00078 } 00079