// vim: set tabstop=4 shiftwidth=4 noexpandtab: /* A KIPI plugin to generate HTML image galleries Copyright 2006 by Aurelien Gateau This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambridge, MA 02110-1301, USA. */ #ifndef GALLERYINFO_H #define GALLERYINFO_H // TQt #include // KDE #include // KIPI #include // Local #include #include namespace KIPIHTMLExport { /** * This class stores all the export settings. It is initialized by the * Wizard and read by the Generator. */ class GalleryInfo : public Config { public: /** * Convenience method to get destURL as a KURL rather than a TQString */ KURL destKURL() const { return KURL(destURL()); } TQString fullFormatString() const { return getEnumString("fullFormat"); } TQString thumbnailFormatString() const { return getEnumString("thumbnailFormat"); } TQValueList mCollectionList; TQString getThemeParameterValue(const TQString& theme, const TQString& parameter, const TQString& defaultValue) const; void setThemeParameterValue(const TQString& theme, const TQString& parameter, const TQString& value); private: /** * TDEConfigXT enums are mapped to ints. * This method returns the string associated to the enum value. */ TQString getEnumString(const TQString& itemName) const { // findItem is not marked const :-( GalleryInfo* that=const_cast(this); TDEConfigSkeletonItem* tmp=that->findItem(itemName); TDEConfigSkeleton::ItemEnum* item=dynamic_cast(tmp); Q_ASSERT(item); if (!item) return TQString(); int value=item->value(); TQValueList lst=item->choices(); TQValueList::ConstIterator it=lst.begin(), end=lst.end(); for (int pos=0; it!=end; ++it, pos++) { if (pos==value) { return (*it).name; } } return TQString(); } }; } // namespace #endif /* GALLERYINFO_H */