2007-11-14 22:18:48 -05:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006, crypton
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2008-11-25 20:19:09 -05:00
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#ifndef _MESSAGESDIALOG_H
|
|
|
|
#define _MESSAGESDIALOG_H
|
|
|
|
|
|
|
|
#include <QFileDialog>
|
|
|
|
|
|
|
|
#include "mainpage.h"
|
|
|
|
#include "ui_MessagesDialog.h"
|
|
|
|
|
|
|
|
class MessagesDialog : public MainPage
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
/** Default Constructor */
|
|
|
|
MessagesDialog(QWidget *parent = 0);
|
|
|
|
/** Default Destructor */
|
2007-11-14 22:18:48 -05:00
|
|
|
void insertMsgTxtAndFiles();
|
2008-09-04 15:28:35 -04:00
|
|
|
virtual void keyPressEvent(QKeyEvent *) ;
|
2009-02-22 12:36:39 -05:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void insertMessages();
|
2008-11-25 20:19:09 -05:00
|
|
|
private slots:
|
|
|
|
|
|
|
|
/** Create the context popup menu and it's submenus */
|
2007-11-14 22:18:48 -05:00
|
|
|
void messageslistWidgetCostumPopupMenu( QPoint point );
|
|
|
|
void msgfilelistWidgetCostumPopupMenu(QPoint);
|
|
|
|
|
2009-02-22 12:36:39 -05:00
|
|
|
void changeBox( int newrow );
|
|
|
|
void updateCurrentMessage ( QTreeWidgetItem * item, QTreeWidgetItem * item2 );
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
void newmessage();
|
2008-11-25 20:19:09 -05:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
void replytomessage();
|
2009-02-09 08:24:05 -05:00
|
|
|
void replyallmessage();
|
2008-11-25 20:19:09 -05:00
|
|
|
void forwardmessage();
|
|
|
|
|
2008-03-26 10:22:51 -04:00
|
|
|
void print();
|
2008-11-25 20:19:09 -05:00
|
|
|
void printpreview();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
void removemessage();
|
2008-11-25 20:19:09 -05:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
void getcurrentrecommended();
|
|
|
|
void getallrecommended();
|
|
|
|
|
2008-01-26 08:08:28 -05:00
|
|
|
/* handle splitter */
|
|
|
|
void togglefileview();
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
private:
|
|
|
|
|
|
|
|
bool getCurrentMsg(std::string &cid, std::string &mid);
|
2009-02-22 12:36:39 -05:00
|
|
|
void setMsgAsRead(QTreeWidgetItem *);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
std::string mCurrCertId;
|
|
|
|
std::string mCurrMsgId;
|
2008-11-25 20:19:09 -05:00
|
|
|
|
|
|
|
/** Define the popup menus for the Context menu */
|
2007-11-14 22:18:48 -05:00
|
|
|
QMenu* contextMnu;
|
|
|
|
|
2008-11-25 20:19:09 -05:00
|
|
|
/** Defines the actions for the context menu */
|
|
|
|
QAction* newmsgAct;
|
2007-11-14 22:18:48 -05:00
|
|
|
QAction* replytomsgAct;
|
2009-02-09 08:24:05 -05:00
|
|
|
QAction* replyallmsgAct;
|
2008-11-25 20:19:09 -05:00
|
|
|
QAction* forwardmsgAct;
|
2007-11-14 22:18:48 -05:00
|
|
|
QAction* removemsgAct;
|
|
|
|
|
|
|
|
QAction* getRecAct;
|
|
|
|
QAction* getAllRecAct;
|
|
|
|
|
2008-11-25 20:19:09 -05:00
|
|
|
/** Qt Designer generated object */
|
|
|
|
Ui::MessagesDialog ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|