File indexing completed on 2024-04-14 05:35:43

0001 // clang-format off
0002 /*
0003  * KDiff3 - Text Diff And Merge Tool
0004  *
0005  * SPDX-FileCopyrightText: 2019-2020 Michael Reeves reeves.87@gmail.com
0006  * SPDX-License-Identifier: GPL-2.0-or-later
0007  */
0008 // clang-format on
0009 
0010 #ifndef FILENAMELINEEDIT_H
0011 #define FILENAMELINEEDIT_H
0012 
0013 #include <QLineEdit>
0014 
0015 class FileNameLineEdit : public QLineEdit
0016 {
0017   public:
0018     using QLineEdit::QLineEdit;
0019     void dropEvent(QDropEvent* event) override;
0020     void dragEnterEvent(QDragEnterEvent* e) override;
0021 };
0022 
0023 #endif // !FILENAMELINEEDIT_H