Sophie

Sophie

distrib > Mandriva > 2009.0 > i586 > by-pkgid > 9e7967c7d90505f6eaae6a859313fe67 > files > 25

kblogger-debug-1.0-0.alpha2.1mdv2009.0.i586.rpm

// This file is generated by kconfig_compiler from profile.kcfg.
// All changes you do to this file will be lost.
#ifndef KBLOGGER_PROFILECONFIG_H
#define KBLOGGER_PROFILECONFIG_H

#include <kconfigskeleton.h>
#include <kdebug.h>

namespace KBlogger {

class profileConfig : public KConfigSkeleton
{
  public:

    profileConfig( const QString & ProfileName );
    ~profileConfig();

    /**
      Set AccountName
    */
    void setAccountName( const QString & v )
    {
      if (!isImmutable( QString::fromLatin1 ( "AccountName" ) ))
        mAccountName = v;
    }

    /**
      Get AccountName
    */
    QString accountName() const
    {
      return mAccountName;
    }

    /**
      Set Username
    */
    void setUser( const QString & v )
    {
      if (!isImmutable( QString::fromLatin1 ( "User" ) ))
        mUser = v;
    }

    /**
      Get Username
    */
    QString user() const
    {
      return mUser;
    }

    /**
      Set Password
    */
    void setPassword( const QString & v )
    {
      if (!isImmutable( QString::fromLatin1 ( "Password" ) ))
        mPassword = v;
    }

    /**
      Get Password
    */
    QString password() const
    {
      return mPassword;
    }

    /**
      Set BlogSystem
    */
    void setBlogSystem( int v )
    {
      if (!isImmutable( QString::fromLatin1 ( "BlogSystem" ) ))
        mBlogSystem = v;
    }

    /**
      Get BlogSystem
    */
    int blogSystem() const
    {
      return mBlogSystem;
    }

    /**
      Set Type
    */
    void setType( int v )
    {
      if (!isImmutable( QString::fromLatin1 ( "Type" ) ))
        mType = v;
    }

    /**
      Get Type
    */
    int type() const
    {
      return mType;
    }

    /**
      Set Url
    */
    void setUrl( const QString & v )
    {
      if (!isImmutable( QString::fromLatin1 ( "Url" ) ))
        mUrl = v;
    }

    /**
      Get Url
    */
    QString url() const
    {
      return mUrl;
    }

    /**
      Set BlogId
    */
    void setBlogId( const QString & v )
    {
      if (!isImmutable( QString::fromLatin1 ( "BlogId" ) ))
        mBlogId = v;
    }

    /**
      Get BlogId
    */
    QString blogId() const
    {
      return mBlogId;
    }

    /**
      Set Blog Name
    */
    void setBlogName( const QString & v )
    {
      if (!isImmutable( QString::fromLatin1 ( "BlogName" ) ))
        mBlogName = v;
    }

    /**
      Get Blog Name
    */
    QString blogName() const
    {
      return mBlogName;
    }

  protected:
    QString mParamProfileName;

    // $(ProfileName)
    QString mAccountName;
    QString mUser;
    QString mPassword;
    int mBlogSystem;
    int mType;
    QString mUrl;
    QString mBlogId;
    QString mBlogName;

  private:
    // Include custom additions
    #include "profileconfig_addons.h"
};

}

#endif