|
|
@ -70,6 +70,8 @@ UBWebController::UBWebController(UBMainWindow* mainWindow) |
|
|
|
mToolsPalettePositionnedList[i] = false; |
|
|
|
mToolsPalettePositionnedList[i] = false; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
initialiazemOEmbedProviders(); |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -78,6 +80,26 @@ UBWebController::~UBWebController() |
|
|
|
// NOOP
|
|
|
|
// NOOP
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void UBWebController::initialiazemOEmbedProviders() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
mOEmbedProviders << "5min.com"; |
|
|
|
|
|
|
|
mOEmbedProviders << "amazon.com"; |
|
|
|
|
|
|
|
mOEmbedProviders << "flickr"; |
|
|
|
|
|
|
|
mOEmbedProviders << "video.google."; |
|
|
|
|
|
|
|
mOEmbedProviders << "hulu.com"; |
|
|
|
|
|
|
|
mOEmbedProviders << "imdb.com"; |
|
|
|
|
|
|
|
mOEmbedProviders << "metacafe.com"; |
|
|
|
|
|
|
|
mOEmbedProviders << "qik.com"; |
|
|
|
|
|
|
|
mOEmbedProviders << "slideshare"; |
|
|
|
|
|
|
|
mOEmbedProviders << "5min.com"; |
|
|
|
|
|
|
|
mOEmbedProviders << "twitpic.com"; |
|
|
|
|
|
|
|
mOEmbedProviders << "viddler.com"; |
|
|
|
|
|
|
|
mOEmbedProviders << "vimeo.com"; |
|
|
|
|
|
|
|
mOEmbedProviders << "wikipedia.org"; |
|
|
|
|
|
|
|
mOEmbedProviders << "wordpress.com"; |
|
|
|
|
|
|
|
mOEmbedProviders << "youtube.com"; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void UBWebController::webBrowserInstance() |
|
|
|
void UBWebController::webBrowserInstance() |
|
|
|
{ |
|
|
|
{ |
|
|
|
QString webHomePage = UBSettings::settings()->webHomePage->get().toString(); |
|
|
|
QString webHomePage = UBSettings::settings()->webHomePage->get().toString(); |
|
|
@ -211,13 +233,13 @@ void UBWebController::paraschoolWebInstance() |
|
|
|
QString language = "_" + locale.name().left(2); |
|
|
|
QString language = "_" + locale.name().left(2); |
|
|
|
QString editorPath = "/etc/SankoreEditor/editor" + language + "/index.html"; |
|
|
|
QString editorPath = "/etc/SankoreEditor/editor" + language + "/index.html"; |
|
|
|
QString editorHtmlIndexFile; |
|
|
|
QString editorHtmlIndexFile; |
|
|
|
#if defined(Q_WS_MAC) |
|
|
|
#if defined(Q_WS_MAC) |
|
|
|
editorHtmlIndexFile = QApplication::applicationDirPath() + "/../Resources" + editorPath; |
|
|
|
editorHtmlIndexFile = QApplication::applicationDirPath() + "/../Resources" + editorPath; |
|
|
|
#elif defined(Q_WS_WIN) |
|
|
|
#elif defined(Q_WS_WIN) |
|
|
|
editorHtmlIndexFile = QApplication::applicationDirPath() + editorPath; |
|
|
|
editorHtmlIndexFile = QApplication::applicationDirPath() + editorPath; |
|
|
|
#else |
|
|
|
#else |
|
|
|
editorHtmlIndexFile = QApplication::applicationDirPath() + editorPath; |
|
|
|
editorHtmlIndexFile = QApplication::applicationDirPath() + editorPath; |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
QUrl currentUrl = QUrl::fromLocalFile(editorHtmlIndexFile); |
|
|
|
QUrl currentUrl = QUrl::fromLocalFile(editorHtmlIndexFile); |
|
|
|
|
|
|
|
|
|
|
|