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
|
|
|
|
|
2010-02-13 13:49:56 -05:00
|
|
|
#include <list>
|
2008-11-25 20:19:09 -05:00
|
|
|
#include <QFileDialog>
|
2010-02-13 13:49:56 -05:00
|
|
|
#include <QModelIndex>
|
|
|
|
#include <QSortFilterProxyModel>
|
|
|
|
|
|
|
|
#include <QVariant>
|
2008-11-25 20:19:09 -05:00
|
|
|
|
2010-02-13 13:49:56 -05:00
|
|
|
#include "rsiface/rsmsgs.h"
|
2008-11-25 20:19:09 -05:00
|
|
|
#include "mainpage.h"
|
|
|
|
#include "ui_MessagesDialog.h"
|
|
|
|
|
|
|
|
class MessagesDialog : public MainPage
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
/** Default Constructor */
|
|
|
|
MessagesDialog(QWidget *parent = 0);
|
|
|
|
/** Default Destructor */
|
2010-04-27 17:46:28 -04:00
|
|
|
~MessagesDialog();
|
|
|
|
|
2010-02-13 13:49:56 -05:00
|
|
|
void insertMsgTxtAndFiles(QModelIndex index = QModelIndex());
|
2010-05-06 10:39:50 -04:00
|
|
|
// replaced by shortcut
|
|
|
|
// virtual void keyPressEvent(QKeyEvent *) ;
|
2010-02-13 13:49:56 -05:00
|
|
|
void updateMessageSummaryList();
|
2009-02-22 12:36:39 -05:00
|
|
|
|
|
|
|
public slots:
|
2010-01-25 07:44:12 -05:00
|
|
|
void insertMessages();
|
2010-02-13 13:49:56 -05:00
|
|
|
|
2010-01-25 07:44:12 -05:00
|
|
|
|
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 );
|
2010-04-27 17:46:28 -04:00
|
|
|
void updateCurrentMessage();
|
|
|
|
void currentChanged(const QModelIndex&);
|
|
|
|
void clicked(const QModelIndex&);
|
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
|
|
|
|
2010-01-22 14:23:12 -05:00
|
|
|
bool fileSave();
|
|
|
|
bool fileSaveAs();
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
void removemessage();
|
2008-11-25 20:19:09 -05:00
|
|
|
|
2010-01-16 13:03:35 -05:00
|
|
|
void anchorClicked (const QUrl &);
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
void getcurrentrecommended();
|
2009-05-17 15:38:42 -04:00
|
|
|
// void getallrecommended();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2008-01-26 08:08:28 -05:00
|
|
|
/* handle splitter */
|
|
|
|
void togglefileview();
|
2010-01-21 20:05:45 -05:00
|
|
|
|
|
|
|
void buttonstextbesideicon();
|
|
|
|
void buttonsicononly();
|
|
|
|
void buttonstextundericon();
|
2010-01-25 07:44:12 -05:00
|
|
|
|
|
|
|
void loadToolButtonsettings();
|
2010-02-13 13:49:56 -05:00
|
|
|
|
|
|
|
void filterRegExpChanged();
|
|
|
|
void filterColumnChanged();
|
2010-02-14 07:29:50 -05:00
|
|
|
|
|
|
|
void clearFilter();
|
|
|
|
void toggleclearButton();
|
2008-01-26 08:08:28 -05:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
private:
|
2010-02-13 13:49:56 -05:00
|
|
|
class QStandardItemModel *MessagesModel;
|
|
|
|
QSortFilterProxyModel *proxyModel;
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
bool getCurrentMsg(std::string &cid, std::string &mid);
|
2010-02-13 13:49:56 -05:00
|
|
|
void setMsgAsRead(const QModelIndex &index);
|
|
|
|
|
2010-01-22 14:23:12 -05:00
|
|
|
void setCurrentFileName(const QString &fileName);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2010-05-07 18:23:38 -04:00
|
|
|
int getSelectedMsgCount ();
|
2010-02-13 13:49:56 -05:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
std::string mCurrCertId;
|
|
|
|
std::string mCurrMsgId;
|
2008-11-25 20:19:09 -05:00
|
|
|
|
2010-01-22 14:23:12 -05:00
|
|
|
QString fileName;
|
2010-01-25 18:58:48 -05:00
|
|
|
|
|
|
|
QFont mFont;
|
2010-01-22 14:23:12 -05:00
|
|
|
|
2010-04-27 17:46:28 -04:00
|
|
|
// timer and index for showing message
|
|
|
|
QTimer *timer;
|
|
|
|
QModelIndex timerIndex;
|
2010-05-06 10:39:50 -04:00
|
|
|
|
2008-11-25 20:19:09 -05:00
|
|
|
/** Qt Designer generated object */
|
|
|
|
Ui::MessagesDialog ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|