// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause #ifndef WINDOW_H #define WINDOW_H #include #include #include class QComboBox; class QFrame; class QTextBrowser; class Window : public QWidget { Q_OBJECT public: Window(QWidget *parent = 0); protected: void dragEnterEvent(QDragEnterEvent *event); void dropEvent(QDropEvent *event); private: QComboBox *mimeTypeCombo; QFrame *dropFrame; QTextBrowser *textBrowser; QString oldText; QStringList oldMimeTypes; }; #endif