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
d79f36eb
Commit
d79f36eb
authored
Nov 15, 2011
by
Ivan Ilin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:Sankore/Sankore-3.1
parents
d387f5d0
76a66d02
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
210 additions
and
157 deletions
+210
-157
UBBoardController.cpp
src/board/UBBoardController.cpp
+17
-2
UBPlatformUtils.h
src/frameworks/UBPlatformUtils.h
+108
-121
UBPlatformUtils_linux.cpp
src/frameworks/UBPlatformUtils_linux.cpp
+9
-0
UBPlatformUtils_mac.mm
src/frameworks/UBPlatformUtils_mac.mm
+16
-0
UBPlatformUtils_win.cpp
src/frameworks/UBPlatformUtils_win.cpp
+8
-1
UBDownloadWidget.cpp
src/gui/UBDownloadWidget.cpp
+0
-5
UBLibraryWidget.cpp
src/gui/UBLibraryWidget.cpp
+51
-28
UBLibraryWidget.h
src/gui/UBLibraryWidget.h
+1
-0
No files found.
src/board/UBBoardController.cpp
View file @
d79f36eb
...
@@ -1846,7 +1846,7 @@ void UBBoardController::processMimeData(const QMimeData* pMimeData, const QPoint
...
@@ -1846,7 +1846,7 @@ void UBBoardController::processMimeData(const QMimeData* pMimeData, const QPoint
QString
qsHtml
=
pMimeData
->
html
();
QString
qsHtml
=
pMimeData
->
html
();
QString
url
=
UBApplication
::
urlFromHtml
(
qsHtml
);
QString
url
=
UBApplication
::
urlFromHtml
(
qsHtml
);
if
(
!
(
""
==
url
)
)
if
(
""
!=
url
)
{
{
downloadURL
(
url
,
pPos
);
downloadURL
(
url
,
pPos
);
return
;
return
;
...
@@ -1883,8 +1883,23 @@ void UBBoardController::processMimeData(const QMimeData* pMimeData, const QPoint
...
@@ -1883,8 +1883,23 @@ void UBBoardController::processMimeData(const QMimeData* pMimeData, const QPoint
if
(
pMimeData
->
hasText
())
if
(
pMimeData
->
hasText
())
{
{
if
(
""
!=
pMimeData
->
text
()){
mActiveScene
->
addText
(
pMimeData
->
text
(),
pPos
);
mActiveScene
->
addText
(
pMimeData
->
text
(),
pPos
);
}
}
else
{
#ifdef Q_WS_MACX
// With Safari, in 95% of the drops, the mime datas are hidden in Apple Web Archive pasteboard type.
// This is due to the way Safari is working so we have to dig into the pasteboard in order to retrieve
// the data.
QString
qsUrl
=
UBPlatformUtils
::
urlFromClipboard
();
if
(
""
!=
qsUrl
){
// We finally got the url of the dropped ressource! Let's import it!
downloadURL
(
qsUrl
,
pPos
);
return
;
}
#endif
}
}
}
}
...
...
src/frameworks/UBPlatformUtils.h
View file @
d79f36eb
...
@@ -98,36 +98,23 @@ class UBPlatformUtils
...
@@ -98,36 +98,23 @@ class UBPlatformUtils
public
:
public
:
static
void
init
();
static
void
init
();
static
void
destroy
();
static
void
destroy
();
static
QString
applicationResourcesDirectory
();
static
QString
applicationResourcesDirectory
();
static
void
hideFile
(
const
QString
&
filePath
);
static
void
hideFile
(
const
QString
&
filePath
);
static
void
setFileType
(
const
QString
&
filePath
,
unsigned
long
fileType
);
static
void
setFileType
(
const
QString
&
filePath
,
unsigned
long
fileType
);
static
void
fadeDisplayOut
();
static
void
fadeDisplayOut
();
static
void
fadeDisplayIn
();
static
void
fadeDisplayIn
();
static
QString
preferredTranslation
();
static
QString
preferredTranslation
();
static
QString
preferredLanguage
();
static
QString
preferredLanguage
();
static
bool
hasVirtualKeyboard
();
static
bool
hasVirtualKeyboard
();
//static void showVirtualKeyboard();
//static void showVirtualKeyboard();
static
void
runInstaller
(
const
QString
&
installerFilePath
);
static
void
runInstaller
(
const
QString
&
installerFilePath
);
static
void
bringPreviousProcessToFront
();
static
void
bringPreviousProcessToFront
();
static
QString
osUserLoginName
();
static
QString
osUserLoginName
();
static
void
setDesktopMode
(
bool
desktop
);
static
void
setDesktopMode
(
bool
desktop
);
static
void
setWindowNonActivableFlag
(
QWidget
*
widget
,
bool
nonAcivable
);
static
void
setWindowNonActivableFlag
(
QWidget
*
widget
,
bool
nonAcivable
);
static
QString
computerName
();
static
QString
computerName
();
static
UBKeyboardLocale
**
getKeyboardLayouts
(
int
&
nCount
);
static
UBKeyboardLocale
**
getKeyboardLayouts
(
int
&
nCount
);
static
QString
urlFromClipboard
();
};
};
...
...
src/frameworks/UBPlatformUtils_linux.cpp
View file @
d79f36eb
...
@@ -331,3 +331,12 @@ void UBPlatformUtils::destroyKeyboardLayouts()
...
@@ -331,3 +331,12 @@ void UBPlatformUtils::destroyKeyboardLayouts()
delete
[]
keyboardLayouts
;
delete
[]
keyboardLayouts
;
keyboardLayouts
=
NULL
;
keyboardLayouts
=
NULL
;
}
}
QString
UBPlatformUtils
::
urlFromClipboard
()
{
QString
qsRet
;
// Not used on Linux
return
qsRet
;
}
src/frameworks/UBPlatformUtils_mac.mm
View file @
d79f36eb
...
@@ -12,6 +12,8 @@
...
@@ -12,6 +12,8 @@
#import <Foundation/NSAutoreleasePool.h>
#import <Foundation/NSAutoreleasePool.h>
#import <Carbon/Carbon.h>
#import <Carbon/Carbon.h>
#import <APELite.h>
#import <APELite.h>
#import <WebKit/WebKit.h>
#import <AppKit/AppKit.h>
NSString* bundleShortVersion(NSBundle *bundle)
NSString* bundleShortVersion(NSBundle *bundle)
...
@@ -537,3 +539,17 @@ void UBPlatformUtils::initializeKeyboardLayouts()
...
@@ -537,3 +539,17 @@ void UBPlatformUtils::initializeKeyboardLayouts()
void UBPlatformUtils::destroyKeyboardLayouts()
void UBPlatformUtils::destroyKeyboardLayouts()
{}
{}
QString UBPlatformUtils::urlFromClipboard()
{
QString qsRet;
NSPasteboard* pPasteboard = [NSPasteboard pasteboardWithName:@"Apple CFPasteboard drag"];
WebArchive* pArchive = [[WebArchive alloc] initWithData:[pPasteboard dataForType:@"com.apple.webarchive"]];
qsRet = [[[[pArchive mainResource] URL] absoluteString] UTF8String];
[pArchive release];
return qsRet;
}
src/frameworks/UBPlatformUtils_win.cpp
View file @
d79f36eb
...
@@ -368,3 +368,10 @@ void UBPlatformUtils::destroyKeyboardLayouts()
...
@@ -368,3 +368,10 @@ void UBPlatformUtils::destroyKeyboardLayouts()
delete
[]
keyboardLayouts
;
delete
[]
keyboardLayouts
;
keyboardLayouts
=
NULL
;
keyboardLayouts
=
NULL
;
}
}
QString
UBPlatformUtils
::
urlFromClipboard
()
{
QString
qsRet
;
// Not implemented yet
return
qsRet
;
}
src/gui/UBDownloadWidget.cpp
View file @
d79f36eb
...
@@ -66,11 +66,6 @@ UBDownloadWidget::UBDownloadWidget(QWidget *parent, const char *name):QWidget(pa
...
@@ -66,11 +66,6 @@ UBDownloadWidget::UBDownloadWidget(QWidget *parent, const char *name):QWidget(pa
*/
*/
UBDownloadWidget
::~
UBDownloadWidget
()
UBDownloadWidget
::~
UBDownloadWidget
()
{
{
if
(
NULL
!=
mpItem
)
{
delete
mpItem
;
mpItem
=
NULL
;
}
if
(
NULL
!=
mpCancelBttn
)
if
(
NULL
!=
mpCancelBttn
)
{
{
delete
mpCancelBttn
;
delete
mpCancelBttn
;
...
...
src/gui/UBLibraryWidget.cpp
View file @
d79f36eb
...
@@ -27,6 +27,7 @@
...
@@ -27,6 +27,7 @@
#include "core/UBDownloadManager.h"
#include "core/UBDownloadManager.h"
#include "frameworks/UBFileSystemUtils.h"
#include "frameworks/UBFileSystemUtils.h"
#include "frameworks/UBPlatformUtils.h"
#include "core/memcheck.h"
#include "core/memcheck.h"
...
@@ -348,18 +349,30 @@ void UBLibraryWidget::dropEvent(QDropEvent *event)
...
@@ -348,18 +349,30 @@ void UBLibraryWidget::dropEvent(QDropEvent *event)
}
}
}
}
}
}
else
else
{
{
bool
bDropAccepted
=
false
;
bool
bDropAccepted
=
false
;
if
(
pMimeData
->
hasImage
())
{
// We must check the URLs first because an image dropped from the web can contains the image datas, as well as the URLs
qDebug
()
<<
"hasImage"
;
// and if we want to display the download widget in order to make the user wait for the end of the download, we need
QImage
image
=
qvariant_cast
<
QImage
>
(
pMimeData
->
imageData
());
// to check the URLs first!
mLibraryController
->
importImageOnLibrary
(
image
);
if
(
pMimeData
->
hasUrls
()){
qDebug
()
<<
"hasUrls"
;
QList
<
QUrl
>
urlList
=
pMimeData
->
urls
();
for
(
int
i
=
0
;
i
<
urlList
.
size
()
&&
i
<
32
;
++
i
){
QString
filePath
;
#ifdef Q_WS_MACX
filePath
=
QUrl
(
urlList
.
at
(
i
)).
toString
();
#else
filePath
=
QUrl
(
urlList
.
at
(
i
).
path
()).
toLocalFile
();
#endif
mLibraryController
->
importItemOnLibrary
(
filePath
);
bDropAccepted
=
true
;
bDropAccepted
=
true
;
}
}
else
if
(
pMimeData
->
hasHtml
())
}
{
// When an HTML is present, it means that we dropped something from the web. Normally, the HTML contains the element
// of the webpage and has a 'src' attribute containing the URL of the web ressource. Here we are looking for this
// 'src' attribute, get its value and download the ressource from this URL.
else
if
(
pMimeData
->
hasHtml
()){
qDebug
()
<<
"hasHtml"
;
qDebug
()
<<
"hasHtml"
;
QString
html
=
pMimeData
->
html
();
QString
html
=
pMimeData
->
html
();
QString
url
=
UBApplication
::
urlFromHtml
(
html
);
QString
url
=
UBApplication
::
urlFromHtml
(
html
);
...
@@ -369,37 +382,47 @@ void UBLibraryWidget::dropEvent(QDropEvent *event)
...
@@ -369,37 +382,47 @@ void UBLibraryWidget::dropEvent(QDropEvent *event)
bDropAccepted
=
true
;
bDropAccepted
=
true
;
}
}
}
}
else
if
(
pMimeData
->
hasText
())
else
if
(
pMimeData
->
hasText
()){
{
// On linux external dragged element are considered as text;
// On linux external dragged element are considered as text;
qDebug
()
<<
"hasText: "
<<
pMimeData
->
text
();
qDebug
()
<<
"hasText: "
<<
pMimeData
->
text
();
QString
filePath
=
QUrl
(
pMimeData
->
text
()).
toLocalFile
();
QString
filePath
=
QUrl
(
pMimeData
->
text
()).
toLocalFile
();
if
(
""
!=
filePath
){
mLibraryController
->
importItemOnLibrary
(
filePath
);
mLibraryController
->
importItemOnLibrary
(
filePath
);
bDropAccepted
=
true
;
bDropAccepted
=
true
;
}
}
else
if
(
pMimeData
->
hasUrls
())
else
{
{
#ifdef Q_WS_MACX
qDebug
()
<<
"hasUrls"
;
// With Safari, in 95% of the drops, the mime datas are hidden in Apple Web Archive pasteboard type.
QList
<
QUrl
>
urlList
=
pMimeData
->
urls
();
// This is due to the way Safari is working so we have to dig into the pasteboard in order to retrieve
for
(
int
i
=
0
;
i
<
urlList
.
size
()
&&
i
<
32
;
++
i
)
// the data.
{
QString
qsUrl
=
UBPlatformUtils
::
urlFromClipboard
();
QString
filePath
=
QUrl
(
urlList
.
at
(
i
).
path
()).
toLocalFile
();
if
(
""
!=
qsUrl
){
mLibraryController
->
importItemOnLibrary
(
filePath
);
// We finally got the url of the dropped ressource! Let's import it!
mLibraryController
->
importItemOnLibrary
(
qsUrl
);
bDropAccepted
=
true
;
bDropAccepted
=
true
;
}
}
#endif
}
}
else
}
{
else
if
(
pMimeData
->
hasImage
()){
qDebug
()
<<
"hasImage"
;
QImage
image
=
qvariant_cast
<
QImage
>
(
pMimeData
->
imageData
());
mLibraryController
->
importImageOnLibrary
(
image
);
bDropAccepted
=
true
;
}
else
{
qWarning
()
<<
"Cannot import data"
;
qWarning
()
<<
"Cannot import data"
;
}
}
if
(
bDropAccepted
)
if
(
bDropAccepted
){
{
onRefreshCurrentFolder
();
onRefreshCurrentFolder
();
#ifdef Q_WS_MACX
event
->
acceptProposedAction
();
#else
event
->
accept
();
event
->
accept
();
#endif
}
}
else
else
{
{
event
->
ignore
();
event
->
ignore
();
}
}
}
}
...
...
src/gui/UBLibraryWidget.h
View file @
d79f36eb
...
@@ -79,6 +79,7 @@ private:
...
@@ -79,6 +79,7 @@ private:
void
refreshView
();
void
refreshView
();
void
generateItems
();
void
generateItems
();
void
appendChainedElement
(
UBChainedLibElement
*
element
,
UBChainedLibElement
*
toElem
);
void
appendChainedElement
(
UBChainedLibElement
*
element
,
UBChainedLibElement
*
toElem
);
UBLibElement
*
elementAt
(
QPoint
p
);
UBLibElement
*
elementAt
(
QPoint
p
);
UBLibElement
*
elementFromFilePath
(
const
QString
&
filePath
);
UBLibElement
*
elementFromFilePath
(
const
QString
&
filePath
);
UBLibraryController
*
mLibraryController
;
UBLibraryController
*
mLibraryController
;
...
...
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