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 <QSortFilterProxyModel>
|
|
|
|
|
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-05-06 10:39:50 -04:00
|
|
|
// replaced by shortcut
|
|
|
|
// virtual void keyPressEvent(QKeyEvent *) ;
|
2009-02-22 12:36:39 -05:00
|
|
|
|
2011-05-02 17:50:20 -04:00
|
|
|
protected:
|
|
|
|
bool eventFilter(QObject *obj, QEvent *ev);
|
|
|
|
|
2009-02-22 12:36:39 -05:00
|
|
|
public slots:
|
2010-01-25 07:44:12 -05:00
|
|
|
void insertMessages();
|
2010-08-22 18:12:26 -04:00
|
|
|
void messagesTagsChanged();
|
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 */
|
2010-09-27 20:03:12 -04:00
|
|
|
void messageslistWidgetCostumPopupMenu( QPoint point );
|
2010-10-29 16:57:23 -04:00
|
|
|
void msgfilelistWidgetCostumPopupMenu(QPoint);
|
|
|
|
void folderlistWidgetCostumPopupMenu(QPoint);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-02-22 12:36:39 -05:00
|
|
|
void changeBox( int newrow );
|
2010-06-01 18:14:52 -04:00
|
|
|
void changeTag( int newrow );
|
2010-04-27 17:46:28 -04:00
|
|
|
void updateCurrentMessage();
|
|
|
|
void currentChanged(const QModelIndex&);
|
|
|
|
void clicked(const QModelIndex&);
|
2010-05-25 05:32:14 -04:00
|
|
|
void doubleClicked(const QModelIndex &);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
void newmessage();
|
2010-06-14 14:16:32 -04:00
|
|
|
void editmessage();
|
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();
|
2010-05-28 10:42:54 -04:00
|
|
|
void undeletemessage();
|
2010-05-27 15:48:52 -04:00
|
|
|
|
2010-05-23 13:21:30 -04:00
|
|
|
void markAsRead();
|
|
|
|
void markAsUnread();
|
|
|
|
|
2010-10-29 16:57:23 -04:00
|
|
|
void emptyTrash();
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
void getcurrentrecommended();
|
2010-11-15 19:05:17 -05: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();
|
2010-05-27 15:48:52 -04:00
|
|
|
void tagAboutToShow();
|
2011-05-21 12:26:00 -04:00
|
|
|
void tagSet(int tagId, bool set);
|
|
|
|
void tagRemoveAll();
|
2008-01-26 08:08:28 -05:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
private:
|
2010-06-03 18:12:07 -04:00
|
|
|
class LockUpdate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
LockUpdate (MessagesDialog *pDialog, bool bUpdate);
|
|
|
|
~LockUpdate ();
|
|
|
|
|
2010-08-22 18:12:26 -04:00
|
|
|
void setUpdate(bool bUpdate);
|
|
|
|
|
2010-06-03 18:12:07 -04:00
|
|
|
private:
|
|
|
|
MessagesDialog *m_pDialog;
|
|
|
|
bool m_bUpdate;
|
|
|
|
};
|
|
|
|
|
2010-05-20 17:53:27 -04:00
|
|
|
class QStandardItemModel *MessagesModel;
|
2010-02-13 13:49:56 -05:00
|
|
|
QSortFilterProxyModel *proxyModel;
|
|
|
|
|
2010-08-09 17:20:34 -04:00
|
|
|
void updateMessageSummaryList();
|
2010-05-23 13:21:30 -04:00
|
|
|
void insertMsgTxtAndFiles(QModelIndex index = QModelIndex(), bool bSetToRead = true);
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
bool getCurrentMsg(std::string &cid, std::string &mid);
|
2010-05-23 13:21:30 -04:00
|
|
|
void setMsgAsReadUnread(const QList<int> &Rows, bool bRead);
|
2010-02-13 13:49:56 -05:00
|
|
|
|
2010-01-22 14:23:12 -05:00
|
|
|
void setCurrentFileName(const QString &fileName);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2010-05-27 15:48:52 -04:00
|
|
|
int getSelectedMsgCount (QList<int> *pRows, QList<int> *pRowsRead, QList<int> *pRowsUnread);
|
2010-05-23 13:21:30 -04:00
|
|
|
bool isMessageRead(int nRow);
|
2010-02-13 13:49:56 -05:00
|
|
|
|
2010-05-18 18:37:18 -04:00
|
|
|
/* internal handle splitter */
|
|
|
|
void togglefileview_internal();
|
|
|
|
|
|
|
|
void processSettings(bool bLoad);
|
|
|
|
|
2010-10-31 15:37:05 -04:00
|
|
|
void clearTagLabels();
|
|
|
|
void showTagLabels();
|
|
|
|
|
2010-05-27 15:48:52 -04:00
|
|
|
void setToolbarButtonStyle(Qt::ToolButtonStyle style);
|
2010-06-01 18:14:52 -04:00
|
|
|
void fillTags();
|
2010-05-20 17:53:27 -04:00
|
|
|
bool m_bProcessSettings;
|
2010-06-01 18:14:52 -04:00
|
|
|
bool m_bInChange;
|
2010-06-03 18:12:07 -04:00
|
|
|
int m_nLockUpdate; // use with LockUpdate
|
2010-06-01 18:14:52 -04:00
|
|
|
|
2010-06-04 19:39:33 -04:00
|
|
|
enum { LIST_NOTHING, LIST_BOX, LIST_TAG } m_eListMode;
|
2010-05-20 17:53:27 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
std::string mCurrCertId;
|
|
|
|
std::string mCurrMsgId;
|
2010-10-31 15:37:05 -04:00
|
|
|
QList<QLabel*> tagLabels;
|
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
|
|
|
|
|