[prev in list] [next in list] [prev in thread] [next in thread] 

List:       atlantik-devel
Subject:    [atlantik-cvs] CVS: kdegames/atlantik/libatlantic configoption.cpp,
From:       kde () office ! kde ! org
Date:       2003-12-07 22:38:03
[Download RAW message or body]

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 <cap@capsi.com>
//
// 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 <cap@capsi.com>
//
// 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 <qobject.h>
#include <qstring.h>

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
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic