File indexing completed on 2025-02-02 04:11:21
0001 /* 0002 * SPDX-FileCopyrightText: 2019-2023 Mattia Basaglia <dev@dragon.best> 0003 * 0004 * SPDX-License-Identifier: GPL-3.0-or-later 0005 */ 0006 0007 #ifndef CLIPBOARDINSPECTOR_H 0008 #define CLIPBOARDINSPECTOR_H 0009 0010 #include <QDialog> 0011 0012 class QTabWidget; 0013 0014 namespace glaxnimate::gui { 0015 0016 0017 class ClipboardInspector : public QDialog 0018 { 0019 Q_OBJECT 0020 0021 public: 0022 ClipboardInspector(QWidget* parent = nullptr); 0023 0024 private: 0025 void load(QTabWidget* tab); 0026 0027 }; 0028 0029 0030 } // namespace glaxnimate::gui 0031 0032 #endif // CLIPBOARDINSPECTOR_H