You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.5 KiB
C++
67 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
|
|
#ifndef CRYINCLUDE_EDITOR_CLIPBOARD_H
|
|
#define CRYINCLUDE_EDITOR_CLIPBOARD_H
|
|
|
|
#pragma once
|
|
|
|
#include "Include/EditorCoreAPI.h"
|
|
|
|
#include <QTimer>
|
|
|
|
class CImageEx;
|
|
class QVariant;
|
|
class QWidget;
|
|
|
|
/** Use this class to put and get stuff from windows clipboard.
|
|
*/
|
|
class EDITOR_CORE_API CClipboard
|
|
{
|
|
public:
|
|
CClipboard(QWidget* parent);
|
|
|
|
//! Put xml node into clipboard
|
|
void Put(XmlNodeRef& node, const QString& title = QString());
|
|
//! Get xml node to clipboard.
|
|
XmlNodeRef Get() const;
|
|
|
|
//! Put string into Windows clipboard.
|
|
void PutString(const QString& text, const QString& title = QString());
|
|
//! Get string from Windows clipboard.
|
|
QString GetString() const;
|
|
|
|
//! Return name of what is in clipboard now.
|
|
QString GetTitle() const { return m_title; };
|
|
|
|
//! Put image into Windows clipboard.
|
|
void PutImage(const CImageEx& img);
|
|
|
|
//! Get image from Windows clipboard.
|
|
bool GetImage(CImageEx& img);
|
|
|
|
//! Return true if clipboard is empty.
|
|
bool IsEmpty() const;
|
|
private:
|
|
// Resolves the last request Put operation
|
|
void SendPendingPut();
|
|
|
|
AZ_PUSH_DISABLE_DLL_EXPORT_MEMBER_WARNING
|
|
static XmlNodeRef m_node;
|
|
AZ_POP_DISABLE_DLL_EXPORT_MEMBER_WARNING
|
|
static QString m_title;
|
|
|
|
static QVariant s_pendingPut;
|
|
|
|
QWidget* m_parent;
|
|
QTimer m_putDebounce;
|
|
};
|
|
|
|
|
|
#endif // CRYINCLUDE_EDITOR_CLIPBOARD_H
|