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
d4b4b8ea
Commit
d4b4b8ea
authored
May 23, 2012
by
Claudio Valerio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed issue 617
parent
41f088d5
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
477 additions
and
476 deletions
+477
-476
UBSettings.cpp
src/core/UBSettings.cpp
+2
-0
UBSettings.h
src/core/UBSettings.h
+2
-0
UBDockPalette.cpp
src/gui/UBDockPalette.cpp
+456
-468
UBLeftPalette.cpp
src/gui/UBLeftPalette.cpp
+8
-2
UBNavigatorPalette.cpp
src/gui/UBNavigatorPalette.cpp
+0
-2
UBRightPalette.cpp
src/gui/UBRightPalette.cpp
+9
-4
No files found.
src/core/UBSettings.cpp
View file @
d4b4b8ea
...
...
@@ -206,7 +206,9 @@ void UBSettings::init()
appToolBarOrientationVertical
=
new
UBSetting
(
this
,
"App"
,
"ToolBarOrientationVertical"
,
false
);
navigPaletteWidth
=
new
UBSetting
(
this
,
"Board"
,
"NavigPaletteWidth"
,
270
);
rightLibPaletteWidth
=
new
UBSetting
(
this
,
"Board"
,
"RightLibPaletteWidth"
,
270
);
rightLibPaletteIsCollapsed
=
new
UBSetting
(
this
,
"Board"
,
"RightLibPaletteIsCollapsed"
,
false
);
leftLibPaletteWidth
=
new
UBSetting
(
this
,
"Board"
,
"LeftLibPaletteWidth"
,
270
);
leftLibPaletteIsCollapsed
=
new
UBSetting
(
this
,
"Board"
,
"LeftLibPaletteIsCollapsed"
,
false
);
appIsInSoftwareUpdateProcess
=
new
UBSetting
(
this
,
"App"
,
"IsInSoftwareUpdateProcess"
,
false
);
appLastSessionDocumentUUID
=
new
UBSetting
(
this
,
"App"
,
"LastSessionDocumentUUID"
,
""
);
...
...
src/core/UBSettings.h
View file @
d4b4b8ea
...
...
@@ -316,7 +316,9 @@ class UBSettings : public QObject
UBSetting
*
navigPaletteWidth
;
UBSetting
*
rightLibPaletteWidth
;
UBSetting
*
rightLibPaletteIsCollapsed
;
UBSetting
*
leftLibPaletteWidth
;
UBSetting
*
leftLibPaletteIsCollapsed
;
UBSetting
*
communityUser
;
UBSetting
*
communityPsw
;
...
...
src/gui/UBDockPalette.cpp
View file @
d4b4b8ea
This diff is collapsed.
Click to expand it.
src/gui/UBLeftPalette.cpp
View file @
d4b4b8ea
...
...
@@ -29,7 +29,10 @@ UBLeftPalette::UBLeftPalette(QWidget *parent, const char *name):
mLastWidth
=
UBSettings
::
settings
()
->
leftLibPaletteWidth
->
get
().
toInt
();
mCollapseWidth
=
150
;
resize
(
mLastWidth
,
parentWidget
()
->
height
());
if
(
UBSettings
::
settings
()
->
leftLibPaletteIsCollapsed
->
get
().
toBool
())
resize
(
0
,
parentWidget
()
->
height
());
else
resize
(
mLastWidth
,
parentWidget
()
->
height
());
}
/**
...
...
@@ -54,6 +57,9 @@ void UBLeftPalette::updateMaxWidth()
*/
void
UBLeftPalette
::
resizeEvent
(
QResizeEvent
*
event
)
{
UBSettings
::
settings
()
->
leftLibPaletteWidth
->
set
(
width
());
int
newWidth
=
width
();
if
(
newWidth
>
mCollapseWidth
)
UBSettings
::
settings
()
->
leftLibPaletteWidth
->
set
(
newWidth
);
UBSettings
::
settings
()
->
leftLibPaletteIsCollapsed
->
set
(
newWidth
==
0
);
UBDockPalette
::
resizeEvent
(
event
);
}
src/gui/UBNavigatorPalette.cpp
View file @
d4b4b8ea
...
...
@@ -33,8 +33,6 @@ UBNavigatorPalette::UBNavigatorPalette(QWidget *parent, const char *name):
{
setOrientation
(
eUBDockOrientation_Left
);
setMaximumWidth
(
300
);
//mCollapsedIcon = QPixmap(":images/pages_open.png");
//mIcon = QPixmap(":images/pages_close.png");
resize
(
UBSettings
::
settings
()
->
navigPaletteWidth
->
get
().
toInt
(),
height
());
mLastWidth
=
300
;
...
...
src/gui/UBRightPalette.cpp
View file @
d4b4b8ea
...
...
@@ -27,11 +27,13 @@ UBRightPalette::UBRightPalette(QWidget *parent, const char *name):
{
setObjectName
(
name
);
setOrientation
(
eUBDockOrientation_Right
);
mLastWidth
=
UBSettings
::
settings
()
->
rightLibPaletteWidth
->
get
().
toInt
();
mCollapseWidth
=
150
;
resize
(
mLastWidth
,
parentWidget
()
->
height
());
mLastWidth
=
UBSettings
::
settings
()
->
rightLibPaletteWidth
->
get
().
toInt
();
if
(
UBSettings
::
settings
()
->
rightLibPaletteIsCollapsed
->
get
().
toBool
())
resize
(
0
,
parentWidget
()
->
height
());
else
resize
(
mLastWidth
,
parentWidget
()
->
height
());
}
/**
...
...
@@ -59,8 +61,11 @@ void UBRightPalette::mouseMoveEvent(QMouseEvent *event)
*/
void
UBRightPalette
::
resizeEvent
(
QResizeEvent
*
event
)
{
int
newWidth
=
width
();
if
(
newWidth
>
mCollapseWidth
)
UBSettings
::
settings
()
->
rightLibPaletteWidth
->
set
(
newWidth
);
UBSettings
::
settings
()
->
rightLibPaletteIsCollapsed
->
set
(
newWidth
==
0
);
UBDockPalette
::
resizeEvent
(
event
);
UBSettings
::
settings
()
->
rightLibPaletteWidth
->
set
(
width
());
emit
resized
();
}
...
...
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