Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenFlipper
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
OpenFlipper-Free
OpenFlipper
Commits
9c0de0d5
Commit
9c0de0d5
authored
Mar 08, 2019
by
Jan Möbius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Split script widget for python
parent
4e4cbe13
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
136 additions
and
77 deletions
+136
-77
widgets/pythonWidget/pythonWidget.cc
widgets/pythonWidget/pythonWidget.cc
+3
-3
widgets/pythonWidget/pythonWidget.ui
widgets/pythonWidget/pythonWidget.ui
+133
-74
No files found.
widgets/pythonWidget/pythonWidget.cc
View file @
9c0de0d5
...
...
@@ -100,14 +100,14 @@ PythonWidget::PythonWidget(QWidget *parent )
QTextEdit
*
coreInfo
=
new
QTextEdit
(
infoTab
);
info
Tab
->
addTab
(
coreInfo
,
"Core"
);
module
Tab
->
addTab
(
coreInfo
,
"Core"
);
QString
coreDoc
=
interpreter
->
runScriptOutput
(
"import pydoc ;import openflipper;html = pydoc.HTMLDoc();object, name = pydoc.resolve(openflipper);page = html.page(pydoc.describe(object), html.document(object, name));print(page)"
);
coreInfo
->
setHtml
(
coreDoc
);
// Collect all Python Documentation for the OpenFlipper Plugin Modules
for
(
int
i
=
0
;
i
<
pythonPlugins
.
size
()
;
++
i
)
{
QTextEdit
*
edit
=
new
QTextEdit
(
info
Tab
);
info
Tab
->
addTab
(
edit
,
pythonPlugins
[
i
]);
QTextEdit
*
edit
=
new
QTextEdit
(
module
Tab
);
module
Tab
->
addTab
(
edit
,
pythonPlugins
[
i
]);
QString
data
=
interpreter
->
runScriptOutput
(
"import pydoc ;import "
+
pythonPlugins
[
i
]
+
";html = pydoc.HTMLDoc();object, name = pydoc.resolve("
+
pythonPlugins
[
i
]
+
");page = html.page(pydoc.describe(object), html.document(object, name));print(page)"
);
edit
->
setHtml
(
data
);
}
...
...
widgets/pythonWidget/pythonWidget.ui
View file @
9c0de0d5
...
...
@@ -6,66 +6,159 @@
<rect>
<x>
0
</x>
<y>
0
</y>
<width>
99
4
</width>
<height>
659
</height>
<width>
147
4
</width>
<height>
1004
</height>
</rect>
</property>
<property
name=
"windowTitle"
>
<string>
About OpenFlipper
</string>
</property>
<widget
class=
"QWidget"
name=
"centralwidget"
>
<layout
class=
"Q
VBoxLayout"
name=
"verticalLayout
"
>
<layout
class=
"Q
HBoxLayout"
name=
"horizontalLayout_4
"
>
<item>
<widget
class=
"Q
TabWidget"
name=
"infoTab
"
>
<property
name=
"
currentIndex
"
>
<
number>
0
</number
>
<widget
class=
"Q
Splitter"
name=
"splitter_4
"
>
<property
name=
"
orientation
"
>
<
enum>
Qt::Horizontal
</enum
>
</property>
<widget
class=
"QWidget"
name=
"tab"
>
<attribute
name=
"title"
>
<string>
Python Script
</string>
</attribute>
<layout
class=
"QVBoxLayout"
name=
"verticalLayout_2"
>
<widget
class=
"QFrame"
name=
"frame"
>
<property
name=
"sizePolicy"
>
<sizepolicy
hsizetype=
"Preferred"
vsizetype=
"Preferred"
>
<horstretch>
0
</horstretch>
<verstretch>
0
</verstretch>
</sizepolicy>
</property>
<property
name=
"frameShape"
>
<enum>
QFrame::StyledPanel
</enum>
</property>
<property
name=
"frameShadow"
>
<enum>
QFrame::Raised
</enum>
</property>
<layout
class=
"QVBoxLayout"
name=
"verticalLayout_3"
>
<item>
<layout
class=
"QVBoxLayout"
name=
"verticalLayout
_4
"
>
<layout
class=
"QVBoxLayout"
name=
"verticalLayout"
>
<item>
<widget
class=
"QT
extEdit"
name=
"scriptWidget
"
>
<property
name=
"
readOnly
"
>
<
bool>
false
</bool
>
<widget
class=
"QT
abWidget"
name=
"infoTab
"
>
<property
name=
"
currentIndex
"
>
<
number>
0
</number
>
</property>
<widget
class=
"QWidget"
name=
"tab"
>
<attribute
name=
"title"
>
<string>
Python Script
</string>
</attribute>
<layout
class=
"QVBoxLayout"
name=
"verticalLayout_2"
>
<item>
<widget
class=
"QSplitter"
name=
"splitter"
>
<property
name=
"orientation"
>
<enum>
Qt::Vertical
</enum>
</property>
<property
name=
"handleWidth"
>
<number>
4
</number>
</property>
<widget
class=
"QTextEdit"
name=
"scriptWidget"
>
<property
name=
"sizePolicy"
>
<sizepolicy
hsizetype=
"Expanding"
vsizetype=
"Expanding"
>
<horstretch>
0
</horstretch>
<verstretch>
1
</verstretch>
</sizepolicy>
</property>
<property
name=
"readOnly"
>
<bool>
false
</bool>
</property>
</widget>
<widget
class=
"QTextEdit"
name=
"pythonOutput"
>
<property
name=
"sizePolicy"
>
<sizepolicy
hsizetype=
"Expanding"
vsizetype=
"Expanding"
>
<horstretch>
0
</horstretch>
<verstretch>
0
</verstretch>
</sizepolicy>
</property>
</widget>
</widget>
</item>
</layout>
</widget>
<widget
class=
"QWidget"
name=
"tab_2"
>
<attribute
name=
"title"
>
<string>
Python Information
</string>
</attribute>
<layout
class=
"QVBoxLayout"
name=
"verticalLayout_5"
>
<item>
<widget
class=
"QTextEdit"
name=
"pythonInfo"
>
<property
name=
"enabled"
>
<bool>
true
</bool>
</property>
<property
name=
"acceptDrops"
>
<bool>
false
</bool>
</property>
<property
name=
"undoRedoEnabled"
>
<bool>
false
</bool>
</property>
<property
name=
"readOnly"
>
<bool>
true
</bool>
</property>
<property
name=
"html"
>
<string>
<
!DOCTYPE HTML PUBLIC
"
-//W3C//DTD HTML 4.0//EN
"
"
http://www.w3.org/TR/REC-html40/strict.dtd
">
<
html
><
head
><
meta name=
"
qrichtext
"
content=
"
1
"
/
><
style type=
"
text/css
">
p, li { white-space: pre-wrap; }
<
/style
><
/head
><
body style=
"
font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;
">
<
p align=
"
center
"
style=
"
-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;
"><
br /
><
/p
><
/body
><
/html
>
</string>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
</item>
<item>
<widget
class=
"QTextEdit"
name=
"pythonOutput"
/>
<layout
class=
"QHBoxLayout"
name=
"horizontalLayout"
>
<item>
<spacer
name=
"horizontalSpacer"
>
<property
name=
"orientation"
>
<enum>
Qt::Horizontal
</enum>
</property>
<property
name=
"sizeHint"
stdset=
"0"
>
<size>
<width>
0
</width>
<height>
0
</height>
</size>
</property>
</spacer>
</item>
<item>
<widget
class=
"QPushButton"
name=
"RunButton"
>
<property
name=
"text"
>
<string>
Run
</string>
</property>
</widget>
</item>
<item>
<widget
class=
"QPushButton"
name=
"closeButton"
>
<property
name=
"text"
>
<string>
Close
</string>
</property>
<property
name=
"default"
>
<bool>
true
</bool>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</item>
</layout>
</widget>
<widget
class=
"QWidget"
name=
"tab_2"
>
<attribute
name=
"title"
>
<string>
Python Information
</string>
</attribute>
<layout
class=
"QVBoxLayout"
name=
"verticalLayout_5"
>
<widget
class=
"QFrame"
name=
"frame_3"
>
<property
name=
"frameShape"
>
<enum>
QFrame::StyledPanel
</enum>
</property>
<property
name=
"frameShadow"
>
<enum>
QFrame::Raised
</enum>
</property>
<layout
class=
"QHBoxLayout"
name=
"horizontalLayout_3"
>
<item>
<widget
class=
"QTextEdit"
name=
"pythonInfo"
>
<property
name=
"enabled"
>
<bool>
true
</bool>
</property>
<property
name=
"acceptDrops"
>
<bool>
false
</bool>
</property>
<property
name=
"undoRedoEnabled"
>
<bool>
false
</bool>
</property>
<property
name=
"readOnly"
>
<bool>
true
</bool>
</property>
<property
name=
"html"
>
<string>
<
!DOCTYPE HTML PUBLIC
"
-//W3C//DTD HTML 4.0//EN
"
"
http://www.w3.org/TR/REC-html40/strict.dtd
">
<
html
><
head
><
meta name=
"
qrichtext
"
content=
"
1
"
/
><
style type=
"
text/css
">
p, li { white-space: pre-wrap; }
<
/style
><
/head
><
body style=
"
font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;
">
<
p align=
"
center
"
style=
"
-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;
"><
br /
><
/p
><
/body
><
/html
>
</string>
<widget
class=
"QTabWidget"
name=
"moduleTab"
>
<property
name=
"currentIndex"
>
<number>
-1
</number>
</property>
</widget>
</item>
...
...
@@ -73,40 +166,6 @@ p, li { white-space: pre-wrap; }
</widget>
</widget>
</item>
<item>
<layout
class=
"QHBoxLayout"
name=
"horizontalLayout"
>
<item>
<spacer
name=
"horizontalSpacer"
>
<property
name=
"orientation"
>
<enum>
Qt::Horizontal
</enum>
</property>
<property
name=
"sizeHint"
stdset=
"0"
>
<size>
<width>
0
</width>
<height>
0
</height>
</size>
</property>
</spacer>
</item>
<item>
<widget
class=
"QPushButton"
name=
"RunButton"
>
<property
name=
"text"
>
<string>
Run
</string>
</property>
</widget>
</item>
<item>
<widget
class=
"QPushButton"
name=
"closeButton"
>
<property
name=
"text"
>
<string>
Close
</string>
</property>
<property
name=
"default"
>
<bool>
true
</bool>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
<action
name=
"actionClose"
>
...
...
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