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
b79f1f8d
Commit
b79f1f8d
authored
Feb 15, 2012
by
Ivan Ilin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:Sankore/Sankore-3.1
parents
0f6d2057
a409f852
Changes
14
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
1012 additions
and
110 deletions
+1012
-110
buildDebianPackage
buildDebianPackage
+4
-0
sankore_fr.ts
resources/i18n/sankore_fr.ts
+1
-1
index.html
resources/library/interactivities/BlackYellow.wgt/index.html
+25
-2
index.html
...ary/interactivities/BlackYellow.wgt/locales/fr/index.html
+25
-0
blackYellow.js
...ivities/BlackYellow.wgt/locales/fr/scripts/blackYellow.js
+408
-0
index.html
...ary/interactivities/BlackYellow.wgt/locales/ru/index.html
+25
-0
blackYellow.js
...ivities/BlackYellow.wgt/locales/ru/scripts/blackYellow.js
+408
-0
blackYellow.js
...ry/interactivities/BlackYellow.wgt/scripts/blackYellow.js
+28
-29
languages.js
...rary/interactivities/BlackYellow.wgt/scripts/languages.js
+0
-30
UBThumbnailAdaptor.cpp
src/adaptors/UBThumbnailAdaptor.cpp
+60
-17
UBThumbnailAdaptor.h
src/adaptors/UBThumbnailAdaptor.h
+6
-9
UBBoardController.cpp
src/board/UBBoardController.cpp
+2
-3
UBDocumentNavigator.cpp
src/gui/UBDocumentNavigator.cpp
+19
-18
UBDocumentNavigator.h
src/gui/UBDocumentNavigator.h
+1
-1
No files found.
buildDebianPackage
View file @
b79f1f8d
...
...
@@ -196,6 +196,10 @@ if [ "$ARCHITECTURE" == "x86_64" ]; then
ARCHITECTURE
=
"amd64"
fi
if
[
"
$ARCHITECTURE
"
==
"i686"
]
;
then
ARCHITECTURE
=
"i386"
fi
echo
"Open-Sankore (
$VERSION
)
$ARCHITECTURE
; urgency=low"
>
"
$CHANGE_LOG_FILE
"
echo
>>
"
$CHANGE_LOG_FILE
"
cat
$CHANGE_LOG_TEXT
>>
"
$CHANGE_LOG_FILE
"
...
...
resources/i18n/sankore_fr.ts
View file @
b79f1f8d
...
...
@@ -2511,7 +2511,7 @@ p, li { white-space: pre-wrap; }
<
/message
>
<
message
>
<
source
>
Stylus
Palette
<
/source
>
<
translation
>
Barre
d
&
apos
;
outil
du
stylet
<
/translation
>
<
translation
>
Barre
d
&
apos
;
outil
s
du
stylet
<
/translation
>
<
/message
>
<
message
>
<
source
>
Horizontal
<
/source
>
...
...
resources/library/interactivities/BlackYellow.wgt/index.html
View file @
b79f1f8d
...
...
@@ -10,12 +10,35 @@ and open the template in the editor.
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/basic.css"
/>
<script
type=
"text/javascript"
src=
"scripts/jquery-1.6.2.min.js"
></script>
<script
src=
"scripts/jquery.disable.text.select.js"
type=
"text/javascript"
></script>
<script
src=
"scripts/languages.js"
type=
"text/javascript"
></script>
<script
type=
"text/javascript"
src=
"scripts/blackYellow.js"
></script>
<script
type=
"text/javascript"
>
$
(
document
).
ready
(
function
(){
init
();
var
lang
=
""
;
//locale language
if
(
window
.
sankore
){
lang
=
sankore
.
locale
().
substr
(
0
,
2
);
}
else
lang
=
"en"
;
if
(
lang
==
"en"
)
init
();
else
{
returnStatus
(
lang
);
}
function
returnStatus
(
lang
){
$
.
ajax
({
type
:
'POST'
,
url
:
'locales/'
+
lang
+
'/index.html'
,
statusCode
:
{
404
:
function
()
{
init
();
},
200
:
function
(){
window
.
location
.
href
=
'locales/'
+
lang
+
'/index.html'
;
}
}
});
}
});
</script>
...
...
resources/library/interactivities/BlackYellow.wgt/locales/fr/index.html
0 → 100644
View file @
b79f1f8d
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../../css/basic.css"
/>
<script
type=
"text/javascript"
src=
"../../scripts/jquery-1.6.2.min.js"
></script>
<script
src=
"../../scripts/jquery.disable.text.select.js"
type=
"text/javascript"
></script>
<script
type=
"text/javascript"
src=
"scripts/blackYellow.js"
></script>
<script
type=
"text/javascript"
>
$
(
document
).
ready
(
function
(){
init
();
});
</script>
</head>
<body>
</body>
</html>
resources/library/interactivities/BlackYellow.wgt/locales/fr/scripts/blackYellow.js
0 → 100644
View file @
b79f1f8d
This diff is collapsed.
Click to expand it.
resources/library/interactivities/BlackYellow.wgt/locales/ru/index.html
0 → 100644
View file @
b79f1f8d
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../../css/basic.css"
/>
<script
type=
"text/javascript"
src=
"../../scripts/jquery-1.6.2.min.js"
></script>
<script
src=
"../../scripts/jquery.disable.text.select.js"
type=
"text/javascript"
></script>
<script
type=
"text/javascript"
src=
"scripts/blackYellow.js"
></script>
<script
type=
"text/javascript"
>
$
(
document
).
ready
(
function
(){
init
();
});
</script>
</head>
<body>
</body>
</html>
resources/library/interactivities/BlackYellow.wgt/locales/ru/scripts/blackYellow.js
0 → 100644
View file @
b79f1f8d
This diff is collapsed.
Click to expand it.
resources/library/interactivities/BlackYellow.wgt/scripts/blackYellow.js
View file @
b79f1f8d
...
...
@@ -13,6 +13,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
var
sankoreLang
=
{
display
:
"Display"
,
edit
:
"Edit"
,
add
:
"Add"
,
enter_data
:
"Enter data:"
,
enter_result
:
"Enter result:"
,
ok
:
"Ok"
,
cancel
:
"Cancel"
};
function
init
(){
...
...
@@ -37,17 +38,7 @@ function init(){
x
:
false
,
width
:
0
,
height
:
0
}
if
(
window
.
sankore
){
try
{
lang
=
sankore
.
locale
().
substr
(
0
,
2
);
sankoreLang
[
lang
].
edit
;
}
catch
(
e
){
lang
=
"en"
;
}
}
else
lang
=
"en"
;
}
var
opacityChanged
=
false
;
...
...
@@ -148,9 +139,9 @@ function init(){
},
"fast"
,
function
(){
toggleFlag
=
true
;
if
(
!
mode
)
toggleButton
.
text
(
sankoreLang
[
lang
]
.
edit
);
toggleButton
.
text
(
sankoreLang
.
edit
);
else
toggleButton
.
text
(
sankoreLang
[
lang
]
.
display
);
toggleButton
.
text
(
sankoreLang
.
display
);
});
}
}
...
...
@@ -196,7 +187,7 @@ function init(){
width
:
"115px"
},
"fast"
,
function
(){
addToggleStart
=
true
;
addButton
.
text
(
sankoreLang
[
lang
]
.
add
);
addButton
.
text
(
sankoreLang
.
add
);
});
}
}
...
...
@@ -228,16 +219,16 @@ function init(){
//input fields and buttons for a popup window
var
expressionDiv
=
$
(
"<div id='expressionDiv' class='popupContainers'>"
).
appendTo
(
popupBack
);
var
experssionLabel
=
$
(
"<span id='experssionLabel' class='popupLabels'><b>"
+
sankoreLang
[
lang
]
.
enter_data
+
"</b></span>"
).
appendTo
(
expressionDiv
);
var
experssionLabel
=
$
(
"<span id='experssionLabel' class='popupLabels'><b>"
+
sankoreLang
.
enter_data
+
"</b></span>"
).
appendTo
(
expressionDiv
);
var
expresionText
=
$
(
"<input type='text' id='expresionText' class='expresionInput'/>"
).
appendTo
(
expressionDiv
);
var
resultDiv
=
$
(
"<div id='resultDiv' class='popupContainers'>"
).
appendTo
(
popupBack
);
var
resultLabel
=
$
(
"<span id='resultLabel' class='popupLabels'><b>"
+
sankoreLang
[
lang
]
.
enter_result
+
"</b></span>"
).
appendTo
(
resultDiv
);
var
resultLabel
=
$
(
"<span id='resultLabel' class='popupLabels'><b>"
+
sankoreLang
.
enter_result
+
"</b></span>"
).
appendTo
(
resultDiv
);
var
resultText
=
$
(
"<input type='text' id='resultText' class='expresionInput'/>"
).
appendTo
(
resultDiv
);
var
popupButtonsDiv
=
$
(
"<div id='popupButtonsDiv' class='popupContainers'>"
).
appendTo
(
popupBack
);
var
cancelButton
=
$
(
"<input type='button' id='cancelButton' class='popupButtons' value='"
+
sankoreLang
[
lang
]
.
cancel
+
"'/>"
).
appendTo
(
popupButtonsDiv
);
var
okButton
=
$
(
"<input type='button' id='okButton' class='popupButtons' value='"
+
sankoreLang
[
lang
]
.
ok
+
"'/>"
).
appendTo
(
popupButtonsDiv
);
var
cancelButton
=
$
(
"<input type='button' id='cancelButton' class='popupButtons' value='"
+
sankoreLang
.
cancel
+
"'/>"
).
appendTo
(
popupButtonsDiv
);
var
okButton
=
$
(
"<input type='button' id='okButton' class='popupButtons' value='"
+
sankoreLang
.
ok
+
"'/>"
).
appendTo
(
popupButtonsDiv
);
/* -------------- A WORK WITH POPUP BUTTONS AND FIELDS ---------------*/
...
...
@@ -345,20 +336,20 @@ function init(){
});
// export data
function
exportToSankore
(){
var
objToExport
=
{
data1
:
""
,
data2
:
""
,
width
:
0
,
height
:
0
,
top
:
0
,
left
:
0
}
function
exportToSankore
(){
var
arrayToExport
=
new
Array
();
if
(
mode
){
if
(
$
(
".editContainer"
).
size
()
!=
0
){
$
(
".editContainer"
).
each
(
function
(
index
,
domElem
){
$
(
".editContainer"
).
each
(
function
(
index
,
domElem
){
var
objToExport
=
{
data1
:
""
,
data2
:
""
,
width
:
0
,
height
:
0
,
top
:
0
,
left
:
0
}
objToExport
.
data1
=
$
(
domElem
).
find
(
".readyTask"
).
find
(
":first-child"
).
text
();
objToExport
.
data2
=
$
(
domElem
).
find
(
".readyTask"
).
find
(
":last-child"
).
text
();
objToExport
.
width
=
$
(
domElem
).
width
();
...
...
@@ -371,6 +362,14 @@ function init(){
}
else
{
if
(
$
(
".readyTask"
).
size
()
!=
0
){
$
(
".readyTask"
).
each
(
function
(
index
,
domElem
){
var
objToExport
=
{
data1
:
""
,
data2
:
""
,
width
:
0
,
height
:
0
,
top
:
0
,
left
:
0
}
objToExport
.
data1
=
$
(
domElem
).
find
(
":first-child"
).
text
();
objToExport
.
data2
=
$
(
domElem
).
find
(
":last-child"
).
text
();
objToExport
.
width
=
$
(
domElem
).
width
();
...
...
resources/library/interactivities/BlackYellow.wgt/scripts/languages.js
deleted
100644 → 0
View file @
0f6d2057
var
sankoreLang
=
{
"en"
:{
"edit"
:
"Edit"
,
"display"
:
"Display"
,
"add"
:
"Add"
,
"enter_data"
:
"Enter data:"
,
"enter_result"
:
"Enter result:"
,
"ok"
:
"Ok"
,
"cancel"
:
"Cancel"
},
"ru"
:{
"edit"
:
"Изменить"
,
"display"
:
"Показать"
,
"add"
:
"Добавить"
,
"enter_data"
:
"Введите вопрос:"
,
"enter_result"
:
"Введите ответ:"
,
"ok"
:
"Ок"
,
"cancel"
:
"Отмена"
},
"fr"
:{
"edit"
:
"Modifier"
,
"display"
:
"Afficher"
,
"add"
:
"Ajouter"
,
"enter_data"
:
"Entrer les données:"
,
"enter_result"
:
"Entrez le résultat:"
,
"ok"
:
"Ok"
,
"cancel"
:
"Annuler"
}
};
src/adaptors/UBThumbnailAdaptor.cpp
View file @
b79f1f8d
...
...
@@ -31,22 +31,8 @@
#include "core/memcheck.h"
UBThumbnailAdaptor
::
UBThumbnailAdaptor
(
QObject
*
parent
)
:
QObject
(
parent
)
{
// NOOP
}
UBThumbnailAdaptor
::~
UBThumbnailAdaptor
()
{
// NOOP
}
QList
<
QPixmap
>
UBThumbnailAdaptor
::
load
(
UBDocumentProxy
*
proxy
)
{
QList
<
QPixmap
>
thumbnails
;
if
(
!
proxy
||
proxy
->
persistencePath
().
size
()
==
0
)
...
...
@@ -76,7 +62,7 @@ QList<QPixmap> UBThumbnailAdaptor::load(UBDocumentProxy* proxy)
thumbCount
++
;
if
(
displayMessage
&&
thumbCount
==
1
)
UBApplication
::
showMessage
(
tr
(
"Generating preview thumbnails ..."
));
UBApplication
::
showMessage
(
tr
(
"Generating preview thumbnails ..."
));
persistScene
(
proxy
->
persistencePath
(),
scene
,
i
);
}
...
...
@@ -114,8 +100,65 @@ QList<QPixmap> UBThumbnailAdaptor::load(UBDocumentProxy* proxy)
return
thumbnails
;
}
QPixmap
UBThumbnailAdaptor
::
load
(
UBDocumentProxy
*
proxy
,
int
index
)
{
int
existingPageCount
=
proxy
->
pageCount
();
if
(
!
proxy
||
proxy
->
persistencePath
().
size
()
==
0
||
index
<
0
||
index
>=
existingPageCount
)
return
QPixmap
();
//compatibility with older formats (<= 4.0.b.2.0) : generate missing thumbnails
QString
thumbFileName
=
proxy
->
persistencePath
()
+
UBFileSystemUtils
::
digitFileFormat
(
"/page%1.thumbnail.jpg"
,
existingPageCount
);
QFile
thumbFile
(
thumbFileName
);
if
(
!
thumbFile
.
exists
())
{
bool
displayMessage
=
(
existingPageCount
>
5
);
int
thumbCount
=
0
;
for
(
int
i
=
0
;
i
<
existingPageCount
;
i
++
)
{
UBGraphicsScene
*
scene
=
UBSvgSubsetAdaptor
::
loadScene
(
proxy
,
i
);
if
(
scene
)
{
thumbCount
++
;
if
(
displayMessage
&&
thumbCount
==
1
)
UBApplication
::
showMessage
(
tr
(
"Generating preview thumbnails ..."
));
persistScene
(
proxy
->
persistencePath
(),
scene
,
i
);
}
}
if
(
displayMessage
&&
thumbCount
>
0
)
UBApplication
::
showMessage
(
tr
(
"%1 thumbnails generated ..."
).
arg
(
thumbCount
));
}
//end compatibility with older format
QString
fileName
=
proxy
->
persistencePath
()
+
UBFileSystemUtils
::
digitFileFormat
(
"/page%1.thumbnail.jpg"
,
index
+
1
);
QFile
file
(
fileName
);
if
(
file
.
exists
())
{
QPixmap
pix
;
//Warning. Works only with modified Qt
#ifdef Q_WS_X11
pix
.
load
(
fileName
,
0
,
Qt
::
AutoColor
);
#else
pix
.
load
(
fileName
,
0
,
Qt
::
AutoColor
,
false
);
#endif
return
pix
;
}
return
QPixmap
();
}
void
UBThumbnailAdaptor
::
persistScene
(
const
QString
&
pDocPath
,
UBGraphicsScene
*
pScene
,
const
int
pageIndex
,
const
bool
overrideModified
)
void
UBThumbnailAdaptor
::
persistScene
(
const
QString
&
pDocPath
,
UBGraphicsScene
*
pScene
,
int
pageIndex
,
bool
overrideModified
)
{
QString
fileName
=
pDocPath
+
UBFileSystemUtils
::
digitFileFormat
(
"/page%1.thumbnail.jpg"
,
pageIndex
+
1
);
...
...
@@ -161,7 +204,7 @@ void UBThumbnailAdaptor::persistScene(const QString& pDocPath, UBGraphicsScene*
}
QUrl
UBThumbnailAdaptor
::
thumbnailUrl
(
UBDocumentProxy
*
proxy
,
const
int
pageIndex
)
QUrl
UBThumbnailAdaptor
::
thumbnailUrl
(
UBDocumentProxy
*
proxy
,
int
pageIndex
)
{
QString
fileName
=
proxy
->
persistencePath
()
+
UBFileSystemUtils
::
digitFileFormat
(
"/page%1.thumbnail.jpg"
,
pageIndex
+
1
);
...
...
src/adaptors/UBThumbnailAdaptor.h
View file @
b79f1f8d
...
...
@@ -21,21 +21,18 @@ class UBDocument;
class
UBDocumentProxy
;
class
UBGraphicsScene
;
class
UBThumbnailAdaptor
:
public
QObject
class
UBThumbnailAdaptor
//static class
{
Q_OBJECT
;
Q_DECLARE_TR_FUNCTIONS
(
UBThumbnailAdaptor
)
private
:
UBThumbnailAdaptor
()
{}
public
:
UBThumbnailAdaptor
(
QObject
*
parent
=
0
);
~
UBThumbnailAdaptor
();
static
void
persistScene
(
const
QString
&
pDocPath
,
UBGraphicsScene
*
pScene
,
const
int
pageIndex
,
const
bool
overrideModified
=
false
);
static
void
persistScene
(
const
QString
&
pDocPath
,
UBGraphicsScene
*
pScene
,
int
pageIndex
,
bool
overrideModified
=
false
);
static
QList
<
QPixmap
>
load
(
UBDocumentProxy
*
proxy
);
static
QPixmap
load
(
UBDocumentProxy
*
proxy
,
int
index
);
static
QUrl
thumbnailUrl
(
UBDocumentProxy
*
proxy
,
const
int
pageIndex
);
static
QUrl
thumbnailUrl
(
UBDocumentProxy
*
proxy
,
int
pageIndex
);
};
#endif // UBTHUMBNAILADAPTOR_H
src/board/UBBoardController.cpp
View file @
b79f1f8d
...
...
@@ -1166,11 +1166,10 @@ void UBBoardController::setActiveDocumentScene(UBDocumentProxy* pDocumentProxy,
{
emit
activeDocumentChanged
();
UBGraphicsTextItem
::
lastUsedTextColor
=
QColor
();
// Notify the navigator palette that the document has changed
emit
setDocOnPageNavigator
(
pDocumentProxy
);
}
// Notify the navigator palette that the document has changed
emit
setDocOnPageNavigator
(
pDocumentProxy
);
if
(
sceneChange
)
{
emit
activeSceneChanged
();
...
...
src/gui/UBDocumentNavigator.cpp
View file @
b79f1f8d
...
...
@@ -99,7 +99,7 @@ void UBDocumentNavigator::setDocument(UBDocumentProxy *document)
*/
void
UBDocumentNavigator
::
generateThumbnails
()
{
// Get the thumbnails
// Get the thumbnails
QList
<
QPixmap
>
thumbs
=
UBThumbnailAdaptor
::
load
(
mCrntDoc
);
mThumbsWithLabels
.
clear
();
...
...
@@ -155,9 +155,8 @@ void UBDocumentNavigator::updateSpecificThumbnail(int iPage)
UBThumbnailAdaptor
::
persistScene
(
mCrntDoc
->
persistencePath
(),
pScene
,
iPage
);
// Load it
QList
<
QPixmap
>
thumbs
=
UBThumbnailAdaptor
::
load
(
mCrntDoc
);
QPixmap
pix
=
thumbs
.
at
(
iPage
);
QGraphicsPixmapItem
*
pixmapItem
=
new
UBSceneThumbnailNavigPixmap
(
pix
,
mCrntDoc
,
iPage
);
QPixmap
pix
=
UBThumbnailAdaptor
::
load
(
mCrntDoc
,
iPage
);
UBSceneThumbnailNavigPixmap
*
pixmapItem
=
new
UBSceneThumbnailNavigPixmap
(
pix
,
mCrntDoc
,
iPage
);
if
(
pixmapItem
)
{
// Get the old thumbnail
...
...
@@ -307,27 +306,29 @@ void UBDocumentNavigator::mousePressEvent(QMouseEvent *event)
}
}
}
else
{
if
(
NULL
!=
mCrntItem
&&
mCrntItem
!=
pCrntItem
)
{
// Unselect the previous item
int
iOldPage
=
-
1
;
else
{
if
(
NULL
!=
mCrntItem
&&
mCrntItem
!=
pCrntItem
)
{
// Unselect the previous item
mCrntItem
->
setSelected
(
false
);
int
iOldPage
=
-
1
;
for
(
int
i
=
0
;
i
<
mThumbsWithLabels
.
size
();
i
++
)
if
(
mThumbsWithLabels
.
at
(
i
).
getThumbnail
()
==
mCrntItem
)
{
iOldPage
=
i
;
break
;
}
updateSpecificThumbnail
(
iOldPage
);
mCrntItem
=
pCrntItem
;
}
updateSpecificThumbnail
(
iOldPage
);
mCrntItem
=
pCrntItem
;
}
// Then display the related page
emit
changeCurrentPage
();
refreshScene
();
}
bNavig
=
false
;
// Then display the related page
emit
changeCurrentPage
();
refreshScene
();
}
bNavig
=
false
;
}
QGraphicsView
::
mousePressEvent
(
event
);
}
...
...
src/gui/UBDocumentNavigator.h
View file @
b79f1f8d
...
...
@@ -58,7 +58,7 @@ private slots:
private
:
void
refreshScene
();
void
updateSpecificThumbnail
(
int
iPage
);
void
updateSpecificThumbnail
(
int
iPage
);
int
border
();
...
...
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