Commit eaf2558d authored by ivan.ilyin's avatar ivan.ilyin

Merge branch 'master' of github.com:Sankore/Sankore-3.1

parents 2f0eaca0 d2583e0a
...@@ -185,6 +185,12 @@ macx { ...@@ -185,6 +185,12 @@ macx {
TRANSLATION_fr.path = "$$RESOURCES_DIR/fr.lproj" TRANSLATION_fr.path = "$$RESOURCES_DIR/fr.lproj"
QMAKE_BUNDLE_DATA += TRANSLATION_fr QMAKE_BUNDLE_DATA += TRANSLATION_fr
} }
exists(resources/i18n/sankore_fr_CH.qm) {
TRANSLATION_fr.files = resources/i18n/sankore_fr_CH.qm \
resources/i18n/Localizable.strings
TRANSLATION_fr.path = "$$RESOURCES_DIR/fr.lproj"
QMAKE_BUNDLE_DATA += TRANSLATION_fr_CH
}
exists(resources/i18n/sankore_de.qm) { exists(resources/i18n/sankore_de.qm) {
TRANSLATION_de.files = resources/i18n/sankore_de.qm \ TRANSLATION_de.files = resources/i18n/sankore_de.qm \
resources/i18n/Localizable.strings resources/i18n/Localizable.strings
...@@ -331,6 +337,7 @@ RESOURCES += resources/sankore.qrc ...@@ -331,6 +337,7 @@ RESOURCES += resources/sankore.qrc
TRANSLATIONS = resources/i18n/sankore_en.ts \ TRANSLATIONS = resources/i18n/sankore_en.ts \
resources/i18n/sankore_en_UK.ts \ resources/i18n/sankore_en_UK.ts \
resources/i18n/sankore_fr.ts \ resources/i18n/sankore_fr.ts \
resources/i18n/sankore_fr_CH.ts \
resources/i18n/sankore_de.ts \ resources/i18n/sankore_de.ts \
resources/i18n/sankore_nl.ts \ resources/i18n/sankore_nl.ts \
resources/i18n/sankore_es.ts \ resources/i18n/sankore_es.ts \
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
# --------------------------------------------------------------------
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# ---------------------------------------------------------------------
#!/bin/sh #!/bin/sh
make clean make clean
......
# --------------------------------------------------------------------
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# ---------------------------------------------------------------------
#!/bin/bash #!/bin/bash
# Executables # Executables
QMAKE="/usr/local/Trolltech/Qt-4.7.3/bin/qmake" QMAKE="/usr/local/Trolltech/Qt-4.7.3/bin/qmake"
MACDEPLOYQT="/usr/bin/macdeployqt" MACDEPLOYQT="`pwd`/../Qt-sankore3.1/bin/macdeployqt"
DMGUTIL="`pwd`/../Sankore-ThirdParty/refnum/dmgutil/dmgutil.pl" DMGUTIL="`pwd`/../Sankore-ThirdParty/refnum/dmgutil/dmgutil.pl"
DSYMUTIL=/usr/bin/dsymutil DSYMUTIL=/usr/bin/dsymutil
STRIP=/usr/bin/strip STRIP=/usr/bin/strip
......
REM --------------------------------------------------------------------
REM This program is free software: you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
REM the Free Software Foundation, either version 3 of the License, or
REM (at your option) any later version.
REM
REM This program is distributed in the hope that it will be useful,
REM but WITHOUT ANY WARRANTY; without even the implied warranty of
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
REM GNU General Public License for more details.
REM
REM You should have received a copy of the GNU General Public License
REM along with this program. If not, see <http://www.gnu.org/licenses/>.
REM ---------------------------------------------------------------------
set QT_DIR=..\Qt-sankore3.1 set QT_DIR=..\Qt-sankore3.1
set QT_BIN=%QT_DIR%\bin set QT_BIN=%QT_DIR%\bin
......
...@@ -38,8 +38,8 @@ function init(){ ...@@ -38,8 +38,8 @@ function init(){
}); });
//FIT WIDGET FRAME ON LAUNCH... //FIT WIDGET FRAME ON LAUNCH...
if(window.uniboard){ if(window.sankore){
window.uniboard.resize($("#ubwidget").width()-15,85); window.sankore.resize($("#ubwidget").width()-15,85);
} }
searchWrap.append(inputBox) searchWrap.append(inputBox)
...@@ -50,21 +50,27 @@ function init(){ ...@@ -50,21 +50,27 @@ function init(){
submit.click(function(){ submit.click(function(){
$("#ubwidget").append(loadWindow) $("#ubwidget").append(loadWindow)
embed = inputBox.val(); embed = inputBox.val();
////////////!!!1/////////
searchWrap.hide(); searchWrap.hide();
loadWindow.append(embed); loadWindow.append(embed);
//alert($("#ubwidget").html());
if(window.uniboard){ $("#ubwidget embed").attr("wmode", "transparent");
window.uniboard.resize($(document).width(),$(document).height()); var ubwidget_html = $("#ubwidget").html();
window.uniboard.setPreference("embed", escape(embed)); alert(ubwidget_html);
} setTimeOut(alert);
$("#ubwidget").empty().html(ubwidget_html);
if(window.sankore){
window.sankore.resize($(document).width(),$(document).height());
window.sankore.setPreference("embed", escape(embed));
}
}); });
if(window.uniboard){ if(window.sankore){
if(window.uniboard.preferenceKeys().length != 0){ if(window.sankore.preferenceKeys().length != 0){
var loadEmbed = unescape(window.uniboard.preference("embed")); var loadEmbed = unescape(window.sankore.preference("embed"));
inputBox.val(loadEmbed); inputBox.val(loadEmbed);
submit.trigger("click"); submit.trigger("click");
} }
......
...@@ -26,8 +26,8 @@ function init(){ ...@@ -26,8 +26,8 @@ function init(){
backgroundImage:"url(images/back.png)", backgroundImage:"url(images/back.png)",
width:328 width:328
}); });
if(window.uniboard){ if(window.sankore){
window.uniboard.setPreference('historyTab', "visible"); window.sankore.setPreference('historyTab', "visible");
}; };
}, },
function(){ function(){
...@@ -37,8 +37,8 @@ function init(){ ...@@ -37,8 +37,8 @@ function init(){
backgroundImage:"url(images/back_small.png)", backgroundImage:"url(images/back_small.png)",
width:160 width:160
}); });
if(window.uniboard){ if(window.sankore){
window.uniboard.setPreference('historyTab', "hidden"); window.sankore.setPreference('historyTab', "hidden");
}; };
} }
) )
...@@ -200,9 +200,9 @@ function init(){ ...@@ -200,9 +200,9 @@ function init(){
.append(historyPanel) .append(historyPanel)
.append(keysPanel); .append(keysPanel);
if(window.uniboard){ if(window.sankore){
historyTxt = window.uniboard.preference('historyTxt', historyTxt); historyTxt = window.sankore.preference('historyTxt', historyTxt);
var ht = window.uniboard.preference('historyTab', "hidden"); var ht = window.sankore.preference('historyTab', "hidden");
$("#historyBox").val(historyTxt); $("#historyBox").val(historyTxt);
if(ht === "visible"){ if(ht === "visible"){
historyTab.trigger("click"); historyTab.trigger("click");
...@@ -210,7 +210,7 @@ function init(){ ...@@ -210,7 +210,7 @@ function init(){
} }
function resizeWidget(w, h){ function resizeWidget(w, h){
window.uniboard.resize(w+2, h+2); window.sankore.resize(w+2, h+2);
$("#indicator").remove(); $("#indicator").remove();
var indicator = $("<div id='indicator'></div>") var indicator = $("<div id='indicator'></div>")
.css({ .css({
...@@ -238,8 +238,8 @@ function compute(){ ...@@ -238,8 +238,8 @@ function compute(){
displayTrunk = ""; displayTrunk = "";
historyTrunk = ""; historyTrunk = "";
if(window.uniboard){ if(window.sankore){
window.uniboard.setPreference('historyTxt', $("#historyBox").val()); window.sankore.setPreference('historyTxt', $("#historyBox").val());
}; };
lastHistory = $("#historyBox").val(); lastHistory = $("#historyBox").val();
......
body {
background-color: white;
}
.styleDiv .styleDiv
{ {
height:250px; height:250px;
......
...@@ -89,9 +89,7 @@ function popupInfo(text) ...@@ -89,9 +89,7 @@ function popupInfo(text)
// met la bonne grandeur à chaque div // met la bonne grandeur à chaque div
for (i = 1; i <= currentInfo; i++) for (i = 1; i <= currentInfo; i++)
{
document.getElementById("info" + i).style.width = (654/currentInfo) + 'px'; document.getElementById("info" + i).style.width = (654/currentInfo) + 'px';
}
} }
// affiche le text de l'erreur en cas de problème // affiche le text de l'erreur en cas de problème
...@@ -224,19 +222,19 @@ function fondu(carte) ...@@ -224,19 +222,19 @@ function fondu(carte)
// permet de faire apparaître les infos du pays dans la petite fenêtre // permet de faire apparaître les infos du pays dans la petite fenêtre
function afficheInfoPays(pays) function afficheInfoPays(pays)
{ {
document.getElementById("infoPays").innerHTML = document.getElementById(pays).innerHTML document.getElementById("infoPays").innerHTML = document.getElementById(pays).innerHTML;
} }
// permet de cacher la petite fenêtre // permet de cacher la petite fenêtre
function cacherInfoPays() function cacherInfoPays()
{ {
document.getElementById("infoPays").style.display = 'none' document.getElementById("infoPays").style.display = 'none';
} }
// permet à la petite fenêtre de suivre la souris // permet à la petite fenêtre de suivre la souris
function deplacerInfo(event) function deplacerInfo(event)
{ {
document.getElementById("infoPays").style.display = 'block' document.getElementById("infoPays").style.display = 'block';
document.getElementById("infoPays").style.top = event.clientY document.getElementById("infoPays").style.top = event.clientY;
document.getElementById ("infoPays").style.left = event.clientX+20 document.getElementById ("infoPays").style.left = event.clientX+20;
} }
...@@ -162,7 +162,7 @@ SOAPClient._sendSoapRequest = function(url, method, parameters, async, callback, ...@@ -162,7 +162,7 @@ SOAPClient._sendSoapRequest = function(url, method, parameters, async, callback,
"<soap:Envelope " + "<soap:Envelope " +
"xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" " + "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" " +
"xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" " + "xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" " +
"xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\" " + "xmlns:ser=\"" + ns + "\">" + "xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\" " + "xmlns:ser=\"" + ns + "\">" +
"<soap:Body>" + "<soap:Body>" +
"<ser:" + method + ">" + "<ser:" + method + ">" +
parameters.toXml() + parameters.toXml() +
......
body { body {
font: 13px "Trebuchet MS", Arial, Verdana; font: 13px "Trebuchet MS", Arial, Verdana;
padding-top:0px; padding-top:0px;
color: gray;
} }
a { a {
text-decoration:none; text-decoration:none;
color:#3C769D; color:#3C769D;
......
...@@ -10,9 +10,8 @@ ...@@ -10,9 +10,8 @@
<script type="text/javascript" src="markitup/jquery.markitup.js"></script> <script type="text/javascript" src="markitup/jquery.markitup.js"></script>
<!-- markItUp! toolbar settings --> <!-- markItUp! toolbar settings -->
<script type="text/javascript" src="markitup/sets/html/set.js"></script> <script type="text/javascript" src="markitup/sets/html/set.js"></script>
<!-- markItUp! skin -->
<link rel="stylesheet" type="text/css" href="markitup/skins/simple/style.css" />
<!-- markItUp! toolbar skin --> <!-- markItUp! toolbar skin -->
<link rel="stylesheet" type="text/css" href="markitup/skins/markitup/style.css" />
<link rel="stylesheet" type="text/css" href="markitup/sets/html/style.css" /> <link rel="stylesheet" type="text/css" href="markitup/sets/html/style.css" />
</head> </head>
......
...@@ -34,6 +34,6 @@ mySettings = { ...@@ -34,6 +34,6 @@ mySettings = {
{name:'Link', key:'L', openWith:'<a target="_blank" href="[![Link:!:http://]!]"(!( title="[![Title]!]")!)>', closeWith:'</a>', placeHolder:'Your text to link...' }, {name:'Link', key:'L', openWith:'<a target="_blank" href="[![Link:!:http://]!]"(!( title="[![Title]!]")!)>', closeWith:'</a>', placeHolder:'Your text to link...' },
{separator:'---------------' }, {separator:'---------------' },
//{name:'Editor', className:'clean', replaceWith:function() { $('textarea').show(); $('iframe').remove();} }, //{name:'Editor', className:'clean', replaceWith:function() { $('textarea').show(); $('iframe').remove();} },
{name:'Preview', className:'preview', call:'preview'} {name:'', className:'preview', call:'preview'}
] ]
} }
\ No newline at end of file
...@@ -3,95 +3,71 @@ ...@@ -3,95 +3,71 @@
// By Jay Salvat - http://markitup.jaysalvat.com/ // By Jay Salvat - http://markitup.jaysalvat.com/
// ------------------------------------------------------------------*/ // ------------------------------------------------------------------*/
.markItUp .markItUpButton1 a { .markItUp .markItUpButton1 a {
position:static;
margin-left:5px;
background-image:url(images/h1.png); background-image:url(images/h1.png);
background-repeat:no-repeat;
} }
.markItUp .markItUpButton2 a { .markItUp .markItUpButton2 a {
position:static;
background-image:url(images/h2.png); background-image:url(images/h2.png);
background-repeat:no-repeat;
} }
.markItUp .markItUpButton3 a { .markItUp .markItUpButton3 a {
position:static;
background-image:url(images/h3.png); background-image:url(images/h3.png);
background-repeat:no-repeat;
} }
.markItUp .markItUpButton4 a { .markItUp .markItUpButton4 a {
position:static;
background-image:url(images/h4.png); background-image:url(images/h4.png);
background-repeat:no-repeat;
} }
.markItUp .markItUpButton5 a { .markItUp .markItUpButton5 a {
position:static; background-repeat:no-repeat;
background-image:url(images/h5.png); background-image:url(images/h5.png);
} }
.markItUp .markItUpButton6 a { .markItUp .markItUpButton6 a {
position:static; background-repeat:no-repeat;
background-image:url(images/h6.png); background-image:url(images/h6.png);
} }
.markItUp .markItUpButton7 a { .markItUp .markItUpButton7 a {
position:static; background-repeat:no-repeat;
background-image:url(images/paragraph.png); background-image:url(images/paragraph.png);
} }
.markItUp .markItUpButton8 a { .markItUp .markItUpButton8 a {
position:static; background-repeat:no-repeat;
background-image:url(images/bold.png); background-image:url(images/bold.png);
} }
.markItUp .markItUpButton9 a { .markItUp .markItUpButton9 a {
position:static; background-repeat:no-repeat;
background-image:url(images/italic.png); background-image:url(images/italic.png);
} }
.markItUp .markItUpButton10 a { .markItUp .markItUpButton10 a {
position:static; background-repeat:no-repeat;
background-image:url(images/stroke.png); background-image:url(images/stroke.png);
} }
.markItUp .markItUpButton11 a { .markItUp .markItUpButton11 a {
position:static; background-repeat:no-repeat;
background-image:url(images/list-bullet.png); background-image:url(images/list-bullet.png);
} }
.markItUp .markItUpButton12 a { .markItUp .markItUpButton12 a {
position:static; background-repeat:no-repeat;
background-image:url(images/list-numeric.png); background-image:url(images/list-numeric.png);
} }
.markItUp .markItUpButton13 a { .markItUp .markItUpButton13 a {
position:static; background-repeat:no-repeat;
background-image:url(images/list-item.png); background-image:url(images/list-item.png);
} }
.markItUp .markItUpButton14 a { .markItUp .markItUpButton14 a {
position:static; background-repeat:no-repeat;
background-image:url(images/picture.png); background-image:url(images/picture.png);
} }
.markItUp .markItUpButton15 a { .markItUp .markItUpButton15 a {
position:static; background-repeat:no-repeat;
background-image:url(images/link.png); background-image:url(images/link.png);
} }
.markItUp .clean a {
position:static;
margin-top:-2px;
width:32px;
height:20px;
background-image:url(images/clean.png);
}
.markItUp .preview a { .markItUp .preview a {
position:static; background-repeat:no-repeat;
margin-top:-2px; margin-top:-2px;
width:46px; width:46px;
height:20px; height:20px;
......
body { body {
font:70% Verdana, Arial, Helvetica, sans-serif; font:70% Verdana, Arial, Helvetica, sans-serif;
color: orange;
} }
\ No newline at end of file
...@@ -41,7 +41,7 @@ body{ ...@@ -41,7 +41,7 @@ body{
.stickytitle{ .stickytitle{
background-color: transparent; background-color: transparent;
min-width: 10px; min-width: 10px;
max-width: 60%; max-width: 70%;
width: 100%; width: 100%;
padding-top: 4px; padding-top: 4px;
height: 20px; height: 20px;
......
function init(){ function init(){
var ubwidget = $("#ubwidget").ubwidget({ var ubwidget = $("#ubwidget").ubwidget({
width:300, width:360,
height:240 height:240
}); });
var checkMinimize = false;
var text = ""; var text = "";
var winwidth; var winwidth;
var minimizedHeight; var minimizedHeight;
...@@ -12,18 +13,18 @@ function init(){ ...@@ -12,18 +13,18 @@ function init(){
var scroll = false; var scroll = false;
var defaultFontSize = 35; var defaultFontSize = 35;
var currentFontSize = defaultFontSize; var currentFontSize = defaultFontSize;
var header = $('<div id="head"><input id="headtitle" class="stickytitle"></input></div>'); var header = $('<div id="head"><input id="headtitle" class="stickytitle" readonly="readonly"/></div>');
var fontUp = $('<img src="images/stick-but-aplus.png">'); var fontUp = $('<img src="images/stick-but-aplus.png"/>');
var fontDown = $('<img src="images/stick-but-aminus.png">'); var fontDown = $('<img src="images/stick-but-aminus.png"/>');
var minimize = $('<img src="images/stick-but-minimize.png">'); var minimize = $('<img src="images/stick-but-minimize.png"/>');
var maximize = $('<img src="images/stick-but-maximize.png">'); var maximize = $('<img src="images/stick-but-maximize.png"/>');
var title = $('<div id="menu"></div>'); var title = $('<div id="menu"></div>');
var textField = $('<div id="txt"></div>'); var textField = $('<div id="txt"></div>');
var shadow = $("<table width='100%' height='18' border='0' cellspacing='0' cellpadding='0'><tr><td id='sl' width='139'></td><td id='sc' style='background-image:url(images/shadowcenter.png)'>&nbsp;</td><td id='sr' width='139'></td></tr></table>") var shadow = $("<table width='100%' height='18' border='0' cellspacing='0' cellpadding='0'><tr><td id='sl' width='139'></td><td id='sc' style='background-image:url(images/shadowcenter.png)'>&nbsp;</td><td id='sr' width='139'></td></tr></table>")
.appendTo("body"); .appendTo("body");
var shadowleft = $("<img src='images/shadowleft.png'>") var shadowleft = $("<img src='images/shadowleft.png'/>")
.appendTo($("#sl")); .appendTo($("#sl"));
var shadowright = $("<img src='images/shadowright.png'>") var shadowright = $("<img src='images/shadowright.png'/>")
.appendTo($("#sr")); .appendTo($("#sr"));
$("#ubwidget") $("#ubwidget")
...@@ -44,7 +45,6 @@ function init(){ ...@@ -44,7 +45,6 @@ function init(){
titletext.click( titletext.click(
function(){ function(){
titletext.focus(); titletext.focus();
}); });
...@@ -60,16 +60,16 @@ function init(){ ...@@ -60,16 +60,16 @@ function init(){
controlTextField(); controlTextField();
if(window.uniboard){ if(window.sankore){
window.uniboard.setPreference("fontSize", newFontSize); window.sankore.setPreference("fontSize", newFontSize);
}; };
textField.focus(); if(!checkMinimize)
textField.focus();
}); });
fontUp.click( fontUp.click(
function(){ function(){
var newFontSize = parseInt(currentFontSize) + 3; var newFontSize = parseInt(currentFontSize) + 3;
textField.css({ textField.css({
...@@ -78,41 +78,40 @@ function init(){ ...@@ -78,41 +78,40 @@ function init(){
controlTextField(); controlTextField();
if(window.uniboard){ if(window.sankore){
window.uniboard.setPreference("fontSize", newFontSize); window.sankore.setPreference("fontSize", newFontSize);
}; };
textField.focus(); if(!checkMinimize)
textField.focus();
}); });
minimize.click( minimize.click(
function(){ function(){
$('.ubw-container').animate({height:"26px"},100); $('.ubw-container').animate({height:"26px"},500);
minimizedHeight = $('.ubw-container').height() ; minimizedHeight = $('.ubw-container').height();
minimize.hide(); minimize.hide();
maximize.show(); maximize.show();
controlTextField();
$('#headtitle').show(); $('#headtitle').show();
window.resizeTo($('.ubw-container').width(),0); $('#headtitle').focus();
//window.resizeTo($('.ubw-container').width(),0);
checkMinimize = true;
if(window.uniboard){
window.uniboard.setPreference("minimized", "true");
};
}); });
maximize.click( maximize.click(
function(){ function(){
var lastHeight = String(minimizedHeight)+'px'; var lastHeight = String(minimizedHeight)+'px';
$('.ubw-container').animate({height: lastHeight},100); $('.ubw-container').animate({height: lastHeight},500);
maximize.hide(); maximize.hide();
minimize.show(); minimize.show();
$('#headtitle').hide(); $('#headtitle').hide();
//textField.focus();
window.resizeTo($('.ubw-container').width()+15,minimizedHeight+20); //window.resizeTo($('.ubw-container').width()+15,minimizedHeight+20);
checkMinimize = false;
if(window.uniboard){
window.uniboard.setPreference("minimized", "false");
};
}); });
header header
...@@ -126,11 +125,11 @@ function init(){ ...@@ -126,11 +125,11 @@ function init(){
.css("fontSize",currentFontSize) .css("fontSize",currentFontSize)
.attr('contentEditable','true') .attr('contentEditable','true')
.keyup(function(){ .keyup(function(){
if(window.uniboard){ if(window.sankore){
window.uniboard.setPreference("text", textField.html()); window.sankore.setPreference("text", textField.html());
} }
controlTextField(); controlTextField();
$('#headtitle').hide(); //$('#headtitle').hide();
}); });
if(textField.html().length === 0){ if(textField.html().length === 0){
textField.focus(); textField.focus();
...@@ -139,10 +138,10 @@ function init(){ ...@@ -139,10 +138,10 @@ function init(){
.attr('rows','1'); .attr('rows','1');
function controlTextField(){ function controlTextField(){
if(textField.text().length < 25){ if(textField.text().length < 25)
var titleStr = textField.text() + '...'; $('#headtitle').val(textField.text());
$('#headtitle').val(titleStr); else
} $('#headtitle').val(textField.text().substr(0,25) + "...");
textField.css({ textField.css({
height : $('.ubw-container').height()-28, height : $('.ubw-container').height()-28,
...@@ -160,18 +159,19 @@ function init(){ ...@@ -160,18 +159,19 @@ function init(){
textField.bind('paste', function(e) { textField.bind('paste', function(e) {
controlTextField(); controlTextField();
}); });
$('#headtitle').hide(); $('#headtitle').hide();
if(window.uniboard){
text = window.uniboard.preference('text', text); if(window.sankore){
currentFontSize = window.uniboard.preference('fontSize', defaultFontSize); text = window.sankore.preference('text', text);
currentFontSize = window.sankore.preference('fontSize', defaultFontSize);
$('.ubw-container').css({ $('.ubw-container').css({
width:parseInt(window.uniboard.preference('width', "300")), width:window.innerWidth - 2,
height:parseInt(window.uniboard.preference('height', "240")) height:window.innerHeight - 20
}); });
if(window.uniboard.preference('minimized', "false") == "true"){ if(checkMinimize){
minimize.trigger("click"); minimize.trigger("click");
}; };
...@@ -196,15 +196,14 @@ function init(){ ...@@ -196,15 +196,14 @@ function init(){
if(winheight > 600) if(winheight > 600)
{ {
window.resizeTo(winwidth,600); window.resizeTo(winwidth,600);
} }
$('.ubw-container').width(winwidth-2) ;
$('.ubw-container').height(winheight-20) ;
if(window.uniboard){ $('.ubw-container').width(winwidth-2);
window.uniboard.setPreference("width", winwidth-2);
window.uniboard.setPreference("height", winheight-20); if(checkMinimize)
} minimizedHeight = winheight-40;
else
$('.ubw-container').height(winheight-40);
controlTextField(); controlTextField();
} }
......
<!--
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd"> "http://www.w3.org/TR/html4/loose.dtd">
...@@ -18,13 +32,13 @@ ...@@ -18,13 +32,13 @@
var oembedUrl = ""; var oembedUrl = "";
var language = "en"; var language = "en";
function initialize() { function initialize() {
if(window.uniboard){ if(window.sankore){
oembedUrl = window.uniboard.preference("oembedUrl", ""); oembedUrl = window.sankore.preference("oembedUrl", "");
}else{ }
oembedUrl = "";
}; window.resizeTo(426, 630);
if(oembedUrl.length > 0){ if(oembedUrl.length > 0){
$("#textbox").val(oembedUrl); $("#textbox").val(oembedUrl);
$("#search-button").trigger("click"); $("#search-button").trigger("click");
...@@ -41,28 +55,16 @@ ...@@ -41,28 +55,16 @@
resizerIndex = 0; resizerIndex = 0;
//language = navigator.userAgent.split(";");
//language = language[3].replace(/\s/g, "").substr(0, 2);
$("#search-button") $("#search-button")
.click(function(){ .click(function(){
window.resizeTo(385, 80); window.resizeTo(385, 80);
$("#container") $("#container").removeClass("welcome").removeClass("change").removeClass("error").addClass("load");
.removeClass("welcome") $("#container-shadow").hide();
.removeClass("change") $("#arrow").hide();
.removeClass("error") $("#embeded-content").css({
.addClass("load");
$("#container-shadow")
.hide();
$("#arrow")
.hide();
$("#embeded-content")
.css({
marginLeft:-9000, marginLeft:-9000,
marginTop:-9000 marginTop:-9000
}) }).empty().oembed($("#textbox").val());
.empty()
.oembed($("#textbox").val());
checkcontent(); checkcontent();
}) })
.mouseenter(function(){ .mouseenter(function(){
...@@ -74,14 +76,6 @@ ...@@ -74,14 +76,6 @@
.removeClass("over"); .removeClass("over");
}); });
/*$("#ubwidget").mouseenter(function(){
$("#show-area").fadeIn(1000);
});
$("#ubwidget").mouseout(function(){
$("#show-area").fadeOut(600);
});*/
$('#textbox').keypress(function(e){ $('#textbox').keypress(function(e){
if (e.which == 13){ if (e.which == 13){
$('#search-button').click(); $('#search-button').click();
...@@ -94,72 +88,62 @@ ...@@ -94,72 +88,62 @@
$("#show-area").fadeOut(0); $("#show-area").fadeOut(0);
$("#inputfield").show(); $("#inputfield").show();
$("#shadow").show(); $("#shadow").show();
$("#container") $("#container").removeClass("show").addClass("change");
.removeClass("show").addClass("change");
adaptWidgetSize(18, 88); adaptWidgetSize(18, 88);
}) })
.mouseenter(function(){ .mouseenter(function(){
$(this) $(this).addClass("over");
.addClass("over");
}) })
.mouseleave(function(){ .mouseleave(function(){
$(this) $(this).removeClass("over");
.removeClass("over");
}); });
function checkcontent(){ function checkcontent(){
if($("#embeded-content").html().length != 0 && $("#embeded-content").children(":first").width() > 0){ if($("#embeded-content").html().length != 0 && $("#embeded-content").children(":first").width() > 0){
$("#embeded-content embed").attr("wmode", "transparent");
var embeded_content_html = $("#embeded-content").html();
$("#embeded-content").empty().html(embeded_content_html);
clearTimeout(resizer); clearTimeout(resizer);
resizerIndex = 0; resizerIndex = 0;
if(window.uniboard){ if(window.sankore){
window.uniboard.setPreference("oembedUrl", $("#textbox").val()); window.sankore.setPreference("oembedUrl", $("#textbox").val());
}; };
$("#inputfield") $("#inputfield").hide();
.hide(); $("#shadow").hide();
$("#shadow") $("#embeded-content").css({
.hide();
$("#embeded-content")
.css({
marginLeft:0, marginLeft:0,
marginTop:0 marginTop:0
}) })
.width($("#embeded-content").children(":first").width()) .width($("#embeded-content").children(":first").width())
.height($("#embeded-content").children(":first").height()); .height($("#embeded-content").children(":first").height());
//alert(html);
$("#container") //alert($("#embeded-content").children(":first").width() + " | " + $("#embeded-content").children(":first").height());
.removeClass("load").addClass("show"); $("#container").removeClass("load").addClass("show");
$("#show-area") $("#show-area").fadeIn(2000).css({
.fadeIn(2000)
.css({
left:$("#embeded-content").children(":first").width()-25, left:$("#embeded-content").children(":first").width()-25,
top:($("#embeded-content").children(":first").height()-35)/2 top:($("#embeded-content").children(":first").height()-35)/2
}); });
adaptWidgetSize(5, 13); adaptWidgetSize(5, 13);
return false; return false;
}; };
if(resizerIndex > 30){ if(resizerIndex > 50){
resizerIndex = 0; resizerIndex = 0;
$("#container") $("#container").removeClass("show").addClass("error");
.removeClass("show").addClass("error"); $("#arrow").show();
$("#arrow") $("#embeded-content").css({
.show();
$("#embeded-content")
.css({
marginTop:0, marginTop:0,
marginLeft:0 marginLeft:0
}) }).width(395)
.width(395)
.load("locales/" + language + "/error.html", .load("locales/" + language + "/error.html",
function(){ function(){
adaptWidgetSize(20, 125); adaptWidgetSize(20, 125);
}); });
$("#container-shadow") $("#container-shadow").show();
.show();
}else{ }else{
resizer = setTimeout(function(){checkcontent()}, 100); resizer = setTimeout(function(){checkcontent()}, 100);
resizerIndex++; resizerIndex++;
...@@ -176,25 +160,27 @@ ...@@ -176,25 +160,27 @@
var widgetWidth = $("#embeded-content").width() + margins.right + margins.left + adjustmentX; var widgetWidth = $("#embeded-content").width() + margins.right + margins.left + adjustmentX;
var widgetHeight = $("#embeded-content").position().top + $("#embeded-content").height() + margins.bottom + adjustmentY; var widgetHeight = $("#embeded-content").position().top + $("#embeded-content").height() + margins.bottom + adjustmentY;
window.resizeTo(widgetWidth, $(window).height()); //alert(widgetWidth + " | " + widgetHeight);
window.resizeTo($(window).width(), widgetHeight);
window.uniboard.resize(widgetWidth, widgetHeight); //window.resizeTo(widgetWidth, $(window).height());
window.resizeTo(widgetWidth, widgetHeight);
window.sankore.resize(widgetWidth, widgetHeight);
}; };
function cssToInt(cssvalue){ function cssToInt(cssvalue){
return(parseInt(cssvalue.replace("px", ""))); return(parseInt(cssvalue.replace("px", "")));
}; };
if (window.widget) { /*if (window.widget) {
window.widget.onremove = function(){ window.widget.onremove = function(){
//$("#show-inputfield-button").trigger("click"); //$("#show-inputfield-button").trigger("click");
$("#embeded-content") $("#embeded-content")
.empty() .empty()
.oembed($("#textbox").val()); .oembed($("#textbox").val());
} }
} }*/
window.initialize(); initialize();
}); });
</script> </script>
......
...@@ -4,5 +4,5 @@ ...@@ -4,5 +4,5 @@
<div id="content"> <div id="content">
<h1>This Url cannot be used.</h1> <h1>This Url cannot be used.</h1>
<a href="javascript:$('#container').load('html/howto_' + language + '.html');">Back</a> <a href="javascript:window.location.reload();">Back</a>
</div> </div>
...@@ -16,10 +16,14 @@ ...@@ -16,10 +16,14 @@
<script type="text/javascript"> <script type="text/javascript">
$(document).ready(function(){ $(document).ready(function(){
var resizer; // Timer //var resizer; // Timer
var resizerIndex; //var resizerIndex;
var currentHistory = 0;
var references = new Array();
var globalWidth = 850;
var globalHeight = 700;
var language; var language;
var url; var url = "";
var margins = { var margins = {
top: cssToInt($("body").css("margin-top")), top: cssToInt($("body").css("margin-top")),
right: cssToInt($("body").css("margin-right")), right: cssToInt($("body").css("margin-right")),
...@@ -27,25 +31,31 @@ ...@@ -27,25 +31,31 @@
left: cssToInt($("body").css("margin-left")) left: cssToInt($("body").css("margin-left"))
}; };
resizerIndex = 0; //resizerIndex = 0;
if(window.uniboard){ /*if(window.sankore){
url = window.uniboard.preference("url", ""); url = window.sankore.preference("url", "");
}else{ }else{
url = ""; url = "";
}; }; */
language = navigator.userAgent.split(";"); language = navigator.userAgent.split(";");
language = language[3].replace(/\s/g, "").substr(0, 2); language = language[3].replace(/\s/g, "").substr(0, 2);
$("#back-button") $("#back-button")
.click(function(){ .click(function(){
frames['web-content'].history.go(-1); if((currentHistory - 1) > 0){
$("#textbox").val(references[--currentHistory-1]);
frames['web-content'].location.href = references[currentHistory-1];
}
}); });
$("#forward-button") $("#forward-button")
.click(function(){ .click(function(){
frames['web-content'].history.go(+1); if(currentHistory < references.length) {
$("#textbox").val(references[currentHistory++]);
frames['web-content'].location.href = $("#textbox").val();
}
}); });
$("#textbox").keypress(function(e) { $("#textbox").keypress(function(e) {
...@@ -56,32 +66,48 @@ ...@@ -56,32 +66,48 @@
$("#search-button") $("#search-button")
.click(function(){ .click(function(){
var url = $("#textbox").val(); if($("#textbox").val().length > 0){
var urlStart = url.split("://"); var url = $("#textbox").val();
var urlStart = url.split("://");
if(urlStart[0]!="http"){
url = "http://" + url; if(urlStart[0]!="http"){
}; url = "http://" + url;
};
window.resizeTo(850, 700);
$("#container")
.removeClass("welcome")
.removeClass("change")
.removeClass("error")
.addClass("load");
$("#container-shadow")
.hide();
$("#arrow")
.hide();
$("#embeded-content")
.hide();
$("#web-content")
.show();
frames['web-content'].location.href = url; if(checkURLs(references, url)){
if(currentHistory == references.length)
references[currentHistory++] = url;
else
references = insertInto(references, currentHistory++, url);
}
window.resizeTo(globalWidth, globalHeight);
checkcontent(); $("#container")
.removeClass("welcome")
.removeClass("change")
.removeClass("error")
.addClass("load");
$("#container-shadow").hide();
$("#arrow").hide();
$("#embeded-content").hide();
$("#web-content").show();
frames['web-content'].location.href = url;
checkcontent();
} else {
$("#embeded-content").load("locales/" + "en" + "/howto.html"); // Welcome screen with some explanations
$("#container")
.addClass("welcome")
.addClass("change")
.addClass("error")
.removeClass("load");
$("#container-shadow").show();
$("#arrow").show();
$("#embeded-content").show();
$("#web-content").hide();
window.resizeTo(550, 280);
}
}) })
.mouseenter(function(){ .mouseenter(function(){
$(this) $(this)
...@@ -99,14 +125,15 @@ ...@@ -99,14 +125,15 @@
$("#embeded-content").load("locales/" + "en" + "/howto.html"); // Welcome screen with some explanations $("#embeded-content").load("locales/" + "en" + "/howto.html"); // Welcome screen with some explanations
}; };
$("#show-inputfield-button") /*$("#show-inputfield-button")
.click( .click(
function(){ function(){
$("#show-area").hide(); $("#show-area").hide();
$("#inputfield").show(); $("#inputfield").show();
$("#shadow").show(); $("#shadow").show();
$("#container") $("#container")
.removeClass("show").addClass("change"); .removeClass("show")
.addClass("change");
adaptWidgetSize(18, 82); adaptWidgetSize(18, 82);
}) })
.mouseenter(function(){ .mouseenter(function(){
...@@ -116,39 +143,58 @@ ...@@ -116,39 +143,58 @@
.mouseleave(function(){ .mouseleave(function(){
$(this) $(this)
.removeClass("over"); .removeClass("over");
}); });*/
$(window).resize(function(){ $(window).resize(function(){
globalWidth = $(window).width();
globalHeight = $(window).height();
$("#web-content") $("#web-content")
.attr("width", $(window).width() - 25) .attr("width", globalWidth - 25)
.attr("height", $(window).height() - 90); .attr("height", globalHeight - 90);
}); });
function checkcontent(){ function checkcontent(){
clearTimeout(resizer); //clearTimeout(resizer);
resizerIndex = 0; //resizerIndex = 0;
if(window.uniboard){ /*if(window.sankore){
window.uniboard.setPreference("url", $("#textbox").val()); window.sankore.setPreference("url", $("#textbox").val());
}; };*/
$("#embeded-content") $("#embeded-content").hide();
.hide(); $("#container").removeClass("load").addClass("show");
$("#container")
.removeClass("load").addClass("show");
}; };
function adaptWidgetSize(adjustmentX, adjustmentY){ /*function adaptWidgetSize(adjustmentX, adjustmentY){
var widgetWidth = $("#container").width() + margins.right + margins.left + adjustmentX; var widgetWidth = $("#container").width() + margins.right + margins.left + adjustmentX;
var widgetHeight = $("#container").position().top + $("#container").height() + margins.bottom + adjustmentY; var widgetHeight = $("#container").position().top + $("#container").height() + margins.bottom + adjustmentY;
window.resizeTo(widgetWidth, $(window).height()); window.resizeTo(widgetWidth, $(window).height());
window.resizeTo($(window).width(), widgetHeight); window.resizeTo($(window).width(), widgetHeight);
}; };*/
function cssToInt(cssvalue){ function cssToInt(cssvalue){
return(parseInt(cssvalue.replace("px", ""))); return(parseInt(cssvalue.replace("px", "")));
}; }
function checkURLs(arr, value){
for(var i = 0; i < arr.length; i++)
if(arr[i] == value)
return false;
return true;
}
function insertInto(arr, index, url){
var newArr = new Array();
for(var i = 0, j = 0; i < arr.length; i++, j++)
if(i == index - 1){
newArr[j] = arr[i];
newArr[++j] = url;
} else
newArr[j] = arr[i];
return newArr;
}
}); });
</script> </script>
......
# --------------------------------------------------------------------
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# ---------------------------------------------------------------------
#!/bin/sh #!/bin/sh
env LD_LIBRARY_PATH=$PWD/qtlib:$LD_LIBRARY_PATH ./Sankore\ 3.1 env LD_LIBRARY_PATH=$PWD/qtlib:$LD_LIBRARY_PATH ./Sankore\ 3.1
# --------------------------------------------------------------------
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# ---------------------------------------------------------------------
#!/bin/bash #!/bin/bash
# #
...@@ -16,4 +31,4 @@ cp -R "/Volumes/$DMG_NAME/Uniboard.app" "$TARGET_PATH" ...@@ -16,4 +31,4 @@ cp -R "/Volumes/$DMG_NAME/Uniboard.app" "$TARGET_PATH"
hdiutil detach "/Volumes/$DMG_NAME" hdiutil detach "/Volumes/$DMG_NAME"
open $TARGET_PATH open $TARGET_PATH
\ No newline at end of file
/* /*
* UBExportAdaptor.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Feb 10, 2009 * This program is distributed in the hope that it will be useful,
* Author: julienbachmann * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBExportAdaptor.h" #include "UBExportAdaptor.h"
......
/* /*
* UBExportAdaptor.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Feb 10, 2009 * This program is distributed in the hope that it will be useful,
* Author: julienbachmann * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBEXPORTADAPTOR_H_ #ifndef UBEXPORTADAPTOR_H_
......
/* /*
* UBExportDocument.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Feb 10, 2009 * This program is distributed in the hope that it will be useful,
* Author: julienbachmann * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBExportDocument.h" #include "UBExportDocument.h"
......
/* /*
* UBExportDocument.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Feb 10, 2009 * This program is distributed in the hope that it will be useful,
* Author: julienbachmann * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBEXPORTDOCUMENT_H_ #ifndef UBEXPORTDOCUMENT_H_
......
/* /*
* UBExportFullPDF.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Aug 21, 2009 * This program is distributed in the hope that it will be useful,
* Author: Patrick * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBExportFullPDF.h" #include "UBExportFullPDF.h"
......
/* /*
* UBExportFullPDF.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Aug 21, 2009 * This program is distributed in the hope that it will be useful,
* Author: Patrick * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBExportFullPDF_H_ #ifndef UBExportFullPDF_H_
......
/* /*
* UBExportPDF.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Nov 3, 2008 * This program is distributed in the hope that it will be useful,
* Author: luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBExportPDF.h" #include "UBExportPDF.h"
......
/* /*
* UBExportPDF.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Nov 3, 2008 * This program is distributed in the hope that it will be useful,
* Author: luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBEXPORTPDF_H_ #ifndef UBEXPORTPDF_H_
......
/* /*
* UBExportWeb * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Feb 19, 2009 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBExportWeb.h" #include "UBExportWeb.h"
......
/* /*
* UBExportWeb.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Feb 19, 2010 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBEXPORTWEB_H_ #ifndef UBEXPORTWEB_H_
......
/* /*
* UBImportAdaptor.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Feb 11, 2009 * This program is distributed in the hope that it will be useful,
* Author: julienbachmann * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBImportAdaptor.h" #include "UBImportAdaptor.h"
......
/* /*
* UBImportAdaptor.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Feb 11, 2009 * This program is distributed in the hope that it will be useful,
* Author: julienbachmann * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBIMPORTADAPTOR_H_ #ifndef UBIMPORTADAPTOR_H_
......
/* /*
* UBImportDocument.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Feb 11, 2009 * This program is distributed in the hope that it will be useful,
* Author: julienbachmann * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBImportDocument.h" #include "UBImportDocument.h"
......
/* /*
* UBImportDocument.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Feb 11, 2009 * This program is distributed in the hope that it will be useful,
* Author: julienbachmann * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBIMPORTDOCUMENT_H_ #ifndef UBIMPORTDOCUMENT_H_
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "UBImportImage.h" #include "UBImportImage.h"
#include "UBMetadataDcSubsetAdaptor.h" #include "UBMetadataDcSubsetAdaptor.h"
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef UBIMPORTIMAGE_H_ #ifndef UBIMPORTIMAGE_H_
#define UBIMPORTIMAGE_H_ #define UBIMPORTIMAGE_H_
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "UBImportPDF.h" #include "UBImportPDF.h"
#include "UBMetadataDcSubsetAdaptor.h" #include "UBMetadataDcSubsetAdaptor.h"
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef UBIMPORTPDF_H_ #ifndef UBIMPORTPDF_H_
#define UBIMPORTPDF_H_ #define UBIMPORTPDF_H_
......
/* /*
* UBImportVirtualPrinter.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 18 mars 2009 * This program is distributed in the hope that it will be useful,
* Author: Julien * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBImportVirtualPrinter.h" #include "UBImportVirtualPrinter.h"
......
/* /*
* UBIniFileParser.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 23 mars 2009 * This program is distributed in the hope that it will be useful,
* Author: Julien * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBIniFileParser.h" #include "UBIniFileParser.h"
......
/* /*
* UBIniFileParser.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 23 mars 2009 * This program is distributed in the hope that it will be useful,
* Author: Julien * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBINIFILEPARSER_H_ #ifndef UBINIFILEPARSER_H_
......
/* /*
* UBMetadataDcSubsetAdaptor.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Nov 27, 2008 * This program is distributed in the hope that it will be useful,
* Author: luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBMetadataDcSubsetAdaptor.h" #include "UBMetadataDcSubsetAdaptor.h"
......
/* /*
* UBMetadataDcSubsetAdaptor.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Nov 27, 2008 * This program is distributed in the hope that it will be useful,
* Author: luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBMETADATADCSUBSETADAPTOR_H_ #ifndef UBMETADATADCSUBSETADAPTOR_H_
......
/* /*
* UBSvgSubsetAdaptor.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Nov 4, 2008 * This program is distributed in the hope that it will be useful,
* Author: luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBSvgSubsetAdaptor.h" #include "UBSvgSubsetAdaptor.h"
......
/* /*
* UBSvgSubsetAdaptor.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Nov 4, 2008 * This program is distributed in the hope that it will be useful,
* Author: luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBSVGSUBSETADAPTOR_H_ #ifndef UBSVGSUBSETADAPTOR_H_
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "UBThumbnailAdaptor.h" #include "UBThumbnailAdaptor.h"
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef UBTHUMBNAILADAPTOR_H #ifndef UBTHUMBNAILADAPTOR_H
#define UBTHUMBNAILADAPTOR_H #define UBTHUMBNAILADAPTOR_H
......
/* /*
* UBWebPublisher.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Feb 19, 2009 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBWebPublisher.h" #include "UBWebPublisher.h"
......
/* /*
* UBWebPublisher.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Feb 19, 2010 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBWEBPUBLISHER_H_ #ifndef UBWEBPUBLISHER_H_
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "UBAbstractPublisher.h" #include "UBAbstractPublisher.h"
#include <QtXml> #include <QtXml>
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef UBABSTRACTPUBLISHER_H #ifndef UBABSTRACTPUBLISHER_H
#define UBABSTRACTPUBLISHER_H #define UBABSTRACTPUBLISHER_H
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "UBCapturePublisher.h" #include "UBCapturePublisher.h"
#include "frameworks/UBStringUtils.h" #include "frameworks/UBStringUtils.h"
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef UBCAPTUREPUBLISHER_H #ifndef UBCAPTUREPUBLISHER_H
#define UBCAPTUREPUBLISHER_H #define UBCAPTUREPUBLISHER_H
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QFileInfo> #include <QFileInfo>
#include "UBDocumentPublisher.h" #include "UBDocumentPublisher.h"
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef UBDOCUMENTPUBLISHER_H #ifndef UBDOCUMENTPUBLISHER_H
#define UBDOCUMENTPUBLISHER_H #define UBDOCUMENTPUBLISHER_H
......
/* /*
* UBSvgSubsetRasterizer.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 23 mars 2010 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBSvgSubsetRasterizer.h" #include "UBSvgSubsetRasterizer.h"
......
/* /*
* UBSvgSubsetRasterizer.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 23 mars 2010 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBSVGSUBSETRASTERIZER_H_ #ifndef UBSVGSUBSETRASTERIZER_H_
......
/* /*
* UBAbstractVotingSystem.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 12 feb. 2010 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBAbstractVotingSystem.h" #include "UBAbstractVotingSystem.h"
......
/* /*
* UBAbstractVotingSystem.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 12 feb. 2010 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBABSTRACTVOTINGSYSTEM_H_ #ifndef UBABSTRACTVOTINGSYSTEM_H_
......
/* /*
* UBReply2005VotingSystem.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 12 feb. 2010 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBReply2005VotingSystem.h" #include "UBReply2005VotingSystem.h"
......
/* /*
* UBReply2005VotingSystem.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 12 feb. 2010 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBREPLY2005VOTINGSYSTEM_H_ #ifndef UBREPLY2005VOTINGSYSTEM_H_
......
/* /*
* UBReplyWRS970VotingSystem.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 3 mars 2010 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBReplyWRS970VotingSystem.h" #include "UBReplyWRS970VotingSystem.h"
......
/* /*
* UBReplyWRS970VotingSystem.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 3 mars 2010 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBREPLYWRS970VOTINGSYSTEM_H_ #ifndef UBREPLYWRS970VOTINGSYSTEM_H_
......
/* /*
* UBLibraryAPI.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 9 juil. 2009 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBLibraryAPI.h" #include "UBLibraryAPI.h"
......
/* /*
* UBLibraryAPI.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 9 juil. 2009 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBLIBRARYAPI_H_ #ifndef UBLIBRARYAPI_H_
......
/* /*
* UBW3CWidgetAPI.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 28 august 2009 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBW3CWidgetAPI.h" #include "UBW3CWidgetAPI.h"
......
/* /*
* UBW3CWidgetAPI.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 28 august 2009 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBW3CWIDGETAPI_H_ #ifndef UBW3CWIDGETAPI_H_
......
/* /*
* UBWidgetMessageAPI.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 28 aug 2009 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBWidgetMessageAPI.h" #include "UBWidgetMessageAPI.h"
......
/* /*
* UBWidgetMessageAPI.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 28 aug 2009 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBWIDGETMESSAGEAPI_H_ #ifndef UBWIDGETMESSAGEAPI_H_
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "UBWidgetUniboardAPI.h" #include "UBWidgetUniboardAPI.h"
#include <QWebView> #include <QWebView>
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef UBWIDGETAPI_H #ifndef UBWIDGETAPI_H
#define UBWIDGETAPI_H #define UBWIDGETAPI_H
......
/* /*
* UBWidgetVotingSystemAPI.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 16 feb 2010 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBWidgetVotingSystemAPI.h" #include "UBWidgetVotingSystemAPI.h"
......
/* /*
* UBWidgetVotingSystemAPI.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 16 feb. 2010 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBWIDGETVOTINGSYSTEMAPI_H_ #ifndef UBWIDGETVOTINGSYSTEMAPI_H_
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "UBBoardController.h" #include "UBBoardController.h"
#include <QtGui> #include <QtGui>
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef UBBOARDCONTROLLER_H_ #ifndef UBBOARDCONTROLLER_H_
#define UBBOARDCONTROLLER_H_ #define UBBOARDCONTROLLER_H_
......
/* /*
* UBBoardPaletteManager.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 3 nov. 2009 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBBoardPaletteManager.h" #include "UBBoardPaletteManager.h"
......
/* /*
* UBBoardPaletteManager.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 3 nov. 2009 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBBOARDPALETTEMANAGER_H_ #ifndef UBBOARDPALETTEMANAGER_H_
......
/* /*
* UBBoardView.cpp * This program is free software: you can redistribute it and/or modify
* * it under the terms of the GNU General Public License as published by
* Created on: Sep 1, 2008 * the Free Software Foundation, either version 3 of the License, or
* Author: luc * (at your option) any later version.
*/ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "UBBoardView.h" #include "UBBoardView.h"
......
/* /*
* UBBoardView.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Sep 1, 2008 * This program is distributed in the hope that it will be useful,
* Author: luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBBOARDVIEW_H_ #ifndef UBBOARDVIEW_H_
......
/* /*
* UBDrawingController.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 17 feb. 2010 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBDrawingController.h" #include "UBDrawingController.h"
......
/* /*
* UBDrawingController.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 17 feb. 2010 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBDRAWINGCONTROLLER_H_ #ifndef UBDRAWINGCONTROLLER_H_
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "UBLibraryController.h" #include "UBLibraryController.h"
#include "frameworks/UBFileSystemUtils.h" #include "frameworks/UBFileSystemUtils.h"
...@@ -130,7 +144,7 @@ void UBLibraryController::importImageOnLibrary(QImage& pImage) ...@@ -130,7 +144,7 @@ void UBLibraryController::importImageOnLibrary(QImage& pImage)
{ {
if(!pImage.isNull()){ if(!pImage.isNull()){
QDateTime now = QDateTime::currentDateTime(); QDateTime now = QDateTime::currentDateTime();
QString filePath = mPicturesStandardDirectoryPath.toLocalFile() + "/ImportedImage-" + now.toString("dd-MM-yyyy hh-mm-ss") + ".png"; QString filePath = mPicturesStandardDirectoryPath.toLocalFile() + "/" + tr("ImportedImage") + "-" + now.toString("dd-MM-yyyy hh-mm-ss") + ".png";
filePath = UBFileSystemUtils::normalizeFilePath(filePath); filePath = UBFileSystemUtils::normalizeFilePath(filePath);
pImage.save(filePath); pImage.save(filePath);
UBApplication::showMessage(tr("Added 1 Image to Library")); UBApplication::showMessage(tr("Added 1 Image to Library"));
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef UBLIBRARYCONTROLLER_H_ #ifndef UBLIBRARYCONTROLLER_H_
#define UBLIBRARYCONTROLLER_H_ #define UBLIBRARYCONTROLLER_H_
......
/* /*
* UB.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Sep 16, 2008 * This program is distributed in the hope that it will be useful,
* Author: luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UB_H_ #ifndef UB_H_
......
/* /*
* UBApplication.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Sep 11, 2008 * This program is distributed in the hope that it will be useful,
* Author: luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBApplication.h" #include "UBApplication.h"
......
/* /*
* UBApplication.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Sep 11, 2008 * This program is distributed in the hope that it will be useful,
* Author: luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBAPPLICATION_H_ #ifndef UBAPPLICATION_H_
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "UBApplicationController.h" #include "UBApplicationController.h"
#include "frameworks/UBPlatformUtils.h" #include "frameworks/UBPlatformUtils.h"
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef UBAPPLICATIONCONTROLLER_H_ #ifndef UBAPPLICATIONCONTROLLER_H_
#define UBAPPLICATIONCONTROLLER_H_ #define UBAPPLICATIONCONTROLLER_H_
......
/* /*
* UBDisplayManager.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 12 fÈvr. 2009 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBDisplayManager.h" #include "UBDisplayManager.h"
......
/* /*
* UBApplicationController.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: 12 feb. 2009 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBDISPLAYMANAGER_H_ #ifndef UBDISPLAYMANAGER_H_
......
/* /*
* UBDocumentManager.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Feb 10, 2009 * This program is distributed in the hope that it will be useful,
* Author: julienbachmann * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
......
/* /*
* UBDocumentManager.h * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Feb 10, 2009 * This program is distributed in the hope that it will be useful,
* Author: julienbachmann * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBDOCUMENTMANAGER_H_ #ifndef UBDOCUMENTMANAGER_H_
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "UBIdleTimer.h" #include "UBIdleTimer.h"
......
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef UBIDLETIMER_H_ #ifndef UBIDLETIMER_H_
#define UBIDLETIMER_H_ #define UBIDLETIMER_H_
......
/* /*
* UBMimeData.cpp * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* Created on: Dec 8, 2008 * This program is distributed in the hope that it will be useful,
* Author: Luc * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBMimeData.h" #include "UBMimeData.h"
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment