mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
100 lines
2.8 KiB
C++
100 lines
2.8 KiB
C++
// SPDX-FileCopyrightText: Copyright (C) 2015 swift Project Community / Contributors
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
|
|
|
|
//! \file
|
|
|
|
#ifndef SWIFT_GUI_TEXTMESSAGETEXTEDIT_H
|
|
#define SWIFT_GUI_TEXTMESSAGETEXTEDIT_H
|
|
|
|
#include "gui/swiftguiexport.h"
|
|
#include "misc/network/textmessagelist.h"
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QTextEdit>
|
|
#include <QTextDocument>
|
|
|
|
class QAction;
|
|
class QPoint;
|
|
|
|
namespace swift::misc::network
|
|
{
|
|
class CTextMessage;
|
|
}
|
|
namespace swift::gui
|
|
{
|
|
//! Specialized text edit for displaying text messages
|
|
class SWIFT_GUI_EXPORT CTextMessageTextEdit : public QTextEdit
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//! Constructor
|
|
CTextMessageTextEdit(QWidget *parent = nullptr);
|
|
|
|
//! Destructor
|
|
virtual ~CTextMessageTextEdit() override;
|
|
|
|
//! Insert a message
|
|
void insertTextMessage(const swift::misc::network::CTextMessage &textMessage, int maxMessages = -1);
|
|
|
|
//! The displayed text messaged
|
|
const swift::misc::network::CTextMessageList &getDisplayedTextMessages() const;
|
|
|
|
//! Number of displayed messages
|
|
int count() const;
|
|
|
|
//! Stylesheet for content
|
|
void setStyleSheetForContent(const QString &styleSheet);
|
|
|
|
//! Clear
|
|
void clear();
|
|
|
|
//! Redraw HTML
|
|
void redrawHtml();
|
|
|
|
//! Order latest first/latest last
|
|
void setLatestFirst(bool latestFirst) { m_latestFirst = latestFirst; }
|
|
|
|
//! Lastest first
|
|
bool isLatestFirst() const { return m_latestFirst; }
|
|
|
|
private:
|
|
//! Context menu
|
|
void showContextMenuForTextEdit(const QPoint &pt);
|
|
|
|
//! Keep last n messages
|
|
void keepLastNMessages();
|
|
|
|
//! Visible fields
|
|
void setVisibleFields();
|
|
|
|
//! Convert to HTML
|
|
static QString toHtml(const swift::misc::network::CTextMessageList &messages, bool withFrom, bool withTo);
|
|
|
|
//! Convert to HTML
|
|
static QString toHtml(const swift::misc::network::CTextMessage &message, bool withFrom, bool withTo);
|
|
|
|
//! Word wrap
|
|
void setWordWrap(bool wordWrap);
|
|
|
|
swift::misc::network::CTextMessageList m_messages;
|
|
QTextDocument m_textDocument;
|
|
int m_keepMaxMessages = -1; //!< max number of messages to keep, or -1 to keep all messages
|
|
bool m_latestFirst = false;
|
|
bool m_withSender = true;
|
|
bool m_withRecipient = false;
|
|
bool m_wordWrap = true;
|
|
|
|
QAction *m_actionClearTextEdit = nullptr;
|
|
QAction *m_actionLast10 = nullptr;
|
|
QAction *m_actionLast25 = nullptr;
|
|
QAction *m_actionAll = nullptr;
|
|
QAction *m_actionWithSender = nullptr;
|
|
QAction *m_actionWithRecipient = nullptr;
|
|
QAction *m_actionWordWrap = nullptr;
|
|
};
|
|
} // namespace
|
|
|
|
#endif // guard
|