X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=main%2Fsettings.h;fp=main%2Fsettings.h;h=f2e0d384fbd2c962f190c5fbf981f70f3689d39f;hp=0000000000000000000000000000000000000000;hb=2a068c11e76c7b34afb64d443dbb1afd2e208aaa;hpb=12369966345e76e3bba92f64c84c940ef4d8d916 diff --git a/main/settings.h b/main/settings.h new file mode 100644 index 00000000..f2e0d384 --- /dev/null +++ b/main/settings.h @@ -0,0 +1,47 @@ +/*************************************************************************** + * Copyright (C) 2005-07 by The Quassel Team * + * devel@quassel-irc.org * + * * + * 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., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef _SETTINGS_H_ +#define _SETTINGS_H_ + +#include + +class Settings { + + public: + //Settings(); + //~Settings(); + static void init(); + static void setProfile(const QString &string); + static QString profile(); + + static void setGuiValue(const QString &key, const QVariant &value); + static QVariant guiValue (const QString &key, const QVariant &defaultValue = QVariant()); + static void setCoreValue(const QString &user, const QString &key, const QVariant &value); + static QVariant coreValue (const QString &user, const QString& key, const QVariant &defaultValue = QVariant()); + + private: + static QString curProfile; + +}; + +//extern Settings *settings; + +#endif