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"
|
|
|
|
|
2011-06-03 20:46:02 -04:00
|
|
|
class MessageWidget;
|
|
|
|
|
2008-11-25 20:19:09 -05:00
|
|
|
class MessagesDialog : public MainPage
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2012-11-19 11:01:21 -05:00
|
|
|
Q_PROPERTY(QColor textColorInbox READ textColorInbox WRITE setTextColorInbox)
|
|
|
|
|
2008-11-25 20:19:09 -05:00
|
|
|
public:
|
|
|
|
/** Default Constructor */
|
|
|
|
MessagesDialog(QWidget *parent = 0);
|
|
|
|
/** Default Destructor */
|
2010-04-27 17:46:28 -04:00
|
|
|
~MessagesDialog();
|
|
|
|
|
2012-08-05 16:12:55 -04:00
|
|
|
virtual UserNotify *getUserNotify(QObject *parent);
|
|
|
|
|
2010-05-06 10:39:50 -04:00
|
|
|
// replaced by shortcut
|
|
|
|
// virtual void keyPressEvent(QKeyEvent *) ;
|
2009-02-22 12:36:39 -05:00
|
|
|
|
2012-11-19 11:01:21 -05:00
|
|
|
QColor textColorInbox() const { return mTextColorInbox; }
|
|
|
|
|
|
|
|
void setTextColorInbox(QColor color) { mTextColorInbox = color; }
|
|
|
|
|
2011-05-02 17:50:20 -04:00
|
|
|
protected:
|
|
|
|
bool eventFilter(QObject *obj, QEvent *ev);
|
2012-11-19 11:01:21 -05:00
|
|
|
void changeEvent(QEvent *e);
|
2011-05-02 17:50:20 -04:00
|
|
|
|
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 */
|
2013-05-04 18:03:48 -04:00
|
|
|
void messageslistWidgetCustomPopupMenu( QPoint point );
|
|
|
|
void folderlistWidgetCustomPopupMenu(QPoint);
|
|
|
|
void decryptSelectedMsg() ;
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2011-06-04 18:54:03 -04:00
|
|
|
void changeBox(int newrow);
|
|
|
|
void changeQuickView(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();
|
2011-06-03 20:46:02 -04:00
|
|
|
void openAsWindow();
|
|
|
|
void openAsTab();
|
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 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();
|
2011-05-23 19:45:31 -04:00
|
|
|
void markWithStar(bool checked);
|
2010-05-23 13:21:30 -04:00
|
|
|
|
2010-10-29 16:57:23 -04:00
|
|
|
void emptyTrash();
|
|
|
|
|
2011-06-03 20:46:02 -04:00
|
|
|
void buttonStyle();
|
2010-02-13 13:49:56 -05:00
|
|
|
|
2012-04-05 17:03:03 -04:00
|
|
|
void filterChanged(const QString &text);
|
2012-10-29 06:59:26 -04:00
|
|
|
void filterColumnChanged(int column);
|
2010-02-14 07:29:50 -05:00
|
|
|
|
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
|
|
|
|
2011-06-03 20:46:02 -04:00
|
|
|
void tabChanged(int tab);
|
|
|
|
void tabCloseRequested(int tab);
|
|
|
|
|
|
|
|
void updateInterface();
|
|
|
|
|
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;
|
|
|
|
|
2011-06-03 20:46:02 -04:00
|
|
|
void connectActions();
|
|
|
|
|
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);
|
2011-05-23 19:45:31 -04:00
|
|
|
void setMsgAsReadUnread(const QList<int> &Rows, bool read);
|
|
|
|
void setMsgStar(const QList<int> &Rows, bool mark);
|
2010-02-13 13:49:56 -05:00
|
|
|
|
2011-05-23 19:45:31 -04:00
|
|
|
int getSelectedMsgCount (QList<int> *pRows, QList<int> *pRowsRead, QList<int> *pRowsUnread, QList<int> *pRowsStar);
|
2010-05-23 13:21:30 -04:00
|
|
|
bool isMessageRead(int nRow);
|
2011-05-23 19:45:31 -04:00
|
|
|
bool hasMessageStar(int nRow);
|
2010-02-13 13:49:56 -05:00
|
|
|
|
2011-06-03 20:46:02 -04:00
|
|
|
void processSettings(bool load);
|
2010-10-31 15:37:05 -04:00
|
|
|
|
2010-05-27 15:48:52 -04:00
|
|
|
void setToolbarButtonStyle(Qt::ToolButtonStyle style);
|
2011-06-04 18:54:03 -04:00
|
|
|
void fillQuickView();
|
2011-06-03 20:46:02 -04:00
|
|
|
|
|
|
|
void closeTab(const std::string &msgId);
|
|
|
|
|
2012-05-01 05:18:55 -04:00
|
|
|
bool inProcessSettings;
|
2011-06-04 18:54:03 -04:00
|
|
|
bool inChange;
|
2012-05-01 05:18:55 -04:00
|
|
|
int lockUpdate; // use with LockUpdate
|
2010-06-01 18:14:52 -04:00
|
|
|
|
2012-05-01 05:18:55 -04:00
|
|
|
enum { LIST_NOTHING, LIST_BOX, LIST_QUICKVIEW } listMode;
|
2010-05-20 17:53:27 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
std::string mCurrMsgId;
|
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
|
|
|
|
2011-06-03 20:46:02 -04:00
|
|
|
MessageWidget *msgWidget;
|
|
|
|
|
2012-11-19 11:01:21 -05:00
|
|
|
/* Color definitions (for standard see qss.default) */
|
|
|
|
QColor mTextColorInbox;
|
|
|
|
|
2008-11-25 20:19:09 -05:00
|
|
|
/** Qt Designer generated object */
|
|
|
|
Ui::MessagesDialog ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|