Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
textedit.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 TEXTEDIT_H
5#define TEXTEDIT_H
6
7#include <QTextEdit>
8
9class TextEdit : public QTextEdit
10{
12
13public:
14 explicit TextEdit(QWidget *parent = nullptr);
15 bool canInsertFromMimeData( const QMimeData *source ) const override;
16 void insertFromMimeData( const QMimeData *source ) override;
17};
18
19#endif
void insertFromMimeData(const QMimeData *source) override
[0]
Definition textedit.cpp:33
bool canInsertFromMimeData(const QMimeData *source) const override
[0]
Definition textedit.cpp:23
int main(int argc, char *argv[])
[ctor_close]