Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenBoard
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lifo
Nicolas Ollinger
OpenBoard
Commits
d60738b5
Commit
d60738b5
authored
Aug 16, 2011
by
shibakaneki
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:Sankore/Sankore-3.1
parents
e812ebb9
bae96acc
Changes
6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
108 additions
and
101 deletions
+108
-101
mainWindow.ui
resources/forms/mainWindow.ui
+0
-15
Guide_Utilisateur.html
...es/library/interactive/Graphme.wgt/Guide_Utilisateur.html
+28
-28
textes_descriptifs.js
...es/library/interactive/iCell.wgt/js/textes_descriptifs.js
+47
-47
UBBoardPaletteManager.cpp
src/board/UBBoardPaletteManager.cpp
+11
-5
UBDesktopAnnotationController.cpp
src/desktop/UBDesktopAnnotationController.cpp
+11
-3
UBDesktopAnnotationController.h
src/desktop/UBDesktopAnnotationController.h
+11
-3
No files found.
resources/forms/mainWindow.ui
View file @
d60738b5
...
...
@@ -1551,21 +1551,6 @@
<enum>
QAction::TextHeuristicRole
</enum>
</property>
</action>
<action
name=
"actionShareItemOnWeb"
>
<property
name=
"icon"
>
<iconset
resource=
"../sankore.qrc"
>
<normaloff>
:/images/addItemToLibrary.svg
</normaloff>
:/images/addItemToLibrary.svg
</iconset>
</property>
<property
name=
"text"
>
<string>
Share Item on the Web
</string>
</property>
<property
name=
"toolTip"
>
<string>
Share Capture on the Web
</string>
</property>
<property
name=
"visible"
>
<bool>
true
</bool>
</property>
</action>
<action
name=
"actionDesktopTools"
>
<property
name=
"checkable"
>
<bool>
true
</bool>
...
...
resources/library/interactive/Graphme.wgt/Guide_Utilisateur.html
View file @
d60738b5
This diff is collapsed.
Click to expand it.
resources/library/interactive/iCell.wgt/js/textes_descriptifs.js
View file @
d60738b5
This diff is collapsed.
Click to expand it.
src/board/UBBoardPaletteManager.cpp
View file @
d60738b5
/*
* 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
* Author: Luc
* 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 "UBBoardPaletteManager.h"
...
...
@@ -155,7 +163,6 @@ void UBBoardPaletteManager::setupPalettes()
addItemActions
<<
UBApplication
::
mainWindow
->
actionAddItemToCurrentPage
;
addItemActions
<<
UBApplication
::
mainWindow
->
actionAddItemToNewPage
;
addItemActions
<<
UBApplication
::
mainWindow
->
actionAddItemToLibrary
;
addItemActions
<<
UBApplication
::
mainWindow
->
actionShareItemOnWeb
;
mAddItemPalette
=
new
UBActionPalette
(
addItemActions
,
Qt
::
Horizontal
,
0
);
mAddItemPalette
->
setButtonIconSize
(
QSize
(
128
,
128
));
...
...
@@ -309,7 +316,6 @@ void UBBoardPaletteManager::connectPalettes()
connect
(
UBApplication
::
mainWindow
->
actionAddItemToCurrentPage
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
addItemToCurrentPage
()));
connect
(
UBApplication
::
mainWindow
->
actionAddItemToNewPage
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
addItemToNewPage
()));
connect
(
UBApplication
::
mainWindow
->
actionAddItemToLibrary
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
addItemToLibrary
()));
connect
(
UBApplication
::
mainWindow
->
actionShareItemOnWeb
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
shareItemOnWeb
()));
connect
(
UBApplication
::
mainWindow
->
actionEraseItems
,
SIGNAL
(
triggered
()),
mErasePalette
,
SLOT
(
close
()));
connect
(
UBApplication
::
mainWindow
->
actionEraseAnnotations
,
SIGNAL
(
triggered
()),
mErasePalette
,
SLOT
(
close
()));
...
...
src/desktop/UBDesktopAnnotationController.cpp
View file @
d60738b5
/*
* UNWindowController.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: Jan 15, 2009
* Author: julienbachmann
* 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 <QDesktopWidget>
...
...
src/desktop/UBDesktopAnnotationController.h
View file @
d60738b5
/*
* UNWindowController.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: Jan 15, 2009
* Author: julienbachmann
* 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 UBUNINOTESWINDOWCONTROLLER_H_
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment