Update of /home/kde/kdegames/atlantik/libatlantic In directory office:/tmp/cvs-serv28389/libatlantic Added Files: Tag: atlantik_3_3_branch configoption.cpp configoption.h Log Message: network/core support for new configupdate behavior --- NEW FILE: configoption.cpp --- // Copyright (c) 2003 Rob Kaper // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License version 2.1 as published by the Free Software Foundation. // // This library 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 // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with this library; see the file COPYING.LIB. If not, write to // the Free Software Foundation, Inc., 59 Temple Place - Suite 330, // Boston, MA 02111-1307, USA. #include "configoption.h" ConfigOption::ConfigOption(int configId) : QObject() { m_id = configId; m_name = ""; m_description = ""; m_changed = false; } int ConfigOption::id() { return m_id; } void ConfigOption::setName(const QString &name) { if (m_name != name) { m_name = name; m_changed = true; } } QString ConfigOption::name() const { return m_name; } void ConfigOption::setDescription(const QString &description) { if (m_description != description) { m_description = description; m_changed = true; } } QString ConfigOption::description() const { return m_description; } void ConfigOption::update(bool force) { if (m_changed || force) { emit changed(this); m_changed = false; } } #include "configoption.moc" --- NEW FILE: configoption.h --- // Copyright (c) 2003 Rob Kaper // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License version 2.1 as published by the Free Software Foundation. // // This library 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 // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with this library; see the file COPYING.LIB. If not, write to // the Free Software Foundation, Inc., 59 Temple Place - Suite 330, // Boston, MA 02111-1307, USA. #ifndef LIBATLANTIC_CONFIGOPTION_H #define LIBATLANTIC_CONFIGOPTION_H #include #include class ConfigOption : public QObject { Q_OBJECT public: ConfigOption(int configId); int id(); void setName(const QString &name); QString name() const; void setDescription(const QString &host); QString description() const; void update(bool force = false); signals: void changed(ConfigOption *configOption); private: int m_id; bool m_changed; QString m_name, m_description; }; #endif _______________________________________________ atlantik-cvs mailing list atlantik-cvs@kde.org https://mail.kde.org/mailman/listinfo/atlantik-cvs