Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
9d70d668
Commit
9d70d668
authored
Jul 06, 2010
by
Thomas Hartmann
Browse files
Adding interface for context widget to qmljs lib
parent
98949083
Changes
2
Show whitespace changes
Inline
Side-by-side
src/libs/qmljs/qmljs-lib.pri
View file @
9d70d668
...
...
@@ -22,6 +22,7 @@ HEADERS += \
$$PWD/qmljsscopebuilder.h \
$$PWD/qmljslineinfo.h \
$$PWD/qmljscompletioncontextfinder.h \
$$PWD/qmljsicontextpane.h \
$$PWD/qmljspropertyreader.h \
$$PWD/qmljsrewriter.h
...
...
src/libs/qmljs/qmljsicontextpane.h
0 → 100644
View file @
9d70d668
#ifndef QMLJSICONTEXTPANE_H
#define QMLJSICONTEXTPANE_H
#include <QObject>
#include "qmljs_global.h"
#include <qmljs/parser/qmljsastfwd_p.h>
#include <qmljs/qmljsdocument.h>
namespace
TextEditor
{
class
BaseTextEditorEditable
;
}
//TextEditor
namespace
QmlJS
{
class
QMLJS_EXPORT
IContextPane
:
public
QObject
{
Q_OBJECT
public:
IContextPane
(
QObject
*
parent
=
0
)
:
QObject
(
parent
)
{}
virtual
~
IContextPane
()
{}
virtual
void
apply
(
TextEditor
::
BaseTextEditorEditable
*
editor
,
Document
::
Ptr
doc
,
AST
::
Node
*
node
,
bool
update
)
=
0
;
virtual
void
setEnabled
(
bool
)
=
0
;
};
}
// namespace QmlJS
#endif // QMLJSICONTEXTPANE_H
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment