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
076e074e
Commit
076e074e
authored
Jul 20, 2012
by
Anatoly Mihalchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed linux issues
parent
7f82e82b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
11 deletions
+10
-11
UBThumbnailAdaptor.cpp
src/adaptors/UBThumbnailAdaptor.cpp
+2
-3
UBDocumentNavigator.cpp
src/gui/UBDocumentNavigator.cpp
+7
-8
UBDocumentNavigator.h
src/gui/UBDocumentNavigator.h
+1
-0
No files found.
src/adaptors/UBThumbnailAdaptor.cpp
View file @
076e074e
...
@@ -78,18 +78,17 @@ const QPixmap* UBThumbnailAdaptor::get(UBDocumentProxy* proxy, int pageIndex)
...
@@ -78,18 +78,17 @@ const QPixmap* UBThumbnailAdaptor::get(UBDocumentProxy* proxy, int pageIndex)
generateMissingThumbnails
(
proxy
);
generateMissingThumbnails
(
proxy
);
}
}
QPixmap
*
pix
=
new
QPixmap
();
if
(
file
.
exists
())
if
(
file
.
exists
())
{
{
QPixmap
*
pix
=
new
QPixmap
();
//Warning. Works only with modified Qt
//Warning. Works only with modified Qt
#ifdef Q_WS_X11
#ifdef Q_WS_X11
pix
->
load
(
fileName
,
0
,
Qt
::
AutoColor
);
pix
->
load
(
fileName
,
0
,
Qt
::
AutoColor
);
#else
#else
pix
->
load
(
fileName
,
0
,
Qt
::
AutoColor
,
false
);
pix
->
load
(
fileName
,
0
,
Qt
::
AutoColor
,
false
);
#endif
#endif
return
pix
;
}
}
return
NULL
;
return
pix
;
}
}
void
UBThumbnailAdaptor
::
load
(
UBDocumentProxy
*
proxy
,
QList
<
const
QPixmap
*>&
list
)
void
UBThumbnailAdaptor
::
load
(
UBDocumentProxy
*
proxy
,
QList
<
const
QPixmap
*>&
list
)
...
...
src/gui/UBDocumentNavigator.cpp
View file @
076e074e
...
@@ -94,12 +94,6 @@ void UBDocumentNavigator::generateThumbnails(UBDocumentContainer* source)
...
@@ -94,12 +94,6 @@ void UBDocumentNavigator::generateThumbnails(UBDocumentContainer* source)
mScene
->
addItem
(
pixmapItem
);
mScene
->
addItem
(
pixmapItem
);
mScene
->
addItem
(
labelItem
);
mScene
->
addItem
(
labelItem
);
// Get the selected item
if
(
UBApplication
::
boardController
->
activeSceneIndex
()
==
i
)
{
pixmapItem
->
setSelected
(
true
);
}
}
}
// Draw the items
// Draw the items
...
@@ -108,13 +102,13 @@ void UBDocumentNavigator::generateThumbnails(UBDocumentContainer* source)
...
@@ -108,13 +102,13 @@ void UBDocumentNavigator::generateThumbnails(UBDocumentContainer* source)
void
UBDocumentNavigator
::
onScrollToSelectedPage
(
int
index
)
void
UBDocumentNavigator
::
onScrollToSelectedPage
(
int
index
)
{
{
qDebug
()
<<
"Selection in widet: "
<<
index
;
int
c
=
0
;
int
c
=
0
;
foreach
(
UBImgTextThumbnailElement
el
,
mThumbsWithLabels
)
foreach
(
UBImgTextThumbnailElement
el
,
mThumbsWithLabels
)
{
{
if
(
c
==
index
)
if
(
c
==
index
)
{
{
el
.
getThumbnail
()
->
setSelected
(
true
);
el
.
getThumbnail
()
->
setSelected
(
true
);
centerOn
(
el
.
getThumbnail
());
}
}
else
else
{
{
...
@@ -122,7 +116,7 @@ void UBDocumentNavigator::onScrollToSelectedPage(int index)
...
@@ -122,7 +116,7 @@ void UBDocumentNavigator::onScrollToSelectedPage(int index)
}
}
c
++
;
c
++
;
}
}
refreshScene
(
);
centerOn
(
mThumbsWithLabels
[
index
].
getThumbnail
()
);
}
}
/**
/**
...
@@ -267,8 +261,13 @@ void UBDocumentNavigator::mousePressEvent(QMouseEvent *event)
...
@@ -267,8 +261,13 @@ void UBDocumentNavigator::mousePressEvent(QMouseEvent *event)
break
;
break
;
}
}
}
}
qDebug
()
<<
"Selected Scene: "
<<
index
;
UBApplication
::
boardController
->
setActiveDocumentScene
(
index
);
UBApplication
::
boardController
->
setActiveDocumentScene
(
index
);
}
}
QGraphicsView
::
mousePressEvent
(
event
);
QGraphicsView
::
mousePressEvent
(
event
);
}
}
void
UBDocumentNavigator
::
mouseReleaseEvent
(
QMouseEvent
*
event
)
{
event
->
accept
();
}
\ No newline at end of file
src/gui/UBDocumentNavigator.h
View file @
076e074e
...
@@ -47,6 +47,7 @@ public slots:
...
@@ -47,6 +47,7 @@ public slots:
protected
:
protected
:
virtual
void
resizeEvent
(
QResizeEvent
*
event
);
virtual
void
resizeEvent
(
QResizeEvent
*
event
);
virtual
void
mousePressEvent
(
QMouseEvent
*
event
);
virtual
void
mousePressEvent
(
QMouseEvent
*
event
);
virtual
void
mouseReleaseEvent
(
QMouseEvent
*
event
);
private
:
private
:
...
...
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