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
94d91bb4
Commit
94d91bb4
authored
Oct 02, 2012
by
bmagnin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' of github.com:Sankore/Sankore-3.1 into develop
parents
54349550
8045f15d
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
36 additions
and
37 deletions
+36
-37
sankore_fr.ts
resources/i18n/sankore_fr.ts
+2
-2
sankore_fr_CH.ts
resources/i18n/sankore_fr_CH.ts
+2
-2
UBSvgSubsetAdaptor.cpp
src/adaptors/UBSvgSubsetAdaptor.cpp
+4
-4
UBGraphicsWidgetItem.cpp
src/domain/UBGraphicsWidgetItem.cpp
+25
-27
UBGraphicsWidgetItem.h
src/domain/UBGraphicsWidgetItem.h
+3
-2
No files found.
resources/i18n/sankore_fr.ts
View file @
94d91bb4
...
...
@@ -377,7 +377,7 @@
<
/message
>
<
message
>
<
source
>
Show
Desktop
<
/source
>
<
translation
>
Afficher
le
b
ureau
<
/translation
>
<
translation
>
B
ureau
<
/translation
>
<
/message
>
<
message
>
<
source
>
Ctrl
+
Shift
+
H
<
/source
>
...
...
@@ -1961,7 +1961,7 @@ Voulez-vous ignorer les erreurs pour ce serveur ?</translation>
<
/message
>
<
message
>
<
source
>
Add
a
link
<
/source
>
<
translation
>
Ajouter
un
lien
.
web
<
/translation
>
<
translation
>
Ajouter
un
lien
web
<
/translation
>
<
/message
>
<
message
>
<
source
>
Page
:
%
0
<
/source
>
...
...
resources/i18n/sankore_fr_CH.ts
View file @
94d91bb4
...
...
@@ -377,7 +377,7 @@
<
/message
>
<
message
>
<
source
>
Show
Desktop
<
/source
>
<
translation
>
Afficher
le
b
ureau
<
/translation
>
<
translation
>
B
ureau
<
/translation
>
<
/message
>
<
message
>
<
source
>
Ctrl
+
Shift
+
H
<
/source
>
...
...
@@ -1961,7 +1961,7 @@ Voulez-vous ignorer les erreurs pour ce serveur ?</translation>
<
/message
>
<
message
>
<
source
>
Add
a
link
<
/source
>
<
translation
>
Ajouter
un
lien
.
web
<
/translation
>
<
translation
>
Ajouter
un
lien
web
<
/translation
>
<
/message
>
<
message
>
<
source
>
Page
:
%
0
<
/source
>
...
...
src/adaptors/UBSvgSubsetAdaptor.cpp
View file @
94d91bb4
...
...
@@ -1229,10 +1229,10 @@ bool UBSvgSubsetAdaptor::UBSvgSubsetWriter::persistScene(int pageIndex)
//disabling g section parsing as a group of elements. Use groups refs instead
// mXmlWriter.writeStartElement("g");
// mXmlWriter.writeAttribute(UBSettings::uniboardDocumentNamespaceUri, "uuid", UBStringUtils::toCanonicalUuid(strokesGroupItem->uuid()));
QMatrix
matrix
=
item
->
sceneMatrix
();
if
(
!
matrix
.
isIdentity
()){
mXmlWriter
.
writeAttribute
(
"transform"
,
toSvgTransform
(
matrix
));
}
//
QMatrix matrix = item->sceneMatrix();
//
if (!matrix.isIdentity()){
//
mXmlWriter.writeAttribute("transform", toSvgTransform(matrix));
//
}
// Add the polygons
foreach
(
QGraphicsItem
*
item
,
strokesGroupItem
->
childItems
()){
...
...
src/domain/UBGraphicsWidgetItem.cpp
View file @
94d91bb4
...
...
@@ -113,6 +113,7 @@ void UBGraphicsWidgetItem::initialize()
connect
(
page
()
->
mainFrame
(),
SIGNAL
(
javaScriptWindowObjectCleared
()),
this
,
SLOT
(
javaScriptWindowObjectCleared
()));
connect
(
page
(),
SIGNAL
(
geometryChangeRequested
(
const
QRect
&
)),
this
,
SLOT
(
geometryChangeRequested
(
const
QRect
&
)));
connect
(
this
,
SIGNAL
(
loadFinished
(
bool
)),
this
,
SLOT
(
mainFrameLoadFinished
(
bool
)));
connect
(
page
()
->
mainFrame
(),
SIGNAL
(
initialLayoutCompleted
()),
this
,
SLOT
(
initialLayoutCompleted
()));
connect
(
page
(),
SIGNAL
(
linkClicked
(
const
QUrl
&
)),
this
,
SLOT
(
onLinkClicked
(
const
QUrl
&
)));
}
...
...
@@ -121,6 +122,11 @@ void UBGraphicsWidgetItem::onLinkClicked(const QUrl& url)
UBApplication
::
webController
->
loadUrl
(
url
);
}
void
UBGraphicsWidgetItem
::
initialLayoutCompleted
()
{
mInitialLoadDone
=
true
;
}
QUrl
UBGraphicsWidgetItem
::
mainHtml
()
{
return
mMainHtmlUrl
;
...
...
@@ -564,19 +570,16 @@ void UBGraphicsWidgetItem::injectInlineJavaScript()
void
UBGraphicsWidgetItem
::
paint
(
QPainter
*
painter
,
const
QStyleOptionGraphicsItem
*
option
,
QWidget
*
widget
)
{
if
(
scene
()
&&
scene
()
->
renderingContext
()
!=
UBGraphicsScene
::
Screen
)
{
if
(
scene
()
&&
scene
()
->
renderingContext
()
!=
UBGraphicsScene
::
Screen
)
{
painter
->
drawPixmap
(
0
,
0
,
snapshot
());
}
else
{
if
(
!
mInitialLoadDone
||
mLoadIsErronous
)
{
else
{
QGraphicsWebView
::
paint
(
painter
,
option
,
widget
);
}
if
(
!
mInitialLoadDone
)
{
QString
message
;
if
(
mInitialLoadDone
&&
mLoadIsErronous
)
message
=
tr
(
"Cannot load content"
);
else
message
=
tr
(
"Loading ..."
);
painter
->
setFont
(
QFont
(
"Arial"
,
12
));
...
...
@@ -594,10 +597,6 @@ void UBGraphicsWidgetItem::paint( QPainter *painter, const QStyleOptionGraphicsI
painter
->
setPen
(
Qt
::
white
);
painter
->
drawText
(
rect
(),
Qt
::
AlignCenter
,
message
);
}
else
QGraphicsWebView
::
paint
(
painter
,
option
,
widget
);
}
}
void
UBGraphicsWidgetItem
::
geometryChangeRequested
(
const
QRect
&
geom
)
...
...
@@ -618,7 +617,6 @@ void UBGraphicsWidgetItem::javaScriptWindowObjectCleared()
void
UBGraphicsWidgetItem
::
mainFrameLoadFinished
(
bool
ok
)
{
mInitialLoadDone
=
true
;
mLoadIsErronous
=
!
ok
;
update
(
boundingRect
());
takeSnapshot
();
...
...
src/domain/UBGraphicsWidgetItem.h
View file @
94d91bb4
...
...
@@ -163,6 +163,7 @@ class UBGraphicsWidgetItem : public QGraphicsWebView, public UBItem, public UBRe
private
slots
:
void
onLinkClicked
(
const
QUrl
&
url
);
void
initialLayoutCompleted
();
private
:
bool
mIsFrozen
;
...
...
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