Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
mainwindow.h
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
3
4#ifndef MAINWINDOW_H
5#define MAINWINDOW_H
6
7#include <QMainWindow>
8#include <QPixmap>
9#include <QPoint>
10
11class QComboBox;
12class QLabel;
13class QLineEdit;
14class QMouseEvent;
15class QTextEdit;
16class DragWidget;
17
18class MainWindow : public QMainWindow
19{
21
22public:
23 explicit MainWindow(QWidget *parent = nullptr);
24
25public slots:
26 void setDragResult(const QString &actionText);
27 void setMimeTypes(const QStringList &types);
28
29private:
30 QComboBox *mimeTypeCombo;
31 DragWidget *dragWidget;
32};
33
34#endif
void setDragResult(const QString &actionText)
void setMimeTypes(const QStringList &types)
The QComboBox widget combines a button with a dropdown list.
Definition qcombobox.h:24
The QLabel widget provides a text or image display.
Definition qlabel.h:20
The QLineEdit widget is a one-line text editor.
Definition qlineedit.h:28
The QMainWindow class provides a main application window.
Definition qmainwindow.h:25
\inmodule QtGui
Definition qevent.h:196
QObject * parent() const
Returns a pointer to the parent object.
Definition qobject.h:346
\inmodule QtCore
\macro QT_RESTRICTED_CAST_FROM_ASCII
Definition qstring.h:129
The QTextEdit class provides a widget that is used to edit and display both plain and rich text.
Definition qtextedit.h:27
The QWidget class is the base class of all user interface objects.
Definition qwidget.h:99
GLsizei GLenum GLenum * types
#define Q_OBJECT
#define slots