add QCodeEditor

This commit is contained in:
Carl Philipp Klemm 2025-10-13 12:40:46 +02:00
parent bccee9bd36
commit 2f3069a388
316 changed files with 98016 additions and 0 deletions

View file

@ -0,0 +1,23 @@
#pragma once
// Qt
#include <QCompleter> // Required for inheritance
/**
* @brief Class, that describes completer with
* glsl specific types and functions.
*/
class QPythonCompleter : public QCompleter
{
Q_OBJECT
public:
/**
* @brief Constructor.
* @param parent Pointer to parent QObject.
*/
explicit QPythonCompleter(QObject* parent=nullptr);
};