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
ac53fc94
Commit
ac53fc94
authored
Sep 06, 2011
by
shibakaneki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed an issue related to the automatic resize of the left dock palette
parent
6273693e
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
30 additions
and
20 deletions
+30
-20
UBCustomCaptureWindow.cpp
src/desktop/UBCustomCaptureWindow.cpp
+4
-1
UBLeftPalette.cpp
src/gui/UBLeftPalette.cpp
+22
-2
UBLeftPalette.h
src/gui/UBLeftPalette.h
+4
-0
UBPageNavigationWidget.cpp
src/gui/UBPageNavigationWidget.cpp
+0
-15
UBPageNavigationWidget.h
src/gui/UBPageNavigationWidget.h
+0
-1
UBRightPalette.cpp
src/gui/UBRightPalette.cpp
+0
-1
No files found.
src/desktop/UBCustomCaptureWindow.cpp
View file @
ac53fc94
...
@@ -62,7 +62,10 @@ int UBCustomCaptureWindow::execute(const QPixmap &pScreenPixmap)
...
@@ -62,7 +62,10 @@ int UBCustomCaptureWindow::execute(const QPixmap &pScreenPixmap)
showFullScreen
();
showFullScreen
();
setWindowOpacity
(
1.0
);
setWindowOpacity
(
1.0
);
return
exec
();
qDebug
()
<<
">>>>>>>>>>>>>< BEFORE"
;
int
retVal
=
exec
();
qDebug
()
<<
"------------------ AFTER"
;
return
retVal
;
}
}
...
...
src/gui/UBLeftPalette.cpp
View file @
ac53fc94
...
@@ -20,11 +20,16 @@ UBLeftPalette::UBLeftPalette(QWidget *parent, const char *name):UBDockPalette(pa
...
@@ -20,11 +20,16 @@ UBLeftPalette::UBLeftPalette(QWidget *parent, const char *name):UBDockPalette(pa
setObjectName
(
name
);
setObjectName
(
name
);
setOrientation
(
eUBDockOrientation_Left
);
setOrientation
(
eUBDockOrientation_Left
);
mLastWidth
=
300
;
mLastWidth
=
300
;
setMaximumWidth
(
300
);
mCollapseWidth
=
180
;
resize
(
UBSettings
::
settings
()
->
navigPaletteWidth
->
get
().
toInt
(),
height
());
/*
resize(UBSettings::settings()->libPaletteWidth->get().toInt(), parentWidget()->height());
mpLayout->setContentsMargins(2*border() + customMargin(), customMargin(), customMargin(), customMargin());
*/
resize
(
UBSettings
::
settings
()
->
navigPaletteWidth
->
get
().
toInt
(),
parentWidget
()
->
height
());
mpLayout
->
setContentsMargins
(
customMargin
(),
customMargin
(),
2
*
border
()
+
customMargin
(),
customMargin
());
mpLayout
->
setContentsMargins
(
customMargin
(),
customMargin
(),
2
*
border
()
+
customMargin
(),
customMargin
());
// Add the widgets here
mpPageNavigator
=
new
UBPageNavigationWidget
(
this
);
mpPageNavigator
=
new
UBPageNavigationWidget
(
this
);
addTabWidget
(
mpPageNavigator
);
addTabWidget
(
mpPageNavigator
);
}
}
...
@@ -38,6 +43,21 @@ UBLeftPalette::~UBLeftPalette()
...
@@ -38,6 +43,21 @@ UBLeftPalette::~UBLeftPalette()
}
}
}
}
void
UBLeftPalette
::
updateMaxWidth
()
{
setMaximumWidth
(
300
);
}
void
UBLeftPalette
::
resizeEvent
(
QResizeEvent
*
event
)
{
UBDockPalette
::
resizeEvent
(
event
);
if
(
NULL
!=
mpPageNavigator
)
{
mpPageNavigator
->
setMinimumHeight
(
height
()
-
2
*
border
());
}
UBSettings
::
settings
()
->
navigPaletteWidth
->
set
(
width
());
}
UBPageNavigationWidget
*
UBLeftPalette
::
pageNavigator
()
UBPageNavigationWidget
*
UBLeftPalette
::
pageNavigator
()
{
{
return
mpPageNavigator
;
return
mpPageNavigator
;
...
...
src/gui/UBLeftPalette.h
View file @
ac53fc94
...
@@ -26,6 +26,10 @@ public:
...
@@ -26,6 +26,10 @@ public:
UBPageNavigationWidget
*
pageNavigator
();
UBPageNavigationWidget
*
pageNavigator
();
protected
:
void
updateMaxWidth
();
void
resizeEvent
(
QResizeEvent
*
event
);
private
:
private
:
UBPageNavigationWidget
*
mpPageNavigator
;
UBPageNavigationWidget
*
mpPageNavigator
;
...
...
src/gui/UBPageNavigationWidget.cpp
View file @
ac53fc94
...
@@ -141,21 +141,6 @@ void UBPageNavigationWidget::refresh()
...
@@ -141,21 +141,6 @@ void UBPageNavigationWidget::refresh()
mNavigator
->
setDocument
(
UBApplication
::
boardController
->
activeDocument
());
mNavigator
->
setDocument
(
UBApplication
::
boardController
->
activeDocument
());
}
}
/**
* \brief Handle the resize event
* @param event as the resize event
*/
void
UBPageNavigationWidget
::
resizeEvent
(
QResizeEvent
*
event
)
{
emit
resizeRequest
(
event
);
//UBDockPalette::resizeEvent(event);
if
(
NULL
!=
mNavigator
)
{
mNavigator
->
setMinimumHeight
(
height
()
-
2
*
border
());
}
UBSettings
::
settings
()
->
navigPaletteWidth
->
set
(
width
());
}
/**
/**
* \brief Notify a timer event
* \brief Notify a timer event
* @param event as the timer event
* @param event as the timer event
...
...
src/gui/UBPageNavigationWidget.h
View file @
ac53fc94
...
@@ -43,7 +43,6 @@ public slots:
...
@@ -43,7 +43,6 @@ public slots:
void
setPageNumber
(
int
current
,
int
total
);
void
setPageNumber
(
int
current
,
int
total
);
protected
:
protected
:
virtual
void
resizeEvent
(
QResizeEvent
*
event
);
virtual
void
timerEvent
(
QTimerEvent
*
event
);
virtual
void
timerEvent
(
QTimerEvent
*
event
);
private
:
private
:
...
...
src/gui/UBRightPalette.cpp
View file @
ac53fc94
...
@@ -23,7 +23,6 @@ UBRightPalette::UBRightPalette(QWidget *parent, const char *name):UBDockPalette(
...
@@ -23,7 +23,6 @@ UBRightPalette::UBRightPalette(QWidget *parent, const char *name):UBDockPalette(
{
{
setObjectName
(
name
);
setObjectName
(
name
);
setOrientation
(
eUBDockOrientation_Right
);
setOrientation
(
eUBDockOrientation_Right
);
setOrientation
(
eUBDockOrientation_Right
);
mCollapseWidth
=
180
;
mCollapseWidth
=
180
;
mLastWidth
=
300
;
mLastWidth
=
300
;
resize
(
UBSettings
::
settings
()
->
libPaletteWidth
->
get
().
toInt
(),
parentWidget
()
->
height
());
resize
(
UBSettings
::
settings
()
->
libPaletteWidth
->
get
().
toInt
(),
parentWidget
()
->
height
());
...
...
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