Searched refs:gravity (Results 1 - 5 of 5) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/xrc/
H A Dxh_split.cpp60 float gravity = GetFloat(wxT("gravity"), 0.0); local
63 if (gravity != 0.0)
64 splitter->SetSashGravity(gravity);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/splitter/
H A Dsplitter.cpp213 _T("Set &gravity\tCtrl-G"),
214 _T("Set gravity of sash"));
366 str = wxGetTextFromUser(_T("Enter sash gravity (0,1):"), _T(""), str, this);
370 double gravity = wxStrtod( str, (wxChar**)NULL); local
371 m_splitter->SetSashGravity(gravity);
373 str.Printf( wxT("Gravity = %g"), gravity);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/generic/
H A Dsplitter.cpp463 void wxSplitterWindow::SetSashGravity(double gravity) argument
465 wxCHECK_RET( gravity >= 0. && gravity <= 1.,
466 _T("invalid gravity value") );
468 m_sashGravity = gravity;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dsplitter.tex138 Returns the current sash gravity.
285 \func{void}{SetSashGravity}{\param{double }{gravity}}
287 Sets the sash gravity.
291 \docparam{gravity}{The sash gravity. Value between 0.0 and 1.0.}
307 Default value of sash gravity is 0.0. That value is compatible with previous
308 (before gravity was introduced) behaviour of wxSplitterWindow.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/generic/
H A Dsplitter.h154 // Set the sash gravity
155 void SetSashGravity(double gravity);
157 // Gets the sash gravity

Completed in 177 milliseconds