File tree 9 files changed +53
-31
lines changed
9 files changed +53
-31
lines changed Original file line number Diff line number Diff line change 1
- add_subdirectory (cplusplus)
1
+ # OPENMV-DIFF #
2
+ # add_subdirectory(cplusplus)
3
+ # OPENMV-DIFF #
2
4
add_subdirectory (syntax-highlighting)
3
5
add_subdirectory (libvterm)
4
6
add_subdirectory (libptyqt)
Original file line number Diff line number Diff line change @@ -5,20 +5,20 @@ add_subdirectory(3rdparty)
5
5
# add_subdirectory(advanceddockingsystem)
6
6
# OPENMV-DIFF #
7
7
add_subdirectory (aggregation)
8
- add_subdirectory (cplusplus)
8
+ # OPENMV-DIFF #
9
+ # add_subdirectory(cplusplus)
10
+ # OPENMV-DIFF #
9
11
add_subdirectory (extensionsystem)
10
12
# OPENMV-DIFF #
11
13
# add_subdirectory(glsl)
12
14
# OPENMV-DIFF #
13
15
add_subdirectory (languageserverprotocol)
14
- add_subdirectory (languageutils)
15
16
# OPENMV-DIFF #
17
+ # add_subdirectory(languageutils)
16
18
# add_subdirectory(modelinglib)
17
19
# add_subdirectory(qmldebug)
18
20
# add_subdirectory(qmleditorwidgets)
19
- # OPENMV-DIFF #
20
- add_subdirectory (qmljs)
21
- # OPENMV-DIFF #
21
+ # add_subdirectory(qmljs)
22
22
# add_subdirectory(qtcreatorcdbext)
23
23
# OPENMV-DIFF #
24
24
add_subdirectory (utils)
Original file line number Diff line number Diff line change @@ -41,9 +41,7 @@ add_subdirectory(projectexplorer)
41
41
# add_subdirectory(cppeditor)
42
42
# add_subdirectory(haskell)
43
43
# add_subdirectory(help)
44
- # OPENMV-DIFF #
45
- add_subdirectory (resourceeditor)
46
- # OPENMV-DIFF #
44
+ # add_subdirectory(resourceeditor)
47
45
# add_subdirectory(nim)
48
46
# add_subdirectory(conan)
49
47
# add_subdirectory(saferenderer)
@@ -58,9 +56,7 @@ add_subdirectory(tabbededitor)
58
56
# add_subdirectory(classview)
59
57
# add_subdirectory(glsleditor)
60
58
# add_subdirectory(modeleditor)
61
- # OPENMV-DIFF #
62
- add_subdirectory (qtsupport)
63
- # OPENMV-DIFF #
59
+ # add_subdirectory(qtsupport)
64
60
# add_subdirectory(todo)
65
61
# add_subdirectory(vcsbase)
66
62
# OPENMV-DIFF #
Original file line number Diff line number Diff line change 1
1
add_qtc_plugin(Python
2
- DEPENDS QmlJS
3
- PLUGIN_DEPENDS Core LanguageClient ProjectExplorer TextEditor QtSupport
2
+ # OPENMV-DIFF #
3
+ # DEPENDS QmlJS
4
+ # PLUGIN_DEPENDS Core LanguageClient ProjectExplorer TextEditor QtSupport
5
+ # OPENMV-DIFF #
6
+ PLUGIN_DEPENDS Core LanguageClient ProjectExplorer TextEditor
7
+ # OPENMV-DIFF #
4
8
SOURCES
5
9
pipsupport.cpp pipsupport.h
6
- pyside.cpp pyside.h
7
- pythonbuildconfiguration.cpp pythonbuildconfiguration.h
8
- pysideuicextracompiler.cpp pysideuicextracompiler.h
10
+ # OPENMV-DIFF #
11
+ # pyside.cpp pyside.h
12
+ # pythonbuildconfiguration.cpp pythonbuildconfiguration.h
13
+ # pysideuicextracompiler.cpp pysideuicextracompiler.h
14
+ # OPENMV-DIFF #
9
15
python.qrc
10
- pythonbuildsystem.cpp pythonbuildsystem.h
16
+ # OPENMV-DIFF #
17
+ # pythonbuildsystem.cpp pythonbuildsystem.h
18
+ # OPENMV-DIFF #
11
19
pythonconstants.h
12
20
pythoneditor.cpp pythoneditor.h
13
21
pythonformattoken.h
Original file line number Diff line number Diff line change 3
3
4
4
#include " pythoneditor.h"
5
5
6
- #include " pyside.h"
7
- #include " pythonbuildconfiguration.h"
6
+ // OPENMV-DIFF //
7
+ // #include "pyside.h"
8
+ // #include "pythonbuildconfiguration.h"
9
+ // OPENMV-DIFF //
8
10
#include " pythonconstants.h"
9
11
#include " pythonhighlighter.h"
10
12
#include " pythonindenter.h"
@@ -175,8 +177,10 @@ void PythonEditorWidget::updateInterpretersSelector()
175
177
&& target->activeBuildConfiguration () == buildConfiguration) {
176
178
action->setChecked (true );
177
179
setButtonText (name);
178
- if (auto pbc = qobject_cast<PythonBuildConfiguration *>(buildConfiguration))
179
- m_interpreters->setToolTip (pbc->python ().toUserOutput ());
180
+ // OPENMV-DIFF //
181
+ // if (auto pbc = qobject_cast<PythonBuildConfiguration *>(buildConfiguration))
182
+ // m_interpreters->setToolTip(pbc->python().toUserOutput());
183
+ // OPENMV-DIFF //
180
184
}
181
185
connect (action,
182
186
&QAction::triggered,
@@ -311,7 +315,9 @@ void PythonDocument::updateCurrentPython()
311
315
void PythonDocument::updatePython (const FilePath &python)
312
316
{
313
317
openDocumentWithPython (python, this );
314
- PySideInstaller::instance ().checkPySideInstallation (python, this );
318
+ // OPENMV-DIFF //
319
+ // PySideInstaller::instance().checkPySideInstallation(python, this);
320
+ // OPENMV-DIFF //
315
321
emit pythonUpdated (python);
316
322
}
317
323
Original file line number Diff line number Diff line change @@ -63,8 +63,10 @@ class PythonPlugin final : public ExtensionSystem::IPlugin
63
63
64
64
setupPipSupport (this );
65
65
66
- KitManager::setIrrelevantAspects (KitManager::irrelevantAspects ()
67
- + QSet<Id>{PythonKitAspect::id ()});
66
+ // OPENMV-DIFF //
67
+ // KitManager::setIrrelevantAspects(KitManager::irrelevantAspects()
68
+ // + QSet<Id>{PythonKitAspect::id()});
69
+ // OPENMV-DIFF //
68
70
69
71
ProjectManager::registerProjectType<PythonProject>(Constants::C_PY_PROJECT_MIME_TYPE);
70
72
ProjectManager::registerProjectType<PythonProject>(Constants::C_PY_PROJECT_MIME_TYPE_LEGACY);
Original file line number Diff line number Diff line change 3
3
4
4
#include " pythonproject.h"
5
5
6
- #include " pythonbuildsystem.h"
6
+ // OPENMV-DIFF //
7
+ // #include "pythonbuildsystem.h"
8
+ // OPENMV-DIFF //
7
9
#include " pythonconstants.h"
8
10
#include " pythonkitaspect.h"
9
11
#include " pythontr.h"
@@ -26,7 +28,9 @@ PythonProject::PythonProject(const FilePath &fileName)
26
28
setProjectLanguages (Context (ProjectExplorer::Constants::PYTHON_LANGUAGE_ID));
27
29
setDisplayName (fileName.completeBaseName ());
28
30
29
- setBuildSystemCreator ([](Target *t) { return new PythonBuildSystem (t); });
31
+ // OPENMV-DIFF //
32
+ // setBuildSystemCreator([](Target *t) { return new PythonBuildSystem(t); });
33
+ // OPENMV-DIFF //
30
34
}
31
35
32
36
Tasks PythonProject::projectIssues (const Kit *k) const
Original file line number Diff line number Diff line change 3
3
4
4
#include " pythonutils.h"
5
5
6
- #include " pythonbuildconfiguration.h"
6
+ // OPENMV-DIFF //
7
+ // #include "pythonbuildconfiguration.h"
8
+ // OPENMV-DIFF //
7
9
#include " pythonconstants.h"
8
10
#include " pythonkitaspect.h"
9
11
#include " pythonproject.h"
@@ -45,8 +47,10 @@ FilePath detectPython(const FilePath &documentPath)
45
47
46
48
if (project && project->mimeType () == Constants::C_PY_PROJECT_MIME_TYPE) {
47
49
if (const Target *target = project->activeTarget ()) {
48
- if (auto bc = qobject_cast<PythonBuildConfiguration *>(target->activeBuildConfiguration ()))
49
- return bc->python ();
50
+ // OPENMV-DIFF //
51
+ // if (auto bc = qobject_cast<PythonBuildConfiguration *>(target->activeBuildConfiguration()))
52
+ // return bc->python();
53
+ // OPENMV-DIFF //
50
54
if (const std::optional<Interpreter> python = PythonKitAspect::python (target->kit ()))
51
55
return python->command ;
52
56
}
Original file line number Diff line number Diff line change 1
1
# OPENMV-DIFF #
2
2
# add_subdirectory(designerintegrationv2)
3
+ # add_subdirectory(proparser)
3
4
# OPENMV-DIFF #
4
- add_subdirectory (proparser)
5
5
add_subdirectory (qtsingleapplication)
6
6
# OPENMV-DIFF #
7
7
# add_subdirectory(help)
You can’t perform that action at this time.
0 commit comments