Fix or add some DoGetBestSize's
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26837 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -99,6 +99,8 @@ protected:
|
|||||||
int width, int height,
|
int width, int height,
|
||||||
int sizeFlags = wxSIZE_AUTO);
|
int sizeFlags = wxSIZE_AUTO);
|
||||||
|
|
||||||
|
virtual wxSize DoGetBestSize() const;
|
||||||
|
|
||||||
DECLARE_DYNAMIC_CLASS_NO_COPY(wxSlider95)
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxSlider95)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -74,7 +74,10 @@ void wxGauge::DoSetGauge()
|
|||||||
|
|
||||||
wxSize wxGauge::DoGetBestSize() const
|
wxSize wxGauge::DoGetBestSize() const
|
||||||
{
|
{
|
||||||
|
if (HasFlag(wxGA_HORIZONTAL))
|
||||||
return wxSize(100, 28);
|
return wxSize(100, 28);
|
||||||
|
else
|
||||||
|
return wxSize(28, 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxGauge::SetRange( int range )
|
void wxGauge::SetRange( int range )
|
||||||
|
@@ -74,7 +74,10 @@ void wxGauge::DoSetGauge()
|
|||||||
|
|
||||||
wxSize wxGauge::DoGetBestSize() const
|
wxSize wxGauge::DoGetBestSize() const
|
||||||
{
|
{
|
||||||
|
if (HasFlag(wxGA_HORIZONTAL))
|
||||||
return wxSize(100, 28);
|
return wxSize(100, 28);
|
||||||
|
else
|
||||||
|
return wxSize(28, 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxGauge::SetRange( int range )
|
void wxGauge::SetRange( int range )
|
||||||
|
@@ -174,7 +174,10 @@ wxSize wxGauge95::DoGetBestSize() const
|
|||||||
{
|
{
|
||||||
// VZ: no idea where does 28 come from, it was there before my changes and
|
// VZ: no idea where does 28 come from, it was there before my changes and
|
||||||
// as nobody ever complained I guess we can leave it...
|
// as nobody ever complained I guess we can leave it...
|
||||||
|
if (HasFlag(wxGA_HORIZONTAL))
|
||||||
return wxSize(100, 28);
|
return wxSize(100, 28);
|
||||||
|
else
|
||||||
|
return wxSize(28,100);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
@@ -124,18 +124,16 @@ bool wxSlider95::Create(wxWindow *parent, wxWindowID id,
|
|||||||
const wxValidator& wxVALIDATOR_PARAM(validator),
|
const wxValidator& wxVALIDATOR_PARAM(validator),
|
||||||
const wxString& name)
|
const wxString& name)
|
||||||
{
|
{
|
||||||
|
// default is no border
|
||||||
if ( (style & wxBORDER_MASK) == wxBORDER_DEFAULT )
|
if ( (style & wxBORDER_MASK) == wxBORDER_DEFAULT )
|
||||||
style |= wxBORDER_NONE;
|
style |= wxBORDER_NONE;
|
||||||
|
|
||||||
SetName(name);
|
if ( !CreateBase(parent, id, pos, size, style, validator, name) )
|
||||||
#if wxUSE_VALIDATORS
|
return FALSE;
|
||||||
SetValidator(validator);
|
|
||||||
#endif // wxUSE_VALIDATORS
|
|
||||||
|
|
||||||
if (parent) parent->AddChild(this);
|
if (parent) parent->AddChild(this);
|
||||||
|
|
||||||
SetBackgroundColour(parent->GetBackgroundColour()) ;
|
InheritAttributes();
|
||||||
SetForegroundColour(parent->GetForegroundColour()) ;
|
|
||||||
|
|
||||||
m_staticValue = (WXHWND) NULL;;
|
m_staticValue = (WXHWND) NULL;;
|
||||||
m_staticMin = (WXHWND) NULL;;
|
m_staticMin = (WXHWND) NULL;;
|
||||||
@@ -145,11 +143,6 @@ bool wxSlider95::Create(wxWindow *parent, wxWindowID id,
|
|||||||
m_windowStyle = style;
|
m_windowStyle = style;
|
||||||
m_tickFreq = 0;
|
m_tickFreq = 0;
|
||||||
|
|
||||||
if ( id == -1 )
|
|
||||||
m_windowId = (int)NewControlId();
|
|
||||||
else
|
|
||||||
m_windowId = id;
|
|
||||||
|
|
||||||
int x = pos.x;
|
int x = pos.x;
|
||||||
int y = pos.y;
|
int y = pos.y;
|
||||||
int width = size.x;
|
int width = size.x;
|
||||||
@@ -547,7 +540,7 @@ void wxSlider95::DoSetSize(int x, int y, int width, int height, int sizeFlags)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ( w1 < 0 )
|
if ( w1 < 0 )
|
||||||
w1 = 200;
|
w1 = 100;
|
||||||
if ( h1 < 0 )
|
if ( h1 < 0 )
|
||||||
h1 = 20;
|
h1 = 20;
|
||||||
|
|
||||||
@@ -620,13 +613,94 @@ void wxSlider95::DoSetSize(int x, int y, int width, int height, int sizeFlags)
|
|||||||
if ( w1 < 0 )
|
if ( w1 < 0 )
|
||||||
w1 = 20;
|
w1 = 20;
|
||||||
if ( h1 < 0 )
|
if ( h1 < 0 )
|
||||||
h1 = 200;
|
h1 = 100;
|
||||||
|
|
||||||
::MoveWindow(GetHwnd(), x1, y1, w1, h1, TRUE);
|
::MoveWindow(GetHwnd(), x1, y1, w1, h1, TRUE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// A reimplementaion of the mess above changed a bit to just determine the min
|
||||||
|
// size needed. It would certainly be nice to refactor this and DoSetSize
|
||||||
|
// somehow.
|
||||||
|
wxSize wxSlider95::DoGetBestSize() const
|
||||||
|
{
|
||||||
|
wxSize rv;
|
||||||
|
wxChar buf[300];
|
||||||
|
int cx;
|
||||||
|
int cy;
|
||||||
|
int cyf;
|
||||||
|
int min_len = 0;
|
||||||
|
int max_len = 0;
|
||||||
|
|
||||||
|
wxGetCharSize(GetHWND(), &cx, &cy, & this->GetFont());
|
||||||
|
|
||||||
|
if ( !HasFlag(wxSL_VERTICAL))
|
||||||
|
{
|
||||||
|
rv = wxSize(100, 20); // default size for the slider itself
|
||||||
|
|
||||||
|
if (HasFlag(wxSL_LABELS)) // do we need to add more for the labels?
|
||||||
|
{
|
||||||
|
::GetWindowText((HWND) m_staticMin, buf, 300);
|
||||||
|
GetTextExtent(buf, &min_len, &cyf,NULL,NULL, & this->GetFont());
|
||||||
|
rv.x += min_len + cx;
|
||||||
|
|
||||||
|
::GetWindowText((HWND) m_staticMax, buf, 300);
|
||||||
|
GetTextExtent(buf, &max_len, &cyf,NULL,NULL, & this->GetFont());
|
||||||
|
rv.x += max_len + cx;
|
||||||
|
|
||||||
|
if (m_staticValue)
|
||||||
|
{
|
||||||
|
int new_width = (int)(wxMax(min_len, max_len));
|
||||||
|
int valueHeight = (int)cyf;
|
||||||
|
|
||||||
|
#ifdef __WIN32__
|
||||||
|
// For some reason, under Win95, the text edit control has
|
||||||
|
// a lot of space before the first character
|
||||||
|
new_width += 3*cx;
|
||||||
|
#endif
|
||||||
|
// The height needs to be a bit bigger under Win95 if
|
||||||
|
// using native 3D effects.
|
||||||
|
valueHeight = (int) (valueHeight * 1.5) ;
|
||||||
|
|
||||||
|
rv.x += new_width + cx;
|
||||||
|
rv.y = wxMax(valueHeight, rv.y);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else // ! wxSL_HORIZONTAL
|
||||||
|
{
|
||||||
|
rv = wxSize(20, 100); // default size for the slider itself
|
||||||
|
|
||||||
|
if (HasFlag(wxSL_LABELS)) // do we need to add more for the labels?
|
||||||
|
{
|
||||||
|
::GetWindowText((HWND) m_staticMin, buf, 300);
|
||||||
|
GetTextExtent(buf, &min_len, &cyf,NULL,NULL, & this->GetFont());
|
||||||
|
rv.y += cy;
|
||||||
|
|
||||||
|
::GetWindowText((HWND) m_staticMax, buf, 300);
|
||||||
|
GetTextExtent(buf, &max_len, &cyf,NULL,NULL, & this->GetFont());
|
||||||
|
rv.y += cy;
|
||||||
|
|
||||||
|
if (m_staticValue)
|
||||||
|
{
|
||||||
|
int new_width = (int)(wxMax(min_len, max_len));
|
||||||
|
int valueHeight = (int)cyf;
|
||||||
|
new_width += cx;
|
||||||
|
|
||||||
|
// The height needs to be a bit bigger under Win95 if
|
||||||
|
// using native 3D effects.
|
||||||
|
valueHeight = (int) (valueHeight * 1.5) ;
|
||||||
|
rv.y += valueHeight;
|
||||||
|
rv.x = wxMax(new_width, rv.x);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return rv;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void wxSlider95::SetRange(int minValue, int maxValue)
|
void wxSlider95::SetRange(int minValue, int maxValue)
|
||||||
{
|
{
|
||||||
m_rangeMin = minValue;
|
m_rangeMin = minValue;
|
||||||
|
Reference in New Issue
Block a user