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
63a71fad
Commit
63a71fad
authored
Jul 26, 2011
by
ivan.ilyin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:Sankore/Sankore-3.1
parents
2a693c50
32f979fe
Changes
10
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
538 additions
and
106 deletions
+538
-106
colorpicker.js
...ces/library/interactive/ColorPicker.wgt/js/colorpicker.js
+2
-2
app.js
resources/library/interactive/barre_prof.wgt/scripts/app.js
+18
-18
UBImportDocument.cpp
src/adaptors/UBImportDocument.cpp
+9
-5
UBDocumentPublisher.cpp
src/adaptors/publishing/UBDocumentPublisher.cpp
+247
-42
UBDocumentPublisher.h
src/adaptors/publishing/UBDocumentPublisher.h
+53
-0
main.cpp
src/core/main.cpp
+10
-4
UBUpdateDlg.cpp
src/gui/UBUpdateDlg.cpp
+133
-22
UBUpdateDlg.h
src/gui/UBUpdateDlg.h
+17
-6
UniboardSankoreTransition.cpp
src/transition/UniboardSankoreTransition.cpp
+34
-7
UniboardSankoreTransition.h
src/transition/UniboardSankoreTransition.h
+15
-0
No files found.
resources/library/interactive/ColorPicker.wgt/js/colorpicker.js
View file @
63a71fad
...
@@ -57,8 +57,8 @@
...
@@ -57,8 +57,8 @@
},
},
setNewColor
=
function
(
hsb
,
cal
)
{
setNewColor
=
function
(
hsb
,
cal
)
{
$
(
cal
).
data
(
'colorpicker'
).
newColor
.
css
(
'backgroundColor'
,
'#'
+
HSBToHex
(
hsb
));
$
(
cal
).
data
(
'colorpicker'
).
newColor
.
css
(
'backgroundColor'
,
'#'
+
HSBToHex
(
hsb
));
window
.
uniboard
.
setTool
(
'pen'
);
window
.
sankore
.
setTool
(
'pen'
);
window
.
uniboard
.
setPenColor
(
'#'
+
HSBToHex
(
hsb
));
window
.
sankore
.
setPenColor
(
'#'
+
HSBToHex
(
hsb
));
},
},
keyDown
=
function
(
ev
)
{
keyDown
=
function
(
ev
)
{
var
pressedKey
=
ev
.
charCode
||
ev
.
keyCode
||
-
1
;
var
pressedKey
=
ev
.
charCode
||
ev
.
keyCode
||
-
1
;
...
...
resources/library/interactive/barre_prof.wgt/scripts/app.js
View file @
63a71fad
//
uniboard
= {
//
sankore
= {
// preference : function(){},
// preference : function(){},
// setPreference : function(){}
// setPreference : function(){}
// }
// }
...
@@ -14,7 +14,7 @@ $(document).ready(function()
...
@@ -14,7 +14,7 @@ $(document).ready(function()
function
_init
()
function
_init
()
{
{
w
.
setSplashContent
(
'<img src="custom_icon.png" alt="Click">'
);
w
.
setSplashContent
(
'<img src="custom_icon.png" alt="Click">'
);
w
.
setEditContent
(
'<textarea style="width: 100%; height: 100%;">'
+
(
window
.
uniboard
.
preference
(
"text"
)
||
'Type a note here'
)
+
'</textarea>'
);
w
.
setEditContent
(
'<textarea style="width: 100%; height: 100%;">'
+
(
window
.
sankore
.
preference
(
"text"
)
||
'Type a note here'
)
+
'</textarea>'
);
w
.
elements
.
containerEdit
.
find
(
"textarea"
).
tinymce
(
w
.
elements
.
containerEdit
.
find
(
"textarea"
).
tinymce
(
{
{
script_url
:
'tinymcejq/tiny_mce.js'
,
script_url
:
'tinymcejq/tiny_mce.js'
,
...
@@ -41,16 +41,16 @@ $(document).ready(function()
...
@@ -41,16 +41,16 @@ $(document).ready(function()
{
{
ed
.
onKeyUp
.
add
(
function
(
ed
,
e
)
ed
.
onKeyUp
.
add
(
function
(
ed
,
e
)
{
{
if
(
window
.
uniboard
)
if
(
window
.
sankore
)
{
{
window
.
uniboard
.
setPreference
(
"text"
,
ed
.
getContent
());
window
.
sankore
.
setPreference
(
"text"
,
ed
.
getContent
());
}
}
});
});
ed
.
onExecCommand
.
add
(
function
(
ed
,
e
)
ed
.
onExecCommand
.
add
(
function
(
ed
,
e
)
{
{
if
(
window
.
uniboard
)
if
(
window
.
sankore
)
{
{
window
.
uniboard
.
setPreference
(
"text"
,
ed
.
getContent
());
window
.
sankore
.
setPreference
(
"text"
,
ed
.
getContent
());
}
}
});
});
},
},
...
@@ -63,9 +63,9 @@ $(document).ready(function()
...
@@ -63,9 +63,9 @@ $(document).ready(function()
});
});
w
.
modeView
();
// init view mode
w
.
modeView
();
// init view mode
w
.
modeEdit
();
// init edit mode
w
.
modeEdit
();
// init edit mode
if
(
window
.
uniboard
.
preference
(
"state"
)
==
'view'
)
// back to view mode if last state was it
if
(
window
.
sankore
.
preference
(
"state"
)
==
'view'
)
// back to view mode if last state was it
w
.
modeView
();
w
.
modeView
();
if
(
window
.
uniboard
.
preference
(
"is_splash"
)
==
'1'
)
if
(
window
.
sankore
.
preference
(
"is_splash"
)
==
'1'
)
w
.
modeSplash
(
true
);
w
.
modeSplash
(
true
);
w
.
allowResize
=
true
;
w
.
allowResize
=
true
;
};
};
...
@@ -84,15 +84,15 @@ $(document).ready(function()
...
@@ -84,15 +84,15 @@ $(document).ready(function()
w
.
getWidth
=
function
()
w
.
getWidth
=
function
()
{
{
var
res
=
360
;
var
res
=
360
;
if
(
window
.
uniboard
&&
window
.
uniboard
.
preference
(
"width"
))
if
(
window
.
sankore
&&
window
.
sankore
.
preference
(
"width"
))
res
=
parseInt
(
window
.
uniboard
.
preference
(
"width"
));
res
=
parseInt
(
window
.
sankore
.
preference
(
"width"
));
return
res
;
return
res
;
};
};
w
.
getHeight
=
function
()
w
.
getHeight
=
function
()
{
{
var
res
=
230
;
var
res
=
230
;
if
(
window
.
uniboard
&&
window
.
uniboard
.
preference
(
"height"
))
if
(
window
.
sankore
&&
window
.
sankore
.
preference
(
"height"
))
res
=
parseInt
(
window
.
uniboard
.
preference
(
"height"
));
res
=
parseInt
(
window
.
sankore
.
preference
(
"height"
));
return
res
;
return
res
;
};
};
...
@@ -121,24 +121,24 @@ $(document).ready(function()
...
@@ -121,24 +121,24 @@ $(document).ready(function()
w
.
elements
.
container
.
width
(
winwidth
);
w
.
elements
.
container
.
width
(
winwidth
);
w
.
elements
.
container
.
height
(
winheight
);
w
.
elements
.
container
.
height
(
winheight
);
tinyMCE
.
activeEditor
.
theme
.
resizeTo
(
winwidth
,
winheight
-
98
);
tinyMCE
.
activeEditor
.
theme
.
resizeTo
(
winwidth
,
winheight
-
98
);
if
(
window
.
uniboard
)
if
(
window
.
sankore
)
{
{
window
.
uniboard
.
setPreference
(
"width"
,
winwidth
);
window
.
sankore
.
setPreference
(
"width"
,
winwidth
);
window
.
uniboard
.
setPreference
(
"height"
,
winheight
-
33
);
window
.
sankore
.
setPreference
(
"height"
,
winheight
-
33
);
}
}
};
};
w
.
modeView
=
function
()
w
.
modeView
=
function
()
{
{
if
(
w
.
allowResize
)
if
(
w
.
allowResize
)
window
.
uniboard
.
setPreference
(
"state"
,
"view"
);
window
.
sankore
.
setPreference
(
"state"
,
"view"
);
return
_super_modeView
.
call
(
this
);
return
_super_modeView
.
call
(
this
);
}
}
w
.
modeEdit
=
function
()
w
.
modeEdit
=
function
()
{
{
if
(
w
.
allowResize
)
if
(
w
.
allowResize
)
window
.
uniboard
.
setPreference
(
"state"
,
"edit"
);
window
.
sankore
.
setPreference
(
"state"
,
"edit"
);
return
_super_modeEdit
.
call
(
this
);
return
_super_modeEdit
.
call
(
this
);
}
}
...
@@ -146,7 +146,7 @@ $(document).ready(function()
...
@@ -146,7 +146,7 @@ $(document).ready(function()
{
{
if
(
enable
==
undefined
)
if
(
enable
==
undefined
)
enable
=
true
;
enable
=
true
;
window
.
uniboard
.
setPreference
(
"is_splash"
,
(
w
.
allowResize
&&
enable
)?
1
:
0
);
window
.
sankore
.
setPreference
(
"is_splash"
,
(
w
.
allowResize
&&
enable
)?
1
:
0
);
return
_super_modeSplash
.
call
(
this
,
enable
);
return
_super_modeSplash
.
call
(
this
,
enable
);
}
}
...
...
src/adaptors/UBImportDocument.cpp
View file @
63a71fad
...
@@ -175,11 +175,15 @@ UBDocumentProxy* UBImportDocument::importFile(const QFile& pFile, const QString&
...
@@ -175,11 +175,15 @@ UBDocumentProxy* UBImportDocument::importFile(const QFile& pFile, const QString&
QString
documentRootFolder
=
expandFileToDir
(
pFile
,
path
);
QString
documentRootFolder
=
expandFileToDir
(
pFile
,
path
);
UBDocumentProxy
*
newDocument
=
UBPersistenceManager
::
persistenceManager
()
->
createDocumentFromDir
(
documentRootFolder
);
if
(
!
documentRootFolder
.
length
()){
UBApplication
::
showMessage
(
tr
(
"Import of file %1 failed."
).
arg
(
fi
.
baseName
()));
UBApplication
::
showMessage
(
tr
(
"Import successful."
));
return
0
;
}
return
newDocument
;
else
{
UBDocumentProxy
*
newDocument
=
UBPersistenceManager
::
persistenceManager
()
->
createDocumentFromDir
(
documentRootFolder
);
UBApplication
::
showMessage
(
tr
(
"Import successful."
));
return
newDocument
;
}
}
}
...
...
src/adaptors/publishing/UBDocumentPublisher.cpp
View file @
63a71fad
This diff is collapsed.
Click to expand it.
src/adaptors/publishing/UBDocumentPublisher.h
View file @
63a71fad
...
@@ -10,11 +10,62 @@
...
@@ -10,11 +10,62 @@
#define DOCPUBLICATION_URL "http://sankore.devxwiki.com/xwiki/bin/view/CreateResources/UniboardUpload"
#define DOCPUBLICATION_URL "http://sankore.devxwiki.com/xwiki/bin/view/CreateResources/UniboardUpload"
#define XWIKI_ORIGIN_HEADER "http://sankore.devxwiki.com"
#define XWIKI_ORIGIN_HEADER "http://sankore.devxwiki.com"
typedef
struct
{
QString
title
;
QString
description
;
}
sDocumentInfos
;
class
UBDocumentProxy
;
class
UBDocumentProxy
;
class
UBServerXMLHttpRequest
;
class
UBServerXMLHttpRequest
;
class
UBGraphicsW3CWidgetItem
;
class
UBGraphicsW3CWidgetItem
;
class
QWebView
;
class
QWebView
;
class
UBProxyLoginDlg
:
public
QDialog
{
Q_OBJECT
public
:
UBProxyLoginDlg
(
QWidget
*
parent
=
0
,
const
char
*
name
=
"ProxyLoginDlg"
);
~
UBProxyLoginDlg
();
QString
username
(){
return
mpUsername
->
text
();}
QString
password
(){
return
mpPassword
->
text
();}
private
:
QVBoxLayout
*
mpLayout
;
QHBoxLayout
*
mpUserLayout
;
QHBoxLayout
*
mpPasswordLayout
;
QDialogButtonBox
*
mpButtons
;
QLabel
*
mpUserLabel
;
QLabel
*
mpPasswordLabel
;
QLineEdit
*
mpUsername
;
QLineEdit
*
mpPassword
;
};
class
UBPublicationDlg
:
public
QDialog
{
Q_OBJECT
public
:
UBPublicationDlg
(
QWidget
*
parent
=
0
,
const
char
*
name
=
"UBPublicationDlg"
);
~
UBPublicationDlg
();
QString
title
(){
return
mpTitle
->
text
();}
QString
description
(){
return
mpDescription
->
document
()
->
toPlainText
();}
private
slots
:
void
onTextChanged
();
private
:
QVBoxLayout
*
mpLayout
;
QHBoxLayout
*
mpTitleLayout
;
QLabel
*
mpTitleLabel
;
QLineEdit
*
mpTitle
;
QLabel
*
mpDescLabel
;
QTextEdit
*
mpDescription
;
QDialogButtonBox
*
mpButtons
;
};
class
UBDocumentPublisher
:
public
UBAbstractPublisher
class
UBDocumentPublisher
:
public
UBAbstractPublisher
{
{
Q_OBJECT
;
Q_OBJECT
;
...
@@ -42,6 +93,7 @@ private slots:
...
@@ -42,6 +93,7 @@ private slots:
void
onLinkClicked
(
const
QUrl
&
url
);
void
onLinkClicked
(
const
QUrl
&
url
);
void
onLoadFinished
(
bool
result
);
void
onLoadFinished
(
bool
result
);
void
onLoginDone
();
void
onLoginDone
();
void
onProxyAuthenticationRequired
(
const
QNetworkProxy
&
proxy
,
QAuthenticator
*
authenticator
);
private
:
private
:
...
@@ -65,6 +117,7 @@ private:
...
@@ -65,6 +117,7 @@ private:
void
login
(
QString
username
,
QString
password
);
void
login
(
QString
username
,
QString
password
);
QString
mTmpZipFile
;
QString
mTmpZipFile
;
QList
<
QNetworkCookie
>
mCookies
;
QList
<
QNetworkCookie
>
mCookies
;
sDocumentInfos
mDocInfos
;
};
};
#endif // UBDOCUMENTPUBLISHER_H
#endif // UBDOCUMENTPUBLISHER_H
src/core/main.cpp
View file @
63a71fad
...
@@ -73,10 +73,16 @@ int main(int argc, char *argv[])
...
@@ -73,10 +73,16 @@ int main(int argc, char *argv[])
#endif
#endif
UBApplication
app
(
"Sankore 3.1"
,
argc
,
argv
);
UBApplication
app
(
"Sankore 3.1"
,
argc
,
argv
);
QTextCodec
::
setCodecForTr
(
QTextCodec
::
codecForName
(
"UTF-8"
));
//BUGFIX:
QTextCodec
::
setCodecForLocale
(
QTextCodec
::
codecForName
(
"UTF-8"
));
//when importing a sankore file that contains a non standard character
QTextCodec
::
setCodecForCStrings
(
QTextCodec
::
codecForName
(
"UTF-8"
));
//the codecForLocale or the codecForCString is used to convert the file path
//into a const char*. This is why in french windows setup the codec name shouldn't be
//set to UTF-8. For example, setting UTF-8, will convert "Hati" into "Ha-ti.
QTextCodec
::
setCodecForTr
(
QTextCodec
::
codecForName
(
"UTF-8"
));
//QTextCodec::setCodecForLocale(QTextCodec::codecForName("UTF-8"));
QTextCodec
::
setCodecForCStrings
(
QTextCodec
::
codecForName
(
"UTF-8"
));
QStringList
args
=
app
.
arguments
();
QStringList
args
=
app
.
arguments
();
...
...
src/gui/UBUpdateDlg.cpp
View file @
63a71fad
...
@@ -6,62 +6,167 @@
...
@@ -6,62 +6,167 @@
#include "core/memcheck.h"
#include "core/memcheck.h"
UBUpdateDlg
::
UBUpdateDlg
(
QWidget
*
parent
,
int
nbFiles
,
const
QString
&
bkpPath
)
UBUpdateDlg
::
UBUpdateDlg
(
QWidget
*
parent
,
int
nbFiles
,
const
QString
&
bkpPath
)
:
QDialog
(
parent
)
:
QDialog
(
parent
)
,
mpDlgBttn
(
NULL
)
,
mMainLayout
(
NULL
)
,
mNbFilesLabel
(
NULL
)
,
mBkpLabel
(
NULL
)
,
mBkpPath
(
NULL
)
,
mBrowseBttn
(
NULL
)
,
mpDlgBttn
(
NULL
)
,
mLayout
(
NULL
)
,
mHLayout
(
NULL
)
,
mStackedWidget
(
NULL
)
,
mDialogWidget
(
NULL
)
,
mProgressWidget
(
NULL
)
,
mProgressLayout
(
NULL
)
,
mProgressLabel
(
NULL
)
{
{
setFixedSize
(
400
,
110
);
mDialogWidget
=
new
QWidget
(
this
);
mProgressWidget
=
new
QWidget
(
this
);
mStackedWidget
=
new
QStackedWidget
(
this
);
mStackedWidget
->
addWidget
(
mDialogWidget
);
mStackedWidget
->
addWidget
(
mProgressWidget
);
setFixedSize
(
450
,
110
);
setModal
(
true
);
setModal
(
true
);
setWindowTitle
(
tr
(
"Document updater"
));
setWindowTitle
(
tr
(
"Document updater"
));
setLayout
(
&
mLayout
);
mLayout
=
new
QVBoxLayout
();
setLayout
(
mLayout
);
QString
str
=
QString
::
number
(
nbFiles
);
QString
str
=
QString
::
number
(
nbFiles
);
str
.
append
(
tr
(
" files require an update."
));
str
.
append
(
tr
(
" files require an update."
));
mNbFilesLabel
.
setText
(
str
);
mNbFilesLabel
=
new
QLabel
(
mDialogWidget
);
mLayout
.
addWidget
(
&
mNbFilesLabel
);
mNbFilesLabel
->
setText
(
str
);
mBkpLabel
.
setText
(
tr
(
"Backup path: "
));
mBkpPath
.
setText
(
bkpPath
);
mLayout
->
addWidget
(
mNbFilesLabel
);
mBrowseBttn
.
setText
(
tr
(
"Browse"
));
mHLayout
.
addWidget
(
&
mBkpLabel
);
mBkpLabel
=
new
QLabel
(
mDialogWidget
);
mHLayout
.
addWidget
(
&
mBkpPath
,
1
);
mBkpLabel
->
setText
(
tr
(
"Backup path: "
));
mHLayout
.
addWidget
(
&
mBrowseBttn
);
mLayout
.
addLayout
(
&
mHLayout
);
mBkpPath
=
new
QLineEdit
(
mDialogWidget
);
mBkpPath
->
setText
(
bkpPath
);
mpDlgBttn
=
new
QDialogButtonBox
(
QDialogButtonBox
::
Ok
|
QDialogButtonBox
::
Cancel
,
Qt
::
Horizontal
,
this
);
mLayout
.
addWidget
(
mpDlgBttn
);
mBrowseBttn
=
new
QPushButton
(
mDialogWidget
);
mBrowseBttn
->
setText
(
tr
(
"Browse"
));
mHLayout
=
new
QHBoxLayout
();
mHLayout
->
addWidget
(
mBkpLabel
);
mHLayout
->
addWidget
(
mBkpPath
,
1
);
mHLayout
->
addWidget
(
mBrowseBttn
);
mLayout
->
addLayout
(
mHLayout
);
mpDlgBttn
=
new
QDialogButtonBox
(
QDialogButtonBox
::
Ok
|
QDialogButtonBox
::
Cancel
,
Qt
::
Horizontal
,
mDialogWidget
);
mLayout
->
addWidget
(
mpDlgBttn
);
mpDlgBttn
->
button
(
QDialogButtonBox
::
Ok
)
->
setText
(
tr
(
"Update"
));
mpDlgBttn
->
button
(
QDialogButtonBox
::
Ok
)
->
setText
(
tr
(
"Update"
));
mpDlgBttn
->
button
(
QDialogButtonBox
::
Cancel
)
->
setText
(
"Remind me later"
);
mpDlgBttn
->
button
(
QDialogButtonBox
::
Cancel
)
->
setText
(
"Remind me later"
);
QObject
::
connect
(
&
mBrowseBttn
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
onBrowse
()));
QObject
::
connect
(
mBrowseBttn
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
onBrowse
()));
QObject
::
connect
(
mpDlgBttn
,
SIGNAL
(
accepted
()),
this
,
SLOT
(
onUpdate
()));
QObject
::
connect
(
mpDlgBttn
,
SIGNAL
(
accepted
()),
this
,
SLOT
(
onUpdate
()));
QObject
::
connect
(
mpDlgBttn
,
SIGNAL
(
rejected
()),
this
,
SLOT
(
reject
()));
QObject
::
connect
(
mpDlgBttn
,
SIGNAL
(
rejected
()),
this
,
SLOT
(
reject
()));
mDialogWidget
->
setLayout
(
mLayout
);
mStackedWidget
->
setCurrentWidget
(
mDialogWidget
);
mMainLayout
=
new
QVBoxLayout
();
this
->
setLayout
(
mMainLayout
);
mMainLayout
->
addWidget
(
mStackedWidget
);
}
}
UBUpdateDlg
::~
UBUpdateDlg
()
UBUpdateDlg
::~
UBUpdateDlg
()
{
{
if
(
NULL
!=
mpDlgBttn
)
if
(
NULL
!=
mpDlgBttn
)
{
{
delete
mpDlgBttn
;
delete
mpDlgBttn
;
mpDlgBttn
=
NULL
;
mpDlgBttn
=
NULL
;
}
}
if
(
mNbFilesLabel
)
{
delete
mNbFilesLabel
;
mNbFilesLabel
=
NULL
;
}
if
(
mBkpLabel
)
{
delete
mBkpLabel
;
mBkpLabel
=
NULL
;
}
if
(
mBkpPath
)
{
delete
mBkpPath
;
mBkpPath
=
NULL
;
}
if
(
mBrowseBttn
)
{
delete
mBrowseBttn
;
mBrowseBttn
=
NULL
;
}
if
(
mProgressLabel
)
{
delete
mProgressLabel
;
mProgressLabel
=
NULL
;
}
if
(
mHLayout
)
{
delete
mHLayout
;
mHLayout
=
NULL
;
}
if
(
mLayout
)
{
delete
mLayout
;
mLayout
=
NULL
;
}
if
(
mProgressLayout
)
{
delete
mProgressLayout
;
mProgressLayout
=
NULL
;
}
if
(
mDialogWidget
)
{
delete
mDialogWidget
;
mDialogWidget
=
NULL
;
}
if
(
mProgressWidget
)
{
delete
mProgressWidget
;
mProgressWidget
=
NULL
;
}
if
(
mStackedWidget
)
{
delete
mStackedWidget
;
mStackedWidget
=
NULL
;
}
if
(
mMainLayout
)
{
delete
mMainLayout
;
mMainLayout
=
NULL
;
}
}
}
void
UBUpdateDlg
::
onBrowse
()
void
UBUpdateDlg
::
onBrowse
()
{
{
QString
qsSelectedDir
;
QString
qsSelectedDir
;
qsSelectedDir
=
QFileDialog
::
getExistingDirectory
(
this
,
tr
(
"Select a backup folder"
),
mBkpPath
.
text
());
qsSelectedDir
=
QFileDialog
::
getExistingDirectory
(
this
,
tr
(
"Select a backup folder"
),
mBkpPath
->
text
());
mBkpPath
.
setText
(
qsSelectedDir
);
mBkpPath
->
setText
(
qsSelectedDir
);
}
}
void
UBUpdateDlg
::
onUpdate
()
void
UBUpdateDlg
::
onUpdate
()
{
{
mProgressLabel
=
new
QLabel
(
mProgressWidget
);
mProgressLayout
=
new
QHBoxLayout
();
mProgressLayout
->
addWidget
(
mProgressLabel
);
mProgressWidget
->
setLayout
(
mProgressLayout
);
mStackedWidget
->
setCurrentWidget
(
mProgressWidget
);
emit
updateFiles
();
emit
updateFiles
();
}
}
void
UBUpdateDlg
::
onFilesUpdated
(
bool
bResult
)
void
UBUpdateDlg
::
onFilesUpdated
(
bool
bResult
)
{
{
this
->
hide
();
QString
qsMsg
;
QString
qsMsg
;
if
(
bResult
)
if
(
bResult
)
{
{
qsMsg
=
tr
(
"Files update successful!
\n
Please reboot the application to access the updated documents."
);
qsMsg
=
tr
(
"Files update successful!
\n
Please reboot the application to access the updated documents."
);
}
}
...
@@ -74,5 +179,11 @@ void UBUpdateDlg::onFilesUpdated(bool bResult)
...
@@ -74,5 +179,11 @@ void UBUpdateDlg::onFilesUpdated(bool bResult)
QString
UBUpdateDlg
::
backupPath
()
QString
UBUpdateDlg
::
backupPath
()
{
{
return
mBkpPath
.
text
();
return
mBkpPath
->
text
();
}
}
void
UBUpdateDlg
::
transitioningFile
(
QString
fileName
)
{
mProgressLabel
->
setText
(
tr
(
"Updating file "
)
+
fileName
);
}
src/gui/UBUpdateDlg.h
View file @
63a71fad
...
@@ -8,6 +8,7 @@
...
@@ -8,6 +8,7 @@
#include <QDialogButtonBox>
#include <QDialogButtonBox>
#include <QVBoxLayout>
#include <QVBoxLayout>
#include <QHBoxLayout>
#include <QHBoxLayout>
#include <QStackedWidget>
class
UBUpdateDlg
:
public
QDialog
class
UBUpdateDlg
:
public
QDialog
{
{
...
@@ -27,15 +28,25 @@ signals:
...
@@ -27,15 +28,25 @@ signals:
private
slots
:
private
slots
:
void
onBrowse
();
void
onBrowse
();
void
onUpdate
();
void
onUpdate
();
void
transitioningFile
(
QString
fileName
);
private
:
private
:
QLabel
mNbFilesLabel
;
QVBoxLayout
*
mMainLayout
;
QLabel
mBkpLabel
;
QLineEdit
mBkpPath
;
QLabel
*
mNbFilesLabel
;
QPushButton
mBrowseBttn
;
QLabel
*
mBkpLabel
;
QLineEdit
*
mBkpPath
;
QPushButton
*
mBrowseBttn
;
QDialogButtonBox
*
mpDlgBttn
;
QDialogButtonBox
*
mpDlgBttn
;
QVBoxLayout
mLayout
;
QVBoxLayout
*
mLayout
;
QHBoxLayout
mHLayout
;
QHBoxLayout
*
mHLayout
;
QStackedWidget
*
mStackedWidget
;
QWidget
*
mDialogWidget
;
QWidget
*
mProgressWidget
;
QHBoxLayout
*
mProgressLayout
;
QLabel
*
mProgressLabel
;
};
};
#endif // UBUPDATEDLG_H
#endif // UBUPDATEDLG_H
src/transition/UniboardSankoreTransition.cpp
View file @
63a71fad
...
@@ -7,10 +7,10 @@
...
@@ -7,10 +7,10 @@
UniboardSankoreTransition
::
UniboardSankoreTransition
(
QObject
*
parent
)
:
UniboardSankoreTransition
::
UniboardSankoreTransition
(
QObject
*
parent
)
:
QObject
(
parent
)
QObject
(
parent
)
,
mTransitionDlg
(
NULL
)
,
mTransitionDlg
(
NULL
)
,
mThread
(
NULL
)
{
{
mOldSankoreDirectory
=
UBFileSystemUtils
::
normalizeFilePath
(
UBDesktopServices
::
storageLocation
(
QDesktopServices
::
DataLocation
));
mOldSankoreDirectory
=
UBFileSystemUtils
::
normalizeFilePath
(
UBDesktopServices
::
storageLocation
(
QDesktopServices
::
DataLocation
));
qDebug
()
<<
mOldSankoreDirectory
;
mUniboardSourceDirectory
=
UBFileSystemUtils
::
normalizeFilePath
(
UBDesktopServices
::
storageLocation
(
QDesktopServices
::
DataLocation
));
mUniboardSourceDirectory
=
UBFileSystemUtils
::
normalizeFilePath
(
UBDesktopServices
::
storageLocation
(
QDesktopServices
::
DataLocation
));
#if defined(Q_WS_MACX)
#if defined(Q_WS_MACX)
...
@@ -28,6 +28,11 @@ UniboardSankoreTransition::~UniboardSankoreTransition()
...
@@ -28,6 +28,11 @@ UniboardSankoreTransition::~UniboardSankoreTransition()
delete
mTransitionDlg
;
delete
mTransitionDlg
;
mTransitionDlg
=
NULL
;
mTransitionDlg
=
NULL
;
}
}
if
(
mThread
){
delete
mThread
;
mThread
=
NULL
;
}
}
}
void
UniboardSankoreTransition
::
rollbackDocumentsTransition
(
QFileInfoList
&
fileInfoList
)
void
UniboardSankoreTransition
::
rollbackDocumentsTransition
(
QFileInfoList
&
fileInfoList
)
...
@@ -56,7 +61,7 @@ void UniboardSankoreTransition::documentTransition()
...
@@ -56,7 +61,7 @@ void UniboardSankoreTransition::documentTransition()
QString
backupDirectoryPath
=
UBFileSystemUtils
::
normalizeFilePath
(
UBDesktopServices
::
storageLocation
(
QDesktopServices
::
DesktopLocation
));
QString
backupDirectoryPath
=
UBFileSystemUtils
::
normalizeFilePath
(
UBDesktopServices
::
storageLocation
(
QDesktopServices
::
DesktopLocation
));
if
(
fileInfoList
.
count
()
!=
0
){
if
(
fileInfoList
.
count
()
!=
0
){
mTransitionDlg
=
new
UBUpdateDlg
(
0
,
fileInfoList
.
count
(),
backupDirectoryPath
);
mTransitionDlg
=
new
UBUpdateDlg
(
NULL
,
fileInfoList
.
count
(),
backupDirectoryPath
);
connect
(
mTransitionDlg
,
SIGNAL
(
updateFiles
()),
this
,
SLOT
(
startDocumentTransition
()));
connect
(
mTransitionDlg
,
SIGNAL
(
updateFiles
()),
this
,
SLOT
(
startDocumentTransition
()));
connect
(
this
,
SIGNAL
(
transitionFinished
(
bool
)),
mTransitionDlg
,
SLOT
(
onFilesUpdated
(
bool
)));
connect
(
this
,
SIGNAL
(
transitionFinished
(
bool
)),
mTransitionDlg
,
SLOT
(
onFilesUpdated
(
bool
)));
mTransitionDlg
->
show
();
mTransitionDlg
->
show
();
...
@@ -65,6 +70,13 @@ void UniboardSankoreTransition::documentTransition()
...
@@ -65,6 +70,13 @@ void UniboardSankoreTransition::documentTransition()
}
}
void
UniboardSankoreTransition
::
startDocumentTransition
()
void
UniboardSankoreTransition
::
startDocumentTransition
()
{
mThread
=
new
UniboardSankoreThread
(
this
);
mThread
->
start
();
connect
(
this
,
SIGNAL
(
transitioningFile
(
QString
)),
mTransitionDlg
,
SLOT
(
transitioningFile
(
QString
)));
}
void
UniboardSankoreTransition
::
executeTransition
()
{
{
bool
result
=
false
;
bool
result
=
false
;
QString
backupDestinationPath
=
mTransitionDlg
->
backupPath
()
+
"/OldSankoreAndUniboardVersionsBackup"
;
QString
backupDestinationPath
=
mTransitionDlg
->
backupPath
()
+
"/OldSankoreAndUniboardVersionsBackup"
;
...
@@ -78,14 +90,12 @@ void UniboardSankoreTransition::startDocumentTransition()
...
@@ -78,14 +90,12 @@ void UniboardSankoreTransition::startDocumentTransition()
QFileInfoList
::
iterator
fileInfo
;
QFileInfoList
::
iterator
fileInfo
;
QString
sankoreDocumentDirectory
=
UBSettings
::
uniboardDocumentDirectory
();
QString
sankoreDocumentDirectory
=
UBSettings
::
uniboardDocumentDirectory
();
QStringList
qslNewDocs
;
for
(
fileInfo
=
fileInfoList
.
begin
();
fileInfo
!=
fileInfoList
.
end
()
&&
result
;
fileInfo
+=
1
)
{
for
(
fileInfo
=
fileInfoList
.
begin
();
fileInfo
!=
fileInfoList
.
end
()
&&
result
;
fileInfo
+=
1
)
{
if
(
fileInfo
->
isDir
()
&&
(
fileInfo
->
fileName
().
startsWith
(
"Uniboard Document "
)
||
fileInfo
->
fileName
().
startsWith
(
"Sankore Document "
))){
if
(
fileInfo
->
isDir
()
&&
(
fileInfo
->
fileName
().
startsWith
(
"Uniboard Document "
)
||
fileInfo
->
fileName
().
startsWith
(
"Sankore Document "
))){
QString
sankoreDocumentName
=
fileInfo
->
fileName
();
QString
sankoreDocumentName
=
fileInfo
->
fileName
();
emit
transitioningFile
(
sankoreDocumentName
);
sankoreDocumentName
.
replace
(
"Uniboard"
,
"Sankore"
);
sankoreDocumentName
.
replace
(
"Uniboard"
,
"Sankore"
);
result
=
UBFileSystemUtils
::
copyDir
(
fileInfo
->
filePath
(),
sankoreDocumentDirectory
+
"/"
+
sankoreDocumentName
);
result
=
UBFileSystemUtils
::
copyDir
(
fileInfo
->
filePath
(),
sankoreDocumentDirectory
+
"/"
+
sankoreDocumentName
);
qslNewDocs
<<
sankoreDocumentName
;
}
}
}
}
...
@@ -100,6 +110,23 @@ void UniboardSankoreTransition::startDocumentTransition()
...
@@ -100,6 +110,23 @@ void UniboardSankoreTransition::startDocumentTransition()
}
}
emit
transitionFinished
(
result
);
emit
transitionFinished
(
result
);
}
UniboardSankoreThread
::
UniboardSankoreThread
(
QObject
*
parent
)
:
QThread
(
parent
)
{
mTransitionDlg
->
hide
();
}
}
UniboardSankoreThread
::~
UniboardSankoreThread
()
{
}
void
UniboardSankoreThread
::
run
()
{
UniboardSankoreTransition
*
pTransition
=
dynamic_cast
<
UniboardSankoreTransition
*>
(
parent
());
pTransition
->
executeTransition
();
}
src/transition/UniboardSankoreTransition.h
View file @
63a71fad
...
@@ -3,9 +3,21 @@
...
@@ -3,9 +3,21 @@
#include <QObject>
#include <QObject>
#include <QFileInfo>
#include <QFileInfo>
#include <QThread>
#include "gui/UBUpdateDlg.h"
#include "gui/UBUpdateDlg.h"
#include "document/UBDocumentProxy.h"
#include "document/UBDocumentProxy.h"
class
UniboardSankoreThread
:
public
QThread
{
Q_OBJECT
public
:
UniboardSankoreThread
(
QObject
*
parent
=
0
);
~
UniboardSankoreThread
();
void
run
();
};
class
UniboardSankoreTransition
:
public
QObject
class
UniboardSankoreTransition
:
public
QObject
{
{
Q_OBJECT
Q_OBJECT
...
@@ -13,6 +25,7 @@ public:
...
@@ -13,6 +25,7 @@ public:
explicit
UniboardSankoreTransition
(
QObject
*
parent
=
0
);
explicit
UniboardSankoreTransition
(
QObject
*
parent
=
0
);
~
UniboardSankoreTransition
();
~
UniboardSankoreTransition
();
void
documentTransition
();
void
documentTransition
();
void
executeTransition
();
private
:
private
:
...
@@ -22,10 +35,12 @@ private:
...
@@ -22,10 +35,12 @@ private:
protected
:
protected
:
QString
mUniboardSourceDirectory
;
QString
mUniboardSourceDirectory
;
QString
mOldSankoreDirectory
;
QString
mOldSankoreDirectory
;
UniboardSankoreThread
*
mThread
;
signals
:
signals
:
void
transitionFinished
(
bool
result
);
void
transitionFinished
(
bool
result
);
void
docAdded
(
UBDocumentProxy
*
doc
);
void
docAdded
(
UBDocumentProxy
*
doc
);
void
transitioningFile
(
QString
documentName
);
private
slots
:
private
slots
:
void
startDocumentTransition
();
void
startDocumentTransition
();
...
...
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