2008-04-24 09:14:58 -04:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Robert Fernie
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2008-09-21 16:58:48 -04:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
2008-04-24 09:14:58 -04:00
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#ifndef _BLOG_DIALOG_H
|
|
|
|
#define _BLOG_DIALOG_H
|
|
|
|
|
|
|
|
#include "mainpage.h"
|
|
|
|
#include "ui_BlogDialog.h"
|
|
|
|
|
2008-09-21 16:58:48 -04:00
|
|
|
#include "../gui/feeds/FeedHolder.h"
|
2008-06-20 08:43:23 -04:00
|
|
|
class BlogMsgItem;
|
|
|
|
|
|
|
|
|
|
|
|
class BlogDialog : public MainPage, public FeedHolder, private Ui::BlogDialog
|
2008-04-24 09:14:58 -04:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2008-06-20 08:43:23 -04:00
|
|
|
/** Default Constructor */
|
|
|
|
BlogDialog(QWidget *parent = 0);
|
2008-06-08 14:34:27 -04:00
|
|
|
|
2008-06-20 08:43:23 -04:00
|
|
|
/* FeedHolder Functions (for FeedItem functionality) */
|
|
|
|
virtual void deleteFeedItem(QWidget *item, uint32_t type);
|
|
|
|
virtual void openChat(std::string peerId);
|
|
|
|
virtual void openMsg(uint32_t type, std::string grpId, std::string inReplyTo);
|
2008-06-08 14:34:27 -04:00
|
|
|
|
2008-09-21 16:58:48 -04:00
|
|
|
void updateBlogsStatic();
|
2008-04-29 15:19:07 -04:00
|
|
|
|
2008-06-20 08:43:23 -04:00
|
|
|
private slots:
|
2008-05-18 16:23:09 -04:00
|
|
|
|
2008-09-21 16:58:48 -04:00
|
|
|
void updateBlogs();
|
|
|
|
void postBlog();
|
2008-05-18 16:23:09 -04:00
|
|
|
|
2008-06-20 08:43:23 -04:00
|
|
|
private:
|
|
|
|
void addDummyData();
|
2008-05-04 12:40:39 -04:00
|
|
|
|
2008-06-20 08:43:23 -04:00
|
|
|
QLayout *mLayout;
|
2008-05-12 14:27:15 -04:00
|
|
|
|
2008-06-20 08:43:23 -04:00
|
|
|
std::map<std::string, BlogMsgItem *> mBlogMsgItems;
|
2008-04-24 09:14:58 -04:00
|
|
|
};
|
|
|
|
|
2008-05-18 16:23:09 -04:00
|
|
|
|
|
|
|
|
2008-04-24 09:14:58 -04:00
|
|
|
#endif
|
|
|
|
|