kcatalogue.h
00001 /* This file is part of the KDE libraries 00002 Copyright (c) 2001 Hans Petter Bieker <bieker@kde.org> 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Library General Public 00006 License as published by the Free Software Foundation; either 00007 version 2 of the License, or (at your option) any later version. 00008 00009 This library is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 Library General Public License for more details. 00013 00014 You should have received a copy of the GNU Library General Public License 00015 along with this library; see the file COPYING.LIB. If not, write to 00016 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00017 Boston, MA 02110-1301, USA. 00018 */ 00019 00020 #ifndef KCATALOGUE_H 00021 #define KCATALOGUE_H 00022 00023 #include <tqstring.h> 00024 #include "kdelibs_export.h" 00025 00026 struct kde_loaded_l10nfile; 00027 00028 class KCataloguePrivate; 00029 00036 //REVISED: hausmann 00037 class KDECORE_EXPORT KCatalogue 00038 { 00039 public: 00046 explicit KCatalogue(const TQString & name = TQString::null, const TQString & language = TQString::null); 00047 00051 KCatalogue(const KCatalogue & rhs); 00052 00056 KCatalogue & operator = ( const KCatalogue & rhs); 00057 00061 virtual ~KCatalogue(); 00062 00068 TQString name() const; 00069 00075 TQString language() const; 00076 00083 int pluralType() const; 00084 00091 void setPluralType( int pluralType ); 00092 00093 00103 const char * translate( const char * msgid ) const; 00104 00105 private: 00112 void setFileName( const TQString & fileName ); 00118 TQString fileName() const; 00119 00123 void doUnload(); 00124 00125 private: 00126 KCataloguePrivate * d; 00127 }; 00128 00129 #endif