/////////////////////////////////////////////////////////////////////////////
-// Name: src/msw/gauge95.cpp
+// Name: src/msw/gauge.cpp
// Purpose: wxGauge class
// Author: Julian Smart
// Modified by:
// wxWin macros
// ----------------------------------------------------------------------------
-#if wxUSE_EXTENDED_RTTI
-WX_DEFINE_FLAGS( wxGaugeStyle )
-
-wxBEGIN_FLAGS( wxGaugeStyle )
- // new style border flags, we put them first to
- // use them for streaming out
- wxFLAGS_MEMBER(wxBORDER_SIMPLE)
- wxFLAGS_MEMBER(wxBORDER_SUNKEN)
- wxFLAGS_MEMBER(wxBORDER_DOUBLE)
- wxFLAGS_MEMBER(wxBORDER_RAISED)
- wxFLAGS_MEMBER(wxBORDER_STATIC)
- wxFLAGS_MEMBER(wxBORDER_NONE)
-
- // old style border flags
- wxFLAGS_MEMBER(wxSIMPLE_BORDER)
- wxFLAGS_MEMBER(wxSUNKEN_BORDER)
- wxFLAGS_MEMBER(wxDOUBLE_BORDER)
- wxFLAGS_MEMBER(wxRAISED_BORDER)
- wxFLAGS_MEMBER(wxSTATIC_BORDER)
- wxFLAGS_MEMBER(wxBORDER)
-
- // standard window styles
- wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
- wxFLAGS_MEMBER(wxCLIP_CHILDREN)
- wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
- wxFLAGS_MEMBER(wxWANTS_CHARS)
- wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
- wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
- wxFLAGS_MEMBER(wxVSCROLL)
- wxFLAGS_MEMBER(wxHSCROLL)
-
- wxFLAGS_MEMBER(wxGA_HORIZONTAL)
- wxFLAGS_MEMBER(wxGA_VERTICAL)
-#if WXWIN_COMPATIBILITY_2_6
- wxFLAGS_MEMBER(wxGA_PROGRESSBAR)
-#endif // WXWIN_COMPATIBILITY_2_6
- wxFLAGS_MEMBER(wxGA_SMOOTH)
-
-wxEND_FLAGS( wxGaugeStyle )
-
-IMPLEMENT_DYNAMIC_CLASS_XTI(wxGauge, wxControl,"wx/gauge.h")
-
-wxBEGIN_PROPERTIES_TABLE(wxGauge)
- wxPROPERTY( Value , int , SetValue, GetValue, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
- wxPROPERTY( Range , int , SetRange, GetRange, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
- wxPROPERTY( ShadowWidth , int , SetShadowWidth, GetShadowWidth, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
- wxPROPERTY( BezelFace , int , SetBezelFace, GetBezelFace, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
- wxPROPERTY_FLAGS( WindowStyle , wxGaugeStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
-wxEND_PROPERTIES_TABLE()
-
-wxBEGIN_HANDLERS_TABLE(wxGauge)
-wxEND_HANDLERS_TABLE()
-
-wxCONSTRUCTOR_6( wxGauge , wxWindow* , Parent , wxWindowID , Id , int , Range , wxPoint , Position , wxSize , Size , long , WindowStyle )
-#else
-IMPLEMENT_DYNAMIC_CLASS(wxGauge, wxControl)
-#endif
-
// ============================================================================
// wxGauge implementation
// ============================================================================
void wxGauge::SetRange(int r)
{
- // switch to determinate mode if required
- SetDeterminateMode();
+ // Changing range implicitly means we're using determinate mode.
+ if ( IsInIndeterminateMode() )
+ SetDeterminateMode();
m_rangeMax = r;
void wxGauge::SetValue(int pos)
{
- // Setting the (same) position produces flicker on Vista,
- // especially noticable if ownerdrawn
- if (GetValue() == pos) return;
+ // Setting the value implicitly means that we're using determinate mode.
+ if ( IsInIndeterminateMode() )
+ SetDeterminateMode();
- // switch to determinate mode if required
- SetDeterminateMode();
-
- m_gaugePos = pos;
+ if ( GetValue() != pos )
+ {
+ m_gaugePos = pos;
- ::SendMessage(GetHwnd(), PBM_SETPOS, pos, 0);
+ ::SendMessage(GetHwnd(), PBM_SETPOS, pos, 0);
+ }
}
bool wxGauge::SetForegroundColour(const wxColour& col)
return true;
}
-void wxGauge::SetIndeterminateMode()
+bool wxGauge::IsInIndeterminateMode() const
{
- // add the PBS_MARQUEE style to the progress bar
- LONG style = ::GetWindowLong(GetHwnd(), GWL_STYLE);
- if ((style & PBS_MARQUEE) == 0)
- ::SetWindowLong(GetHwnd(), GWL_STYLE, style|PBS_MARQUEE);
+ return (::GetWindowLong(GetHwnd(), GWL_STYLE) & PBS_MARQUEE) != 0;
+}
- // now the control can only run in indeterminate mode
+void wxGauge::SetIndeterminateMode()
+{
+ // Switch the control into indeterminate mode if necessary.
+ if ( !IsInIndeterminateMode() )
+ {
+ const long style = ::GetWindowLong(GetHwnd(), GWL_STYLE);
+ ::SetWindowLong(GetHwnd(), GWL_STYLE, style | PBS_MARQUEE);
+ ::SendMessage(GetHwnd(), PBM_SETMARQUEE, TRUE, 0);
+ }
}
void wxGauge::SetDeterminateMode()
{
- // remove the PBS_MARQUEE style to the progress bar
- LONG style = ::GetWindowLong(GetHwnd(), GWL_STYLE);
- if ((style & PBS_MARQUEE) != 0)
+ if ( IsInIndeterminateMode() )
+ {
+ const long style = ::GetWindowLong(GetHwnd(), GWL_STYLE);
+ ::SendMessage(GetHwnd(), PBM_SETMARQUEE, FALSE, 0);
::SetWindowLong(GetHwnd(), GWL_STYLE, style & ~PBS_MARQUEE);
-
- // now the control can only run in determinate mode
+ }
}
void wxGauge::Pulse()
// switch to indeterminate mode if required
SetIndeterminateMode();
- // NOTE: when in indeterminate mode, the PBM_SETPOS message will just make
- // the bar's blocks move a bit and the WPARAM value is just ignored
- // so that we can safely use zero
- SendMessage(GetHwnd(), (UINT) PBM_SETPOS, (WPARAM)0, (LPARAM)0);
+ SendMessage(GetHwnd(), PBM_STEPIT, 0, 0);
}
else
{