commit
96d942c8cc
Binary file not shown.
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 6.7 KiB |
@ -1,99 +1,113 @@ |
|||||||
|
|
||||||
function createWord( word ) |
function createWord( word ) |
||||||
{ |
{ |
||||||
var s = ''; |
var s = ''; |
||||||
for( var i = 0; i < word.length; i++ ) |
for( var i = 0; i < word.length; i++ ) |
||||||
{ |
{ |
||||||
ch = word.charAt( i ); |
ch = word.charAt( i ); |
||||||
s +=
|
s +=
|
||||||
'<span class="upper">' + |
'<span class="upper">' + |
||||||
'<span>' + ch + '</span>' + |
'<span>' + ch + '</span>' + |
||||||
(( i < word.length - 1 ) ? |
(( i < word.length - 1 ) ? |
||||||
'<span class="dash">–</span>' : '' ) + |
'<span class="dash">–</span>' : '' ) + |
||||||
'</span>'; |
'</span>'; |
||||||
} |
} |
||||||
return s; |
return s; |
||||||
} |
} |
||||||
|
|
||||||
$(document).ready(function() |
$(document).ready(function() |
||||||
{ |
{ |
||||||
var w = new wcontainer( "#ub-widget" ); |
var w = new wcontainer( "#ub-widget" ); |
||||||
|
var words = ""; |
||||||
w.setEditContent( '<div class="inputwrap"><input class="percent" value="so*phis*ti*ca*ted"></div>' ); |
|
||||||
w.setViewContent( '<span class="upper"><span class="dash fixed">—</span></span>' ); |
if(window.sankore) |
||||||
w.setData( "dashWidth", w.elements.container.find( "span.dash" ).outerWidth() ); |
words = (sankore.preference("ordSplWords", ""))?sankore.preference("ordSplWords", ""):"so*phis*ti*ca*ted"; |
||||||
w.setViewContent( "" ); |
else |
||||||
|
words = "so*phis*ti*ca*ted"; |
||||||
// onViewMode
|
w.setEditContent( '<div class="inputwrap"><input class="percent" value="' + words + '"></div>' ); |
||||||
w.onViewMode = function() |
w.setViewContent( '<span class="upper"><span class="dash fixed">—</span></span>' ); |
||||||
{ |
w.setData( "dashWidth", w.elements.container.find( "span.dash" ).outerWidth() ); |
||||||
var word = w.elements.container.find( "input" ).val().trim( ['*'] ); |
w.setViewContent( "" ); |
||||||
|
|
||||||
w.setData( "word", word ); |
// onViewMode
|
||||||
word = word.replace( /\*/g, '' ); |
w.onViewMode = function() |
||||||
w.setViewContent( createWord( word ) ); |
{ |
||||||
w.elements.container.find( "span.upper" ).click( function(){ |
var word = w.elements.container.find( "input" ).val().trim( ['*'] ); |
||||||
$( this ).find( "span.dash" ).toggleClass( "fixed" ); |
|
||||||
w.adjustSize(); |
w.setData( "word", word ); |
||||||
w.checkAnswer(); |
word = word.replace( /\*/g, '' ); |
||||||
}); |
w.setViewContent( createWord( word ) ); |
||||||
w.checkAnswer(); |
w.elements.container.find( "span.upper" ).click( function(){ |
||||||
}; |
$( this ).find( "span.dash" ).toggleClass( "fixed" ); |
||||||
|
w.adjustSize(); |
||||||
// viewSize
|
w.checkAnswer(); |
||||||
w.viewSize = function() |
}); |
||||||
{ |
w.checkAnswer(); |
||||||
var w = 0; |
}; |
||||||
var h = 0; |
|
||||||
|
// viewSize
|
||||||
winstance.elements.containerView.find( "span.upper span:visible" ).each( function() |
w.viewSize = function() |
||||||
{ |
{ |
||||||
w += $( this ).outerWidth(); |
var w = 0; |
||||||
h = Math.max( h, $( this ).outerHeight() ); |
var h = 0; |
||||||
}); |
|
||||||
var dw = winstance.getData( "dashWidth" ); |
winstance.elements.containerView.find( "span.upper span:visible" ).each( function() |
||||||
|
{ |
||||||
return { w: w+dw, h: h }; |
w += $( this ).outerWidth(); |
||||||
}; |
h = Math.max( h, $( this ).outerHeight() ); |
||||||
|
}); |
||||||
// editSize
|
var dw = winstance.getData( "dashWidth" ); |
||||||
w.editSize = function() |
|
||||||
{ |
return { |
||||||
return { |
w: w+dw,
|
||||||
w: winstance.elements.containerEdit.find( "input" ).outerWidth( true ), |
h: h |
||||||
h: winstance.elements.containerEdit.find( "input" ).outerHeight( true ), |
}; |
||||||
}; |
}; |
||||||
}; |
|
||||||
|
// editSize
|
||||||
|
w.editSize = function() |
||||||
w.checkAnswer = function() |
{ |
||||||
{ |
return { |
||||||
var word = ""; |
w: winstance.elements.containerEdit.find( "input" ).outerWidth( true ), |
||||||
this.elements.container.find( "span.upper span:visible" ).each( function() |
h: winstance.elements.containerEdit.find( "input" ).outerHeight( true ), |
||||||
{ |
}; |
||||||
if( this.className.indexOf( "fixed" ) != -1 ){ |
}; |
||||||
word += '*'; |
|
||||||
} |
|
||||||
else if( this.className.indexOf( "dash" ) != -1 ){ |
w.checkAnswer = function() |
||||||
return; |
{ |
||||||
} |
var word = ""; |
||||||
else{ |
this.elements.container.find( "span.upper span:visible" ).each( function() |
||||||
word += $( this ).text(); |
{ |
||||||
} |
if( this.className.indexOf( "fixed" ) != -1 ){ |
||||||
}); |
word += '*'; |
||||||
|
} |
||||||
if( word == this.getData( "word" ) ){ |
else if( this.className.indexOf( "dash" ) != -1 ){ |
||||||
this.elements.container.addClass( "answerRight" ); |
return; |
||||||
} |
} |
||||||
else{ |
else{ |
||||||
this.elements.container.removeClass( "answerRight" ); |
word += $( this ).text(); |
||||||
} |
} |
||||||
}; |
}); |
||||||
|
|
||||||
|
if( word == this.getData( "word" ) ){ |
||||||
window.w = w; |
this.elements.container.addClass( "answerRight" ); |
||||||
window.winstance = w; |
} |
||||||
|
else{ |
||||||
w.modeView(); |
this.elements.container.removeClass( "answerRight" ); |
||||||
|
} |
||||||
|
}; |
||||||
|
|
||||||
|
|
||||||
|
window.w = w; |
||||||
|
window.winstance = w; |
||||||
|
|
||||||
|
w.modeView(); |
||||||
|
|
||||||
|
$(window).mouseout(function(){ |
||||||
|
if(window.sankore){ |
||||||
|
sankore.setPreference("ordSplWords", w.getData("word")); |
||||||
|
} |
||||||
|
}); |
||||||
|
|
||||||
}); |
}); |
@ -0,0 +1,86 @@ |
|||||||
|
#include <QDomDocument> |
||||||
|
|
||||||
|
#include "core/UBApplication.h" |
||||||
|
|
||||||
|
#include "UBLibWebView.h" |
||||||
|
|
||||||
|
UBLibWebView::UBLibWebView(QWidget* parent, const char* name):QWidget(parent) |
||||||
|
, mpView(NULL) |
||||||
|
, mpWebSettings(NULL) |
||||||
|
, mpLayout(NULL) |
||||||
|
{ |
||||||
|
setObjectName(name); |
||||||
|
|
||||||
|
setAttribute(Qt::WA_StyledBackground, true); |
||||||
|
setStyleSheet(UBApplication::globalStyleSheet()); |
||||||
|
|
||||||
|
mpLayout = new QVBoxLayout(); |
||||||
|
setLayout(mpLayout); |
||||||
|
|
||||||
|
mpView = new QWebView(this); |
||||||
|
mpView->setObjectName("SearchEngineView"); |
||||||
|
//mpView->setStyleSheet(QString("background-color:white;"));
|
||||||
|
|
||||||
|
mpWebSettings = QWebSettings::globalSettings(); |
||||||
|
mpWebSettings->setAttribute(QWebSettings::JavaEnabled, true); |
||||||
|
mpWebSettings->setAttribute(QWebSettings::PluginsEnabled, true); |
||||||
|
mpWebSettings->setAttribute(QWebSettings::JavaEnabled, true); |
||||||
|
mpWebSettings->setAttribute(QWebSettings::LocalStorageDatabaseEnabled, true); |
||||||
|
mpWebSettings->setAttribute(QWebSettings::OfflineWebApplicationCacheEnabled, true); |
||||||
|
mpWebSettings->setAttribute(QWebSettings::OfflineStorageDatabaseEnabled, true); |
||||||
|
mpWebSettings->setAttribute(QWebSettings::JavascriptCanAccessClipboard, true); |
||||||
|
mpWebSettings->setAttribute(QWebSettings::DnsPrefetchEnabled, true); |
||||||
|
|
||||||
|
mpLayout->addWidget(mpView); |
||||||
|
} |
||||||
|
|
||||||
|
UBLibWebView::~UBLibWebView() |
||||||
|
{ |
||||||
|
if(NULL != mpView) |
||||||
|
{ |
||||||
|
delete mpView; |
||||||
|
mpView = NULL; |
||||||
|
} |
||||||
|
if(NULL != mpLayout) |
||||||
|
{ |
||||||
|
delete mpLayout; |
||||||
|
mpLayout = NULL; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
void UBLibWebView::setElement(UBLibElement *elem) |
||||||
|
{ |
||||||
|
if(NULL != elem) |
||||||
|
{ |
||||||
|
QString qsWidgetName; |
||||||
|
QString path = elem->path().toLocalFile(); |
||||||
|
|
||||||
|
QString qsConfigPath = QString("%0/config.xml").arg(path); |
||||||
|
|
||||||
|
if(QFile::exists(qsConfigPath)) |
||||||
|
{ |
||||||
|
QFile f(qsConfigPath); |
||||||
|
if(f.open(QIODevice::ReadOnly)) |
||||||
|
{ |
||||||
|
QDomDocument domDoc; |
||||||
|
domDoc.setContent(QString(f.readAll())); |
||||||
|
QDomElement root = domDoc.documentElement(); |
||||||
|
|
||||||
|
QDomNode node = root.firstChild(); |
||||||
|
while(!node.isNull()) |
||||||
|
{ |
||||||
|
if(node.toElement().tagName() == "content") |
||||||
|
{ |
||||||
|
QDomAttr srcAttr = node.toElement().attributeNode("src"); |
||||||
|
qsWidgetName = srcAttr.value(); |
||||||
|
break; |
||||||
|
} |
||||||
|
node = node.nextSibling(); |
||||||
|
} |
||||||
|
f.close(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
mpView->load(QUrl::fromLocalFile(QString("%0/%1").arg(path).arg(qsWidgetName))); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,27 @@ |
|||||||
|
#ifndef UBLIBWEBVIEW_H |
||||||
|
#define UBLIBWEBVIEW_H |
||||||
|
|
||||||
|
#include <QWidget> |
||||||
|
#include <QWebView> |
||||||
|
#include <QWebSettings> |
||||||
|
#include <QVBoxLayout> |
||||||
|
|
||||||
|
#include "board/UBLibraryController.h" |
||||||
|
|
||||||
|
class UBLibWebView : public QWidget |
||||||
|
{ |
||||||
|
Q_OBJECT |
||||||
|
|
||||||
|
public: |
||||||
|
UBLibWebView(QWidget* parent = 0, const char* name = "UBLibWebView"); |
||||||
|
~UBLibWebView(); |
||||||
|
|
||||||
|
void setElement(UBLibElement* elem); |
||||||
|
|
||||||
|
private: |
||||||
|
QWebView* mpView; |
||||||
|
QWebSettings* mpWebSettings; |
||||||
|
QVBoxLayout* mpLayout; |
||||||
|
}; |
||||||
|
|
||||||
|
#endif // UBLIBWEBVIEW_H
|
Loading…
Reference in new issue