12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /*
- * Copyright (c) Contributors to the Open 3D Engine Project.
- * For complete copyright and license terms please see the LICENSE at the root of this distribution.
- *
- * 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;
- static QString m_title;
- static QVariant s_pendingPut;
- AZ_POP_DISABLE_DLL_EXPORT_MEMBER_WARNING
- QWidget* m_parent;
- QTimer m_putDebounce;
- };
- #endif // CRYINCLUDE_EDITOR_CLIPBOARD_H
|