Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
e4f2220b
Commit
e4f2220b
authored
Sep 19, 2017
by
Jacob Walser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Click and drag to resize PiP window instead of grow and shrink buttons
parent
17770480
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
454 additions
and
40 deletions
+454
-40
qgcresources.qrc
qgcresources.qrc
+1
-0
FlightDisplayView.qml
src/FlightDisplay/FlightDisplayView.qml
+2
-17
pipResize.svg
src/FlightMap/Images/pipResize.svg
+373
-0
QGCPipable.qml
src/QmlControls/QGCPipable.qml
+78
-23
No files found.
qgcresources.qrc
View file @
e4f2220b
...
...
@@ -107,6 +107,7 @@
<file alias="compassInstrumentDial.svg">src/FlightMap/Images/compassInstrumentDial.svg</file>
<file alias="crossHair.svg">src/FlightMap/Images/crossHair.svg</file>
<file alias="PiP.svg">src/FlightMap/Images/PiP.svg</file>
<file alias="pipResize.svg">src/FlightMap/Images/pipResize.svg</file>
<file alias="rollDialWhite.svg">src/FlightMap/Images/rollDialWhite.svg</file>
<file alias="rollPointerWhite.svg">src/FlightMap/Images/rollPointerWhite.svg</file>
<file alias="scale.png">src/FlightMap/Images/scale.png</file>
...
...
src/FlightDisplay/FlightDisplayView.qml
View file @
e4f2220b
...
...
@@ -311,23 +311,8 @@ QGCView {
onHideIt
:
{
setPipVisibility
(
!
state
)
}
onGrow
:
{
if
(
_pipSize
>=
825
)
{
return
}
_pipSize
+=
50
_flightVideoPipControl
.
width
=
_pipSize
_flightVideoPipControl
.
height
=
_pipSize
*
(
9
/
16
)
}
onShrink
:
{
if
(
_pipSize
<=
225
)
{
return
}
_pipSize
-=
50
_flightVideoPipControl
.
width
=
_pipSize
_flightVideoPipControl
.
height
=
_pipSize
*
(
9
/
16
)
onNewWidth
:
{
_pipSize
=
newWidth
}
}
...
...
src/FlightMap/Images/pipResize.svg
0 → 100644
View file @
e4f2220b
This diff is collapsed.
Click to expand it.
src/QmlControls/QGCPipable.qml
View file @
e4f2220b
...
...
@@ -22,43 +22,98 @@ Item {
property
bool
isHidden
:
false
property
bool
isDark
:
false
// As a percentage of the window width
property
real
maxSize
:
0.75
property
real
minSize
:
0.10
signal
activated
()
signal
hideIt
(
bool
state
)
signal
grow
()
signal
shrink
()
signal
newWidth
(
real
newWidth
)
MouseArea
{
id
:
pipMouseArea
anchors.fill
:
parent
enabled
:
!
isHidden
hoverEnabled
:
true
onClicked
:
{
pip
.
activated
()
}
}
QGCButton
{
id
:
growButton
visible
:
!
isHidden
&&
!
ScreenTools
.
isShortScreen
&&
!
ScreenTools
.
isTinyScreen
anchors.
left
:
parent
.
left
anchors.
bottom
:
shrinkButton
.
top
height
:
20
// MouseArea to drag in order to resize the PiP area
MouseArea
{
id
:
pipResize
anchors.
top
:
parent
.
top
anchors.
right
:
parent
.
right
height
:
ScreenTools
.
minTouchPixels
width
:
height
anchors.margins
:
5
text
:
"
+
"
opacity
:
0.5
onClicked
:
pip
.
grow
()
property
var
initialX
:
0
property
var
initialWidth
:
0
onClicked
:
{
// TODO propagate
}
// When we push the mouse button down, we un-anchor the mouse area to prevent a resizing loop
onPressed
:
{
pipResize
.
anchors
.
top
=
undefined
// Top doesn't seem to 'detach'
pipResize
.
anchors
.
right
=
undefined
// This one works right, which is what we really need
pipResize
.
initialX
=
mouse
.
x
pipResize
.
initialWidth
=
pip
.
width
}
// When we let go of the mouse button, we re-anchor the mouse area in the correct position
onReleased
:
{
pipResize
.
anchors
.
top
=
pip
.
top
pipResize
.
anchors
.
right
=
pip
.
right
}
// Drag
onPositionChanged
:
{
if
(
pipResize
.
pressed
)
{
var
parentW
=
pip
.
parent
.
width
// flightView
var
newW
=
pipResize
.
initialWidth
+
mouse
.
x
-
pipResize
.
initialX
if
(
newW
<
parentW
*
maxSize
&&
newW
>
parentW
*
minSize
)
{
newWidth
(
newW
)
}
}
}
}
QGCButton
{
id
:
shrinkButton
visible
:
!
isHidden
&&
!
ScreenTools
.
isShortScreen
&&
!
ScreenTools
.
isTinyScreen
anchors.left
:
parent
.
left
anchors.bottom
:
closePIP
.
top
height
:
20
width
:
height
anchors.margins
:
5
text
:
"
-
"
opacity
:
0.5
onClicked
:
pip
.
shrink
()
// Resize icon
Image
{
source
:
"
/qmlimages/pipResize.svg
"
fillMode
:
Image
.
PreserveAspectFit
mipmap
:
true
anchors.right
:
parent
.
right
anchors.top
:
parent
.
top
visible
:
!
isHidden
&&
pipMouseArea
.
containsMouse
height
:
ScreenTools
.
defaultFontPixelHeight
*
2.5
width
:
ScreenTools
.
defaultFontPixelHeight
*
2.5
sourceSize.height
:
height
}
// Resize pip window if necessary when main window is resized
property
var
pipLock
:
2
Connections
{
target
:
pip
.
parent
onWidthChanged
:
{
// hackity hack...
// don't fire this while app is loading/initializing (it happens twice)
if
(
pipLock
)
{
pipLock
--
return
}
var
parentW
=
pip
.
parent
.
width
if
(
pip
.
width
>
parentW
*
maxSize
)
{
newWidth
(
parentW
*
maxSize
)
}
else
if
(
pip
.
width
<
parentW
*
minSize
)
{
newWidth
(
parentW
*
minSize
)
}
}
}
//-- PIP Corner Indicator
...
...
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