/usr/include/kblog/metaweblog.h is in kdepimlibs5-dev 4:4.14.10-7+b2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | /*
This file is part of the kblog library.
Copyright (c) 2004 Reinhold Kainhofer <reinhold@kainhofer.com>
Copyright (c) 2006-2007 Christian Weilbach <christian_weilbach@web.de>
Copyright (c) 2007 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 KBLOG_METAWEBLOG_H
#define KBLOG_METAWEBLOG_H
#include <kblog/blogger1.h>
class KUrl;
/**
@file
This file is part of the for accessing Blog Servers
and defines the MetaWeblog class.
@author Reinhold Kainhofer \<reinhold\@kainhofer.com\>
@author Christian Weilbach \<christian\@whiletaker.homeip.net\>
*/
namespace KBlog {
class MetaWeblogPrivate;
/**
@brief
A class that can be used for access to MetaWeblog blogs. Almost every
blog server supports MetaWeblog. Compared to Blogger 1.0 it is a
superset of functions added to the its definition. MetaWeblog is much
more functional, but has some drawbacks, e.g. security when compared to
GData which is based on Atom API and is quite new.
@code
Blog* myblog = new MetaWeblog("http://example.com/xmlrpc/gateway.php");
myblog->setUsername( "some_user_id" );
myblog->setPassword( "YouRFuNNYPasSwoRD" );
myblog->setBlogId( "1" ); // can be caught by listBlogs()
KBlog::BlogPost *post = new BlogPost();
post->setTitle( "This is the title." );
post->setContent( "Here is some the content..." );
myblog->createPost( post );
@endcode
@author Christian Weilbach \<christian\@whiletaker.homeip.net\>
@author Reinhold Kainhofer \<reinhold\@kainhofer.com\>
*/
class KBLOG_EXPORT MetaWeblog : public Blogger1
{
Q_OBJECT
public:
/**
Create an object for MetaWeblog
@param server is the url for the xmlrpc gateway.
@param parent is the parent object.
*/
explicit MetaWeblog( const KUrl &server, QObject *parent = 0 );
/**
Destroy the object.
*/
virtual ~MetaWeblog();
/**
Returns the of the inherited object.
*/
QString interfaceName() const;
/**
List the categories of the blog.
@see listedCategories( const QList\<QMap\<QString,QString\> \>& )
*/
virtual void listCategories();
/**
Create a new media object, e.g. picture, on server.
@param media The media to send.
*/
virtual void createMedia( KBlog::BlogMedia *media );
Q_SIGNALS:
/**
This signal is emitted when a media has been created
on the server.
@param media The created media.
@see createMedia( KBlog::BlogMedia *media )
*/
void createdMedia( KBlog::BlogMedia *media );
/**
This signal is emitted when the last category of the listCategories()
job has been fetched.
@param categories This list contains the categories. Each map has the keys:
name, description, htmlUrl, rssUrl.
@see listCategories()
*/
void listedCategories( const QList<QMap<QString,QString> >& categories );
protected:
/**
Constructor needed for private inheritance.
*/
MetaWeblog( const KUrl &server, MetaWeblogPrivate &dd, QObject *parent = 0 );
private:
Q_DECLARE_PRIVATE( MetaWeblog )
Q_PRIVATE_SLOT( d_func(),
void slotListCategories( const QList<QVariant> &, const QVariant & ) )
Q_PRIVATE_SLOT( d_func(),
void slotCreateMedia( const QList<QVariant> &, const QVariant & ) )
};
} //namespace KBlog
#endif
|