kde-extraapps/kdevplatform/project/projectconfigskeleton.h
2015-07-26 14:23:17 +03:00

72 lines
2.3 KiB
C++

/* This file is part of KDevelop
Copyright 2006 Adam Treat <treat@kde.org>
Copyright 2007 Andreas Pakulat <apaku@gmx.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KDEVPLATFORM_PROJECTCONFIGSKELETON_H
#define KDEVPLATFORM_PROJECTCONFIGSKELETON_H
#include "projectexport.h"
#include <kconfigskeleton.h>
namespace KDevelop
{
class Path;
class KDEVPLATFORMPROJECT_EXPORT ProjectConfigSkeleton: public KConfigSkeleton
{
Q_OBJECT
public:
/**
* Constructs a new skeleton, the skeleton will write to the developer
* configuration file, which is by default located in projectdir/.kdev4
* The defaults will be set from the project file, which is in the projectdir
*
* @param configname The absolute filename of the developer configuration file
*/
ProjectConfigSkeleton( const QString & configname );
virtual ~ProjectConfigSkeleton();
void setDeveloperTempFile( const QString& );
void setProjectTempFile( const QString& );
void setProjectFile( const Path& );
void setDeveloperFile( const Path& );
void setDefaults();
bool useDefaults( bool b );
void writeConfig();
Path projectFile() const;
Path developerFile() const;
private:
/**
* There's no way in KDE4 API to find out the file that the config object
* was created from, so we can't apply defaults when using this
* constructors. Thus I'm making this private, so we can find out when
* this constructor is used and see if we need to add appropriate API to
* kdelibs
*/
ProjectConfigSkeleton( KSharedConfig::Ptr config );
struct ProjectConfigSkeletonPrivate * const d;
};
}
#endif