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
5e8a4614
Commit
5e8a4614
authored
Jan 09, 2012
by
Claudio Valerio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed ratio and added space between list elements
parent
8b333c21
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
UBWidgetList.cpp
src/customWidgets/UBWidgetList.cpp
+6
-1
UBWidgetList.h
src/customWidgets/UBWidgetList.h
+3
-0
No files found.
src/customWidgets/UBWidgetList.cpp
View file @
5e8a4614
...
...
@@ -5,6 +5,7 @@ UBWidgetList::UBWidgetList(QWidget* parent, eWidgetListOrientation orientation,
,
mpLayout
(
NULL
)
,
mpContainer
(
NULL
)
,
mMargin
(
5
)
,
mListElementsSpacing
(
10
)
,
mpEmptyLabel
(
NULL
)
{
setObjectName
(
name
);
...
...
@@ -75,7 +76,8 @@ void UBWidgetList::removeWidget(QWidget *widget)
int
UBWidgetList
::
scaleWidgets
(
QSize
pSize
)
{
int
result
=
0
;
// to remove the first spacing that shouldn't be there.
int
result
=
-
mListElementsSpacing
;
int
count
=
0
;
foreach
(
QWidget
*
eachWidget
,
mWidgetInfo
.
keys
()){
qreal
scaleFactor
=
0
;
...
...
@@ -85,6 +87,7 @@ int UBWidgetList::scaleWidgets(QSize pSize)
scaleFactor
=
(
float
)
mWidgetInfo
[
eachWidget
].
width
()
/
(
float
)
pSize
.
width
();
newWidgetHeight
=
mWidgetInfo
[
eachWidget
].
height
()
/
scaleFactor
;
result
+=
newWidgetHeight
;
eachWidget
->
setMinimumHeight
(
newWidgetHeight
);
}
else
{
scaleFactor
=
(
float
)
mWidgetInfo
[
eachWidget
].
height
()
/
(
float
)
pSize
.
height
();
...
...
@@ -99,6 +102,8 @@ int UBWidgetList::scaleWidgets(QSize pSize)
qDebug
()
<<
__PRETTY_FUNCTION__
<<
"scale factor "
<<
scaleFactor
;
qDebug
()
<<
__PRETTY_FUNCTION__
<<
"new height "
<<
result
;
#endif
//Adding a vertical/horizontal space between each element of the list
result
+=
mListElementsSpacing
;
}
return
result
;
}
...
...
src/customWidgets/UBWidgetList.h
View file @
5e8a4614
...
...
@@ -29,6 +29,8 @@ public:
void
setEmptyText
(
const
QString
&
text
);
int
margin
();
bool
empty
();
void
setListElementSpacing
(
int
margin
)
{
mListElementsSpacing
=
margin
;
}
int
listElementsSpacing
()
{
return
mListElementsSpacing
;
}
protected
:
void
resizeEvent
(
QResizeEvent
*
ev
);
...
...
@@ -41,6 +43,7 @@ private:
QWidget
*
mpContainer
;
eWidgetListOrientation
mOrientation
;
int
mMargin
;
int
mListElementsSpacing
;
QMap
<
QWidget
*
,
QSize
>
mWidgetInfo
;
QLabel
*
mpEmptyLabel
;
};
...
...
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