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
efc8b7ed
Commit
efc8b7ed
authored
Aug 10, 2012
by
Anatoly Mihalchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SANKORE-912
Import PDF: progress bar is not visible
parent
44c52f56
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
10 deletions
+10
-10
UBBoardController.cpp
src/board/UBBoardController.cpp
+4
-4
UBBoardController.h
src/board/UBBoardController.h
+1
-1
UBDocumentController.cpp
src/document/UBDocumentController.cpp
+4
-4
UBDocumentController.h
src/document/UBDocumentController.h
+1
-1
No files found.
src/board/UBBoardController.cpp
View file @
efc8b7ed
...
@@ -954,12 +954,12 @@ UBItem *UBBoardController::downloadFinished(bool pSuccess, QUrl sourceUrl, QStri
...
@@ -954,12 +954,12 @@ UBItem *UBBoardController::downloadFinished(bool pSuccess, QUrl sourceUrl, QStri
if
(
!
pSuccess
)
if
(
!
pSuccess
)
{
{
UBApplication
::
showMessage
(
tr
(
"Downloading content %1 failed"
).
arg
(
sourceUrl
.
toString
()));
showMessage
(
tr
(
"Downloading content %1 failed"
).
arg
(
sourceUrl
.
toString
()));
return
NULL
;
return
NULL
;
}
}
if
(
!
sourceUrl
.
toString
().
startsWith
(
"file://"
)
&&
!
sourceUrl
.
toString
().
startsWith
(
"uniboardTool://"
))
if
(
!
sourceUrl
.
toString
().
startsWith
(
"file://"
)
&&
!
sourceUrl
.
toString
().
startsWith
(
"uniboardTool://"
))
UBApplication
::
showMessage
(
tr
(
"Download finished"
));
showMessage
(
tr
(
"Download finished"
));
if
(
UBMimeType
::
RasterImage
==
itemMimeType
)
if
(
UBMimeType
::
RasterImage
==
itemMimeType
)
{
{
...
@@ -1237,7 +1237,7 @@ UBItem *UBBoardController::downloadFinished(bool pSuccess, QUrl sourceUrl, QStri
...
@@ -1237,7 +1237,7 @@ UBItem *UBBoardController::downloadFinished(bool pSuccess, QUrl sourceUrl, QStri
}
}
else
else
{
{
UBApplication
::
showMessage
(
tr
(
"Unknown tool type %1"
).
arg
(
sourceUrl
.
toString
()));
showMessage
(
tr
(
"Unknown tool type %1"
).
arg
(
sourceUrl
.
toString
()));
}
}
}
}
else
if
(
sourceUrl
.
toString
().
contains
(
"edumedia-sciences.com"
))
else
if
(
sourceUrl
.
toString
().
contains
(
"edumedia-sciences.com"
))
...
@@ -1292,7 +1292,7 @@ UBItem *UBBoardController::downloadFinished(bool pSuccess, QUrl sourceUrl, QStri
...
@@ -1292,7 +1292,7 @@ UBItem *UBBoardController::downloadFinished(bool pSuccess, QUrl sourceUrl, QStri
}
}
else
else
{
{
UBApplication
::
showMessage
(
tr
(
"Unknown content type %1"
).
arg
(
pContentTypeHeader
));
showMessage
(
tr
(
"Unknown content type %1"
).
arg
(
pContentTypeHeader
));
qWarning
()
<<
"ignoring mime type"
<<
pContentTypeHeader
;
qWarning
()
<<
"ignoring mime type"
<<
pContentTypeHeader
;
}
}
...
...
src/board/UBBoardController.h
View file @
efc8b7ed
...
@@ -193,7 +193,7 @@ class UBBoardController : public UBDocumentContainer
...
@@ -193,7 +193,7 @@ class UBBoardController : public UBDocumentContainer
UBItem
*
downloadFinished
(
bool
pSuccess
,
QUrl
sourceUrl
,
QString
pHeader
,
QByteArray
pData
,
QPointF
pPos
,
QSize
pSize
,
bool
isBackground
=
false
);
UBItem
*
downloadFinished
(
bool
pSuccess
,
QUrl
sourceUrl
,
QString
pHeader
,
QByteArray
pData
,
QPointF
pPos
,
QSize
pSize
,
bool
isBackground
=
false
);
void
changeBackground
(
bool
isDark
,
bool
isCrossed
);
void
changeBackground
(
bool
isDark
,
bool
isCrossed
);
void
setToolCursor
(
int
tool
);
void
setToolCursor
(
int
tool
);
void
showMessage
(
const
QString
&
message
,
bool
showSpinningWheel
);
void
showMessage
(
const
QString
&
message
,
bool
showSpinningWheel
=
false
);
void
hideMessage
();
void
hideMessage
();
void
setDisabled
(
bool
disable
);
void
setDisabled
(
bool
disable
);
void
setColorIndex
(
int
pColorIndex
);
void
setColorIndex
(
int
pColorIndex
);
...
...
src/document/UBDocumentController.cpp
View file @
efc8b7ed
...
@@ -623,7 +623,7 @@ void UBDocumentController::deleteSelectedItem()
...
@@ -623,7 +623,7 @@ void UBDocumentController::deleteSelectedItem()
toBeDeleted
<<
proxyTi
;
toBeDeleted
<<
proxyTi
;
}
}
UBApplication
::
showMessage
(
tr
(
"Emptying trash"
));
showMessage
(
tr
(
"Emptying trash"
));
for
(
int
i
=
0
;
i
<
toBeDeleted
.
count
();
i
++
)
for
(
int
i
=
0
;
i
<
toBeDeleted
.
count
();
i
++
)
{
{
...
@@ -633,7 +633,7 @@ void UBDocumentController::deleteSelectedItem()
...
@@ -633,7 +633,7 @@ void UBDocumentController::deleteSelectedItem()
UBPersistenceManager
::
persistenceManager
()
->
deleteDocument
(
proxyTi
->
proxy
());
UBPersistenceManager
::
persistenceManager
()
->
deleteDocument
(
proxyTi
->
proxy
());
}
}
UBApplication
::
showMessage
(
tr
(
"Emptied trash"
));
showMessage
(
tr
(
"Emptied trash"
));
QApplication
::
restoreOverrideCursor
();
QApplication
::
restoreOverrideCursor
();
mMainWindow
->
actionDelete
->
setEnabled
(
false
);
mMainWindow
->
actionDelete
->
setEnabled
(
false
);
...
@@ -683,7 +683,7 @@ void UBDocumentController::deleteSelectedItem()
...
@@ -683,7 +683,7 @@ void UBDocumentController::deleteSelectedItem()
{
{
UBDocumentProxyTreeItem
*
proxyTi
=
toBeDeleted
.
at
(
i
);
UBDocumentProxyTreeItem
*
proxyTi
=
toBeDeleted
.
at
(
i
);
UBApplication
::
showMessage
(
QString
(
"Deleting %1"
).
arg
(
proxyTi
->
proxy
()
->
metaData
(
UBSettings
::
documentName
).
toString
()));
showMessage
(
QString
(
"Deleting %1"
).
arg
(
proxyTi
->
proxy
()
->
metaData
(
UBSettings
::
documentName
).
toString
()));
// Move document to trash
// Move document to trash
QString
oldGroupName
=
proxyTi
->
proxy
()
->
metaData
(
UBSettings
::
documentGroupName
).
toString
();
QString
oldGroupName
=
proxyTi
->
proxy
()
->
metaData
(
UBSettings
::
documentGroupName
).
toString
();
proxyTi
->
proxy
()
->
setMetaData
(
UBSettings
::
documentGroupName
,
UBSettings
::
trashedDocumentGroupNamePrefix
+
oldGroupName
);
proxyTi
->
proxy
()
->
setMetaData
(
UBSettings
::
documentGroupName
,
UBSettings
::
trashedDocumentGroupNamePrefix
+
oldGroupName
);
...
@@ -693,7 +693,7 @@ void UBDocumentController::deleteSelectedItem()
...
@@ -693,7 +693,7 @@ void UBDocumentController::deleteSelectedItem()
mTrashTi
->
addChild
(
proxyTi
);
mTrashTi
->
addChild
(
proxyTi
);
proxyTi
->
setFlags
(
proxyTi
->
flags
()
^
Qt
::
ItemIsEditable
);
proxyTi
->
setFlags
(
proxyTi
->
flags
()
^
Qt
::
ItemIsEditable
);
UBApplication
::
showMessage
(
QString
(
"%1 deleted"
).
arg
(
groupTi
->
groupName
()));
showMessage
(
QString
(
"%1 deleted"
).
arg
(
groupTi
->
groupName
()));
}
}
// dont remove default group
// dont remove default group
...
...
src/document/UBDocumentController.h
View file @
efc8b7ed
...
@@ -71,7 +71,7 @@ class UBDocumentController : public UBDocumentContainer
...
@@ -71,7 +71,7 @@ class UBDocumentController : public UBDocumentContainer
void
selectDocument
(
UBDocumentProxy
*
proxy
,
bool
setAsCurrentDocument
=
true
);
void
selectDocument
(
UBDocumentProxy
*
proxy
,
bool
setAsCurrentDocument
=
true
);
void
show
();
void
show
();
void
hide
();
void
hide
();
void
showMessage
(
const
QString
&
message
,
bool
showSpinningWheel
);
void
showMessage
(
const
QString
&
message
,
bool
showSpinningWheel
=
false
);
void
hideMessage
();
void
hideMessage
();
void
toggleDocumentToolsPalette
();
void
toggleDocumentToolsPalette
();
void
cut
();
void
cut
();
...
...
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