mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
139 lines
3.4 KiB
C++
139 lines
3.4 KiB
C++
/*
|
|
This file is part of the blog resource.
|
|
|
|
Copyright (c) 2007-2008 Mike McQuaid <mike@mikemcquaid.com>
|
|
|
|
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 KCAL_RESOURCEBLOGCONFIG_H
|
|
#define KCAL_RESOURCEBLOGCONFIG_H
|
|
|
|
#include <kresources/configwidget.h>
|
|
|
|
#include "blog_export.h"
|
|
|
|
#include "resourceblog.h"
|
|
|
|
class KUrlRequester;
|
|
class KLineEdit;
|
|
class KComboBox;
|
|
|
|
namespace KCal
|
|
{
|
|
|
|
class ResourceCachedReloadConfig;
|
|
class ResourceCachedSaveConfig;
|
|
|
|
/**
|
|
The class provides a configuration widget for blog resource.
|
|
|
|
@see ResourceBlog
|
|
*/
|
|
class KCAL_RESOURCEBLOG_EXPORT ResourceBlogConfig : public KRES::ConfigWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
/**
|
|
Creates a configuration widget for blog resource.
|
|
|
|
@param parent The parent widget to attach to.
|
|
*/
|
|
explicit ResourceBlogConfig( QWidget *parent = 0 );
|
|
|
|
/**
|
|
Destroy the configuration widget for blog resource.
|
|
*/
|
|
~ResourceBlogConfig();
|
|
|
|
public Q_SLOTS:
|
|
/**
|
|
Loads the settings for the blog resource for the widget's defaults.
|
|
|
|
@param resource The ResourceBlog object.
|
|
*/
|
|
void loadSettings( KRES::Resource *resource );
|
|
|
|
/**
|
|
Saves the entered settings from the widget to the blog resource.
|
|
|
|
@param resource The ResourceBlog object.
|
|
*/
|
|
void saveSettings( KRES::Resource *resource );
|
|
|
|
/**
|
|
Saves the entered settings from the widget to the blog resource.
|
|
|
|
@param blogs A list of maps containing the blogs' IDs and descriptions.
|
|
*/
|
|
void slotBlogInfoRetrieved( const QList<QMap<QString,QString> > &blogs );
|
|
|
|
/**
|
|
Performs operations on an API change.
|
|
|
|
@param index The index of the new API selected.
|
|
*/
|
|
void slotBlogAPIChanged( int index );
|
|
|
|
private:
|
|
/**
|
|
Used to enter the URL used for XML-RPC access to the blog.
|
|
*/
|
|
KUrlRequester *mUrl;
|
|
|
|
/**
|
|
Used to enter the username for the blog's XML-RPC authentication.
|
|
*/
|
|
KLineEdit *mUsername;
|
|
|
|
/**
|
|
Used to enter the password for the blog's XML-RPC authentication.
|
|
*/
|
|
KLineEdit *mPassword;
|
|
|
|
/**
|
|
The combobox used to select the XML-RPC API used to access the blog.
|
|
*/
|
|
KComboBox *mAPI;
|
|
|
|
/**
|
|
The combobox used to select the blog to post to.
|
|
*/
|
|
KComboBox *mBlogs;
|
|
|
|
/**
|
|
Used to enter the number of posts to download when loading from the blog.
|
|
*/
|
|
KLineEdit *mDownloadCount;
|
|
|
|
/**
|
|
A widget to configure the cache reload options.
|
|
*/
|
|
ResourceCachedReloadConfig *mReloadConfig;
|
|
|
|
/**
|
|
A widget to configure the cache save options.
|
|
*/
|
|
ResourceCachedSaveConfig *mSaveConfig;
|
|
|
|
/**
|
|
The local blog resource used to retrieve list of the blogs for mBlogs.
|
|
*/
|
|
ResourceBlog *mBlog;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|