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
09f1c235
Commit
09f1c235
authored
Apr 27, 2012
by
Ivan Ilin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disabling grouping items
parent
b5cfcfd9
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
11 deletions
+12
-11
UBBoardController.cpp
src/board/UBBoardController.cpp
+1
-1
UBAppleWidget.cpp
src/domain/UBAppleWidget.cpp
+0
-1
UBGraphicsItemDelegate.h
src/domain/UBGraphicsItemDelegate.h
+0
-3
ubgraphicsgroupcontaineritemdelegate.cpp
src/domain/ubgraphicsgroupcontaineritemdelegate.cpp
+8
-2
ubgraphicsgroupcontaineritemdelegate.h
src/domain/ubgraphicsgroupcontaineritemdelegate.h
+2
-3
UBTeacherGuideWidget.cpp
src/gui/UBTeacherGuideWidget.cpp
+1
-1
No files found.
src/board/UBBoardController.cpp
View file @
09f1c235
...
...
@@ -1809,7 +1809,7 @@ UBGraphicsWidgetItem *UBBoardController::addW3cWidget(const QUrl &pUrl, const QP
newUrl
=
QUrl
::
fromLocalFile
(
UBPersistenceManager
::
persistenceManager
()
->
addGraphicsWidgteToDocument
(
mActiveDocument
,
pUrl
.
toLocalFile
(),
uuid
));
w3cWidgetItem
=
mActiveScene
->
addW3CWidget
(
p
Url
,
pos
);
w3cWidgetItem
=
mActiveScene
->
addW3CWidget
(
new
Url
,
pos
);
if
(
w3cWidgetItem
)
{
w3cWidgetItem
->
setUuid
(
uuid
);
...
...
src/domain/UBAppleWidget.cpp
View file @
09f1c235
...
...
@@ -64,7 +64,6 @@ UBAppleWidget::UBAppleWidget(const QUrl& pWidgetUrl, QWidget *parent)
mNominalSize
=
defaultPixmap
.
size
();
}
UBAppleWidget
::~
UBAppleWidget
()
{
// NOOP
...
...
src/domain/UBGraphicsItemDelegate.h
View file @
09f1c235
...
...
@@ -184,15 +184,12 @@ class UBGraphicsItemDelegate : public QObject
QList
<
DelegateButton
*>
mButtons
;
protected
slots
:
virtual
void
gotoContentSource
(
bool
checked
);
private
:
void
updateFrame
();
void
updateButtons
(
bool
showUpdated
=
false
);
QPointF
mOffset
;
QTransform
mPreviousTransform
;
QPointF
mPreviousPosition
;
...
...
src/domain/ubgraphicsgroupcontaineritemdelegate.cpp
View file @
09f1c235
...
...
@@ -49,10 +49,16 @@ void UBGraphicsGroupContainerItemDelegate::buildButtons()
mButtons
<<
mDestroyGroupButton
;
connect
(
mDestroyGroupButton
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
destroyGroup
()));
connect
(
mDestroyGroupButton
,
SIGNAL
(
clicked
()),
(
UBGraphicsGroupContainerItemDelegate
*
)
this
,
SLOT
(
destroyGroup
()));
}
void
UBGraphicsGroupContainerItemDelegate
::
destroyGroup
()
{
castUBGraphicsScene
()
->
destroyItemGroup
(
delegated
());
qDebug
()
<<
"got an event"
;
foreach
(
QGraphicsItem
*
item
,
delegated
()
->
childItems
())
{
delegated
()
->
removeFromGroup
(
item
);
item
->
setFlag
(
QGraphicsItem
::
ItemIsSelectable
,
true
);
}
remove
(
true
);
}
src/domain/ubgraphicsgroupcontaineritemdelegate.h
View file @
09f1c235
...
...
@@ -7,9 +7,10 @@ class UBGraphicsGroupContainerItem;
class
UBGraphicsGroupContainerItemDelegate
:
public
UBGraphicsItemDelegate
{
Q_OBJECT
public
:
UBGraphicsGroupContainerItemDelegate
(
QGraphicsItem
*
pDelegated
,
QObject
*
parent
=
0
);
UBGraphicsGroupContainerItem
*
delegated
();
protected
:
...
...
@@ -17,8 +18,6 @@ protected:
virtual
void
buildButtons
();
private
slots
:
void
destroyGroup
();
...
...
src/gui/UBTeacherGuideWidget.cpp
View file @
09f1c235
...
...
@@ -768,7 +768,7 @@ void UBTeacherGuidePageZeroEditionWidget::switchToMode(tUBTGZeroPageMode mode)
QStringList
licenceIconList
;
licenceIconList
<<
":images/licenses/ccby.png"
<<
":images/licenses/ccbynd.png"
<<
":images/licenses/ccbysa.png"
<<
":images/licenses/ccbync.png"
<<
":images/licenses/ccbyncnd.png"
<<
":images/licenses/ccbyncsa.png"
;
if
(
mpLicenceBox
->
currentIndex
()
<
6
){
mpLicenceIcon
->
setPixmap
(
licenceIconList
.
at
(
mpLicenceBox
->
currentIndex
()));
//
mpLicenceIcon->setPixmap(licenceIconList.at(mpLicenceBox->currentIndex()));
mpLicenceIcon
->
show
();
}
mpLicenceValueLabel
->
show
();
...
...
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