/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Code/Editor/EditorFramework/PropertyGrid/QtFileLineEdit.moc.h
20 строк
554 B
Ingrater
Clang-format fixes and update to 18.1.1 (#1234)
10 мар 2024, 15:51
Не верифицирован
10 мар 2024, 15:51
2f16acf
Код
Авторство
О чём код?
#pragma once #include <EditorFramework/EditorFrameworkDLL.h> #include <QLineEdit> class ezQtFilePropertyWidget; /// \brief A QLineEdit that is used by ezQtFilePropertyWidget class EZ_EDITORFRAMEWORK_DLL ezQtFileLineEdit : public QLineEdit { Q_OBJECT public: explicit ezQtFileLineEdit(ezQtFilePropertyWidget* pParent = nullptr); virtual void dragMoveEvent(QDragMoveEvent* e) override; virtual void dragEnterEvent(QDragEnterEvent* e) override; virtual void dropEvent(QDropEvent* e) override; ezQtFilePropertyWidget* m_pOwner = nullptr; };