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
b253ed57
Commit
b253ed57
authored
May 14, 2012
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed some path issue on windows
parent
f943726b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
7 deletions
+25
-7
UBPersistenceManager.cpp
src/core/UBPersistenceManager.cpp
+7
-2
UBW3CWidget.cpp
src/domain/UBW3CWidget.cpp
+5
-2
UBTeacherGuideWidget.cpp
src/gui/UBTeacherGuideWidget.cpp
+7
-1
UBTeacherGuideWidgetsTools.cpp
src/gui/UBTeacherGuideWidgetsTools.cpp
+5
-1
UBThumbnailWidget.cpp
src/gui/UBThumbnailWidget.cpp
+1
-1
No files found.
src/core/UBPersistenceManager.cpp
View file @
b253ed57
...
...
@@ -848,7 +848,12 @@ QString UBPersistenceManager::teacherGuideAbsoluteObjectPath(UBDocumentProxy* pD
QString
UBPersistenceManager
::
addObjectToTeacherGuideDirectory
(
UBDocumentProxy
*
pDocumentProxy
,
QString
pPath
)
{
QFileInfo
fi
(
pPath
.
replace
(
"file://"
,
""
));
QString
path
=
pPath
;
//windows
path
.
replace
(
"file:///"
,
""
);
//others
path
.
replace
(
"file://"
,
""
);
QFileInfo
fi
(
path
);
QString
uuid
=
QUuid
::
createUuid
();
if
(
!
fi
.
exists
()
||
!
pDocumentProxy
)
...
...
@@ -862,7 +867,7 @@ QString UBPersistenceManager::addObjectToTeacherGuideDirectory(UBDocumentProxy*
QDir
dir
;
dir
.
mkdir
(
pDocumentProxy
->
persistencePath
()
+
"/"
+
UBPersistenceManager
::
teacherGuideDirectory
);
QFile
source
(
p
P
ath
);
QFile
source
(
path
);
source
.
copy
(
destPath
);
}
...
...
src/domain/UBW3CWidget.cpp
View file @
b253ed57
...
...
@@ -247,7 +247,9 @@ QString UBW3CWidget::createNPAPIWrapperInDir(const QString& pUrl, const QDir& pD
{
QString
url
=
pUrl
;
// if the file name start with file:// it has be removed because QFileInfo doesn't support this form
url
=
url
.
replace
(
"file://"
,
""
);
//
url
=
url
.
replace
(
"file:///"
,
""
);
url
=
url
.
replace
(
"file://"
,
""
);
QString
name
=
pName
;
QFileInfo
fi
(
url
);
...
...
@@ -304,7 +306,8 @@ QString UBW3CWidget::createNPAPIWrapperInDir(const QString& pUrl, const QDir& pD
if
(
fi
.
exists
()){
QString
target
=
widgetLibraryPath
+
"/"
+
fi
.
fileName
();
QString
source
=
pUrl
;
source
.
replace
(
"file://"
,
""
);
source
.
replace
(
"file:///"
,
""
);
source
.
replace
(
"file://"
,
""
);
QFile
::
copy
(
source
,
target
);
}
...
...
src/gui/UBTeacherGuideWidget.cpp
View file @
b253ed57
...
...
@@ -533,7 +533,13 @@ void UBTeacherGuidePresentationWidget::showData(QVector<tUBGEElementNode*> data)
newWidgetItem
->
setText
(
0
,
element
->
attributes
.
value
(
"title"
));
newWidgetItem
->
setData
(
0
,
tUBTGTreeWidgetItemRole_HasAnAction
,
tUBTGActionAssociateOnClickItem_MEDIA
);
newWidgetItem
->
setData
(
0
,
Qt
::
FontRole
,
QVariant
(
QFont
(
QApplication
::
font
().
family
(),
11
)));
newWidgetItem
->
setData
(
0
,
TG_USER_ROLE_MIME_TYPE
,
UBApplication
::
boardController
->
activeDocument
()
->
persistencePath
()
+
"/"
+
element
->
attributes
.
value
(
"relativePath"
));
QString
mimeTypeString
;
#ifdef Q_WS_WIN
mimeTypeString
=
QUrl
::
fromLocalFile
(
UBApplication
::
boardController
->
activeDocument
()
->
persistencePath
()
+
"/"
+
element
->
attributes
.
value
(
"relativePath"
)).
toString
();
#else
mimeTypeString
=
UBApplication
::
boardController
->
activeDocument
()
->
persistencePath
()
+
"/"
+
element
->
attributes
.
value
(
"relativePath"
);
#endif
newWidgetItem
->
setData
(
0
,
TG_USER_ROLE_MIME_TYPE
,
mimeTypeString
);
newWidgetItem
->
setFlags
(
Qt
::
ItemIsDragEnabled
|
Qt
::
ItemIsEnabled
|
Qt
::
ItemIsSelectable
);
mpRootWidgetItem
->
addChild
(
newWidgetItem
);
...
...
src/gui/UBTeacherGuideWidgetsTools.cpp
View file @
b253ed57
...
...
@@ -372,7 +372,7 @@ tUBGEElementNode* UBTGMediaWidget::saveData()
tUBGEElementNode
*
result
=
new
tUBGEElementNode
();
QString
relativePath
=
mMediaPath
;
relativePath
=
relativePath
.
replace
(
UBApplication
::
boardController
->
activeDocument
()
->
persistencePath
()
+
"/"
,
""
);
result
->
name
=
"media"
;
result
->
name
=
"media"
;
result
->
attributes
.
insert
(
"title"
,
mpTitle
->
text
());
result
->
attributes
.
insert
(
"relativePath"
,
relativePath
);
result
->
attributes
.
insert
(
"mediaType"
,
mMediaType
);
...
...
@@ -499,7 +499,11 @@ void UBTGMediaWidget::mousePressEvent(QMouseEvent *event)
QDrag
*
drag
=
new
QDrag
(
this
);
QMimeData
*
mimeData
=
new
QMimeData
();
QList
<
QUrl
>
urlList
;
#ifdef Q_WS_WIN
urlList
<<
QUrl
::
fromLocalFile
(
mMediaPath
);
#else
urlList
<<
QUrl
(
mMediaPath
);
#endif
mimeData
->
setUrls
(
urlList
);
drag
->
setMimeData
(
mimeData
);
...
...
src/gui/UBThumbnailWidget.cpp
View file @
b253ed57
...
...
@@ -842,7 +842,7 @@ void UBSceneThumbnailNavigPixmap::updateButtonsState()
}
}
}
if
(
UBSettings
::
settings
()
->
teacherGuidePageZeroActivated
and
sceneIndex
()
<=
1
)
if
(
UBSettings
::
settings
()
->
teacherGuidePageZeroActivated
&&
sceneIndex
()
<=
1
)
bCanMoveUp
=
false
;
if
(
bCanDelete
||
bCanMoveUp
||
bCanMoveDown
)
...
...
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