Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenBoard
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
lifo
Nicolas Ollinger
OpenBoard
Commits
8a0b272c
Commit
8a0b272c
authored
Aug 22, 2012
by
Aleksei Kanash
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:Sankore/Sankore-3.1
parents
c4f4343b
7acbcaab
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
47 additions
and
8 deletions
+47
-8
UBBoardView.cpp
src/board/UBBoardView.cpp
+11
-1
UBBoardView.h
src/board/UBBoardView.h
+2
-0
UBGraphicsStrokesGroup.cpp
src/domain/UBGraphicsStrokesGroup.cpp
+20
-0
UBGraphicsStrokesGroup.h
src/domain/UBGraphicsStrokesGroup.h
+3
-0
UBTeacherGuideWidget.cpp
src/gui/UBTeacherGuideWidget.cpp
+11
-7
No files found.
src/board/UBBoardView.cpp
View file @
8a0b272c
...
...
@@ -596,7 +596,7 @@ void UBBoardView::handleItemMousePress(QMouseEvent *event)
mLastPressedMousePos
=
mapToScene
(
event
->
pos
());
if
(
movingItem
&&
QGraphicsSvgItem
::
Type
!=
movingItem
->
type
()
if
(
movingItem
&&
!
hasSelectedParents
(
movingItem
)
&&
QGraphicsSvgItem
::
Type
!=
movingItem
->
type
()
&&
UBGraphicsDelegateFrame
::
Type
!=
movingItem
->
type
()
&&
!
mMultipleSelectionIsEnabled
)
{
...
...
@@ -1405,3 +1405,13 @@ UBBoardView::setToolCursor (int tool)
controlViewport
->
setCursor
(
UBResources
::
resources
()
->
penCursor
);
}
}
bool
UBBoardView
::
hasSelectedParents
(
QGraphicsItem
*
item
)
{
if
(
item
->
isSelected
())
return
true
;
if
(
item
->
parentItem
()
==
NULL
)
return
false
;
return
hasSelectedParents
(
item
->
parentItem
());
}
src/board/UBBoardView.h
View file @
8a0b272c
...
...
@@ -148,6 +148,8 @@ class UBBoardView : public QGraphicsView
bool
mIsDragInProgress
;
bool
mMultipleSelectionIsEnabled
;
static
bool
hasSelectedParents
(
QGraphicsItem
*
item
);
private
slots
:
void
settingChanged
(
QVariant
newValue
);
...
...
src/domain/UBGraphicsStrokesGroup.cpp
View file @
8a0b272c
...
...
@@ -115,3 +115,23 @@ QVariant UBGraphicsStrokesGroup::itemChange(GraphicsItemChange change, const QVa
QVariant
newValue
=
mDelegate
->
itemChange
(
change
,
value
);
return
QGraphicsItemGroup
::
itemChange
(
change
,
newValue
);
}
QPainterPath
UBGraphicsStrokesGroup
::
shape
()
const
{
QPainterPath
path
;
if
(
isSelected
())
{
path
.
addRect
(
boundingRect
());
}
else
{
foreach
(
QGraphicsItem
*
item
,
childItems
())
{
path
.
addPath
(
item
->
shape
());
}
}
return
path
;
}
src/domain/UBGraphicsStrokesGroup.h
View file @
8a0b272c
...
...
@@ -25,6 +25,9 @@ public:
virtual
void
setUuid
(
const
QUuid
&
pUuid
);
protected
:
virtual
QPainterPath
shape
()
const
;
virtual
void
mousePressEvent
(
QGraphicsSceneMouseEvent
*
event
);
virtual
void
mouseMoveEvent
(
QGraphicsSceneMouseEvent
*
event
);
virtual
void
mouseReleaseEvent
(
QGraphicsSceneMouseEvent
*
event
);
...
...
src/gui/UBTeacherGuideWidget.cpp
View file @
8a0b272c
...
...
@@ -879,17 +879,21 @@ void UBTeacherGuidePageZeroWidget::fillComboBoxes()
parametersFile
.
close
();
QStringList
licences
;
licences
<<
tr
(
"Attribution CC BY"
)
<<
tr
(
"Attribution-NoDerivs CC BY-ND"
)
licences
<<
tr
(
"Attribution CC BY"
)
<<
tr
(
"Attribution-NoDerivs CC BY-ND"
)
<<
tr
(
"Attribution-ShareAlike CC BY-SA"
)
<<
tr
(
"Attribution-NonCommercial CC BY-NC"
)
<<
tr
(
"Attribution-NonCommercial-NoDerivs CC BY-NC-ND"
)
<<
tr
(
"Attribution-NonCommercial-ShareAlike CC BY-NC-SA"
)
<<
tr
(
"Public domain"
)
<<
tr
(
"Copyright"
);
<<
tr
(
"Public domain"
)
<<
tr
(
"Copyright"
);
mpLicenceBox
->
addItems
(
licences
);
QStringList
licenceIconList
;
licenceIconList
<<
":images/licenses/ccby.png"
<<
":images/licenses/ccbynd.png"
<<
":images/licenses/ccbysa.png"
<<
":images/licenses/ccbync.png"
<<
":images/licenses/ccbyncnd.png"
<<
":images/licenses/ccbynd.png"
<<
":images/licenses/ccbysa.png"
<<
":images/licenses/ccbync.png"
<<
":images/licenses/ccbyncnd.png"
<<
":images/licenses/ccbyncsa.png"
;
for
(
int
i
=
0
;
i
<
licenceIconList
.
count
();
i
+=
1
)
mpLicenceBox
->
setItemData
(
i
,
licenceIconList
.
at
(
i
));
...
...
@@ -945,7 +949,7 @@ void UBTeacherGuidePageZeroWidget::loadData()
currentIndex
=
mpSchoolTypeBox
->
findText
(
documentProxy
->
metaData
(
UBSettings
::
sessionType
).
toString
());
mpSchoolTypeBox
->
setCurrentIndex
((
currentIndex
!=
-
1
)
?
currentIndex
:
0
);
currentIndex
=
mpLicenceBox
->
findText
(
documentProxy
->
metaData
(
UBSettings
::
sessionLicence
).
toString
()
);
currentIndex
=
documentProxy
->
metaData
(
UBSettings
::
sessionLicence
).
toInt
(
);
mpLicenceBox
->
setCurrentIndex
((
currentIndex
!=
-
1
)
?
currentIndex
:
0
);
}
...
...
@@ -962,7 +966,7 @@ void UBTeacherGuidePageZeroWidget::persistData()
documentProxy
->
setMetaData
(
UBSettings
::
sessionGradeLevel
,
mpSchoolLevelBox
->
currentText
());
documentProxy
->
setMetaData
(
UBSettings
::
sessionSubjects
,
mpSchoolSubjectsBox
->
currentText
());
documentProxy
->
setMetaData
(
UBSettings
::
sessionType
,
mpSchoolTypeBox
->
currentText
());
documentProxy
->
setMetaData
(
UBSettings
::
sessionLicence
,
mpLicenceBox
->
current
Text
());
documentProxy
->
setMetaData
(
UBSettings
::
sessionLicence
,
mpLicenceBox
->
current
Index
());
}
}
...
...
@@ -1087,7 +1091,7 @@ QVector<tUBGEElementNode*> UBTeacherGuidePageZeroWidget::getData()
elementNode
=
new
tUBGEElementNode
();
elementNode
->
name
=
"licence"
;
elementNode
->
attributes
.
insert
(
"value"
,
mpLicenceBox
->
currentText
(
));
elementNode
->
attributes
.
insert
(
"value"
,
QString
(
"%1"
).
arg
(
mpLicenceBox
->
currentIndex
()
));
result
<<
elementNode
;
return
result
;
}
...
...
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