add QCodeEditor
This commit is contained in:
parent
bccee9bd36
commit
2f3069a388
316 changed files with 98016 additions and 0 deletions
23
external/QCodeEditor/include/internal/QLuaCompleter.hpp
vendored
Normal file
23
external/QCodeEditor/include/internal/QLuaCompleter.hpp
vendored
Normal 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 QLuaCompleter : public QCompleter
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
|
||||
/**
|
||||
* @brief Constructor.
|
||||
* @param parent Pointer to parent QObject.
|
||||
*/
|
||||
explicit QLuaCompleter(QObject* parent=nullptr);
|
||||
};
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue