mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-01 05:26:45 +08:00
110 lines
3.7 KiB
C++
110 lines
3.7 KiB
C++
/* Copyright (C) 2015
|
|
* swift project Community / Contributors
|
|
*
|
|
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
|
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
|
|
* including this file, may be copied, modified, propagated, or distributed except according to the terms
|
|
* contained in the LICENSE file.
|
|
*/
|
|
|
|
//! \file
|
|
|
|
#ifndef BLACKGUI_OVERLAYMESSAGES_FRAME_H
|
|
#define BLACKGUI_OVERLAYMESSAGES_FRAME_H
|
|
|
|
#include "blackgui/blackguiexport.h"
|
|
#include "blackmisc/pixmap.h"
|
|
#include "blackmisc/statusmessage.h"
|
|
#include "blackmisc/statusmessagelist.h"
|
|
#include "blackmisc/variant.h"
|
|
|
|
#include <QFrame>
|
|
#include <QMessageBox>
|
|
#include <QObject>
|
|
#include <QSize>
|
|
#include <QString>
|
|
#include <functional>
|
|
|
|
class QKeyEvent;
|
|
class QPaintEvent;
|
|
class QWidget;
|
|
|
|
namespace BlackMisc { namespace Network { class CTextMessage; } }
|
|
namespace BlackGui
|
|
{
|
|
class COverlayMessages;
|
|
|
|
/*!
|
|
* Display status messages (nested in this widget).
|
|
* Using this class provides a QFrame with the overlay functionality already integrated.
|
|
*/
|
|
class BLACKGUI_EXPORT COverlayMessagesFrame : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//! Constructor
|
|
explicit COverlayMessagesFrame(QWidget *parent = nullptr);
|
|
|
|
//! Destructor
|
|
virtual ~COverlayMessagesFrame();
|
|
|
|
//! Show the inner frame
|
|
void showStatusMessagesFrame();
|
|
|
|
//! Show kill button
|
|
void showKillButton(bool killButton);
|
|
|
|
//! Inner frame factors 0..1
|
|
//! \remarks can also be restricted by maximumHeight() / maximumWidth()
|
|
void setInnerFrameFactor(double xFactor, double yFactor);
|
|
|
|
//! \copydoc COverlayMessages::showOverlayMessagesWithConfirmation
|
|
void showOverlayMessagesWithConfirmation(
|
|
const BlackMisc::CStatusMessageList &messages,
|
|
const QString &confirmationMessage,
|
|
std::function<void()> okLambda,
|
|
int defaultButton = QMessageBox::Cancel,
|
|
int timeOutMs = -1
|
|
);
|
|
|
|
public slots:
|
|
//! \copydoc COverlayMessages::showOverlayMessages
|
|
void showOverlayMessages(const BlackMisc::CStatusMessageList &messages, int timeOutMs = -1);
|
|
|
|
//! \copydoc COverlayMessages::showOverlayMessage
|
|
void showOverlayMessage(const BlackMisc::CStatusMessage &message, int timeOutMs = -1);
|
|
|
|
//! \copydoc COverlayMessages::showOverlayTextMessage
|
|
void showOverlayTextMessage(const BlackMisc::Network::CTextMessage &textMessage, int timeOutMs = -1);
|
|
|
|
//! \copydoc COverlayMessages::showOverlayVariant
|
|
void showOverlayVariant(const BlackMisc::CVariant &variant, int timeOutMs = -1);
|
|
|
|
//! \copydoc COverlayMessages::showOverlayImage
|
|
void showOverlayImage(const BlackMisc::CPixmap &pixmap, int timeOutMs = -1);
|
|
|
|
protected:
|
|
//! \copydoc QFrame::keyPressEvent
|
|
virtual void keyPressEvent(QKeyEvent *event) override;
|
|
|
|
//! \copydoc QFrame::resizeEvent
|
|
virtual void resizeEvent(QResizeEvent *event) override;
|
|
|
|
COverlayMessages *m_overlayMessages = nullptr; //!< embedded QFrame with Status messages
|
|
|
|
private:
|
|
//! Calculate inner frame size
|
|
QSize innerFrameSize() const;
|
|
|
|
//! Init the inner frame (if not yet initialized)
|
|
void initInnerFrame();
|
|
|
|
bool m_showKillButton = false; //!< show kill button
|
|
double m_widthFactor = 0.7; //!< inner frame x factor
|
|
double m_heightFactor = 0.6; //!< inner frame x factor
|
|
};
|
|
} // ns
|
|
|
|
#endif // guard
|