mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-12-27 00:11:33 +08:00
double -> float
This commit is contained in:
parent
4d3328e468
commit
6998c0e585
@ -1137,14 +1137,14 @@ bool CDockWidget::isCurrentTab() const
|
|||||||
|
|
||||||
|
|
||||||
//============================================================================
|
//============================================================================
|
||||||
void CDockWidget::setDefaultOverlayDockProportion(double Proportion)
|
void CDockWidget::setDefaultOverlayDockProportion(float Proportion)
|
||||||
{
|
{
|
||||||
d->DefaultOverlayDockProportion = Proportion;
|
d->DefaultOverlayDockProportion = Proportion;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//============================================================================
|
//============================================================================
|
||||||
double CDockWidget::DefaultOverlayDockProportion() const
|
float CDockWidget::DefaultOverlayDockProportion() const
|
||||||
{
|
{
|
||||||
return d->DefaultOverlayDockProportion;
|
return d->DefaultOverlayDockProportion;
|
||||||
}
|
}
|
||||||
|
@ -527,13 +527,13 @@ public:
|
|||||||
* Set default dock proportion when overlayed
|
* Set default dock proportion when overlayed
|
||||||
* see *DefaultOverlayDockProportion()
|
* see *DefaultOverlayDockProportion()
|
||||||
*/
|
*/
|
||||||
void setDefaultOverlayDockProportion(double Proportion);
|
void setDefaultOverlayDockProportion(float Proportion);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Set default dock proportion when overlayed
|
* Set default dock proportion when overlayed
|
||||||
* 0.25 is a quarter of the size, 0.5 is half the size, 1 is the entire size
|
* 0.25 is a quarter of the size, 0.5 is half the size, 1 is the entire size
|
||||||
*/
|
*/
|
||||||
double DefaultOverlayDockProportion() const;
|
float DefaultOverlayDockProportion() const;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Set overlay insertion mode
|
* Set overlay insertion mode
|
||||||
|
@ -244,7 +244,7 @@ void COverlayDockContainer::addDockWidget(CDockWidget* DockWidget)
|
|||||||
|
|
||||||
|
|
||||||
//============================================================================
|
//============================================================================
|
||||||
void COverlayDockContainer::setDockSizeProportion(double SplitterProportion)
|
void COverlayDockContainer::setDockSizeProportion(float SplitterProportion)
|
||||||
{
|
{
|
||||||
if (SplitterProportion < 0 || SplitterProportion > 1)
|
if (SplitterProportion < 0 || SplitterProportion > 1)
|
||||||
{
|
{
|
||||||
@ -252,7 +252,7 @@ void COverlayDockContainer::setDockSizeProportion(double SplitterProportion)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const auto dockSize = static_cast<int>(static_cast<double>(INT_MAX) * SplitterProportion);
|
const auto dockSize = static_cast<int>(static_cast<float>(INT_MAX) * SplitterProportion);
|
||||||
const auto remainingSize = INT_MAX - dockSize;
|
const auto remainingSize = INT_MAX - dockSize;
|
||||||
switch (d->Area)
|
switch (d->Area)
|
||||||
{
|
{
|
||||||
|
@ -101,7 +101,7 @@ public:
|
|||||||
* Takes a float between 0 and 1
|
* Takes a float between 0 and 1
|
||||||
* E.g. 0.25 is a quarter of the size, 0.5 is half the size and 1 is the entire size of the container
|
* E.g. 0.25 is a quarter of the size, 0.5 is half the size and 1 is the entire size of the container
|
||||||
*/
|
*/
|
||||||
void setDockSizeProportion(double SplitterProportion = 0.25);
|
void setDockSizeProportion(float SplitterProportion = 0.25);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the side tab bar area of this overlay dock container
|
* Returns the side tab bar area of this overlay dock container
|
||||||
|
Loading…
Reference in New Issue
Block a user