Searched refs:GetValue (Results 126 - 150 of 413) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/motif/
H A Dspinbutt.h46 int GetValue() const;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/
H A Dcheckbox.h42 virtual bool GetValue() const;
H A Ddatectrl.h48 virtual wxDateTime GetValue() const;
H A Dradiobut.h46 virtual bool GetValue() const;
62 // we need to store the state internally as the result of GetValue()
H A Dspinbutt.h47 virtual int GetValue() const;
H A Dtglbtn.h45 virtual bool GetValue() const ;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/os2/
H A Dgauge.h54 int GetValue(void) const;
H A Dradiobut.h56 virtual bool GetValue(void) const ;
H A Dspinbutt.h54 virtual int GetValue(void) const;
H A Dtglbtn.h45 virtual bool GetValue() const ;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/palmos/
H A Dcheckbox.h42 virtual bool GetValue() const;
H A Ddatectrl.h49 virtual wxDateTime GetValue() const;
H A Dradiobut.h46 virtual bool GetValue() const;
H A Dslider.h46 virtual int GetValue() const;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DCommentDialog.cpp60 wxString comment = CastChild( IDC_CMT_TEXT, wxTextCtrl )->GetValue();
H A DStatTree.cpp177 return ((CStatTreeItemCounter*)a)->GetValue() > ((CStatTreeItemCounter*)b)->GetValue();
531 double v1 = m_counter1->GetValue();
532 double v2 = m_counter2->GetValue();
618 (m_known->GetValue() + m_unknown->GetValue()) %
619 m_known->GetValue();
626 (uint64)(m_known->GetValue() + m_unknown->GetValue()));
629 (uint64)m_known->GetValue());
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/opengl/cube/
H A Dcube.cpp94 int GetValue();
121 int ScanCodeDialog::GetValue() function in class:ScanCodeDialog
124 wxString buf = m_ScanCode->GetValue();
145 secs = (unsigned long) (tl.GetValue() / 1000);
146 msec = (unsigned long) (tl.GetValue() - secs*1000);
502 m_canvas->m_rleft = dial.GetValue();
513 m_canvas->m_rright = dial.GetValue();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/listbox/
H A Dlboxtest.cpp514 !m_chkSort->GetValue() &&
515 m_chkHScroll->GetValue() &&
516 !m_chkVScroll->GetValue() )
543 if ( m_chkVScroll->GetValue() )
545 if ( m_chkHScroll->GetValue() )
547 if ( m_chkSort->GetValue() )
602 wxString s = m_textChange->GetValue();
612 if ( !m_textDelete->GetValue().ToULong(&n) ||
652 wxString s = m_textAdd->GetValue();
688 event.Enable(m_textDelete->GetValue()
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/richtext/
H A Drichtextliststylepage.cpp582 m_currentLevel = m_levelCtrl->GetValue();
586 if (m_alignmentLeft->GetValue())
588 else if (m_alignmentCentred->GetValue())
590 else if (m_alignmentRight->GetValue())
592 else if (m_alignmentJustified->GetValue())
600 wxString leftIndent(m_indentLeft->GetValue());
601 wxString leftFirstIndent(m_indentLeftFirst->GetValue());
614 wxString rightIndent(m_indentRight->GetValue());
620 wxString spacingAfter(m_spacingAfter->GetValue());
626 wxString spacingBefore(m_spacingBefore->GetValue());
[all...]
H A Drichtextindentspage.cpp400 if (m_alignmentLeft->GetValue())
402 else if (m_alignmentCentred->GetValue())
404 else if (m_alignmentRight->GetValue())
406 else if (m_alignmentJustified->GetValue())
414 wxString leftIndent(m_indentLeft->GetValue());
415 wxString leftFirstIndent(m_indentLeftFirst->GetValue());
428 wxString rightIndent(m_indentRight->GetValue());
434 wxString spacingAfter(m_spacingAfter->GetValue());
440 wxString spacingBefore(m_spacingBefore->GetValue());
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/
H A Dslider.cpp165 int wxSlider::GetValue() const function in class:wxSlider
168 return ValueInvertOrNot( m_peer->GetValue() ) ;
210 int currentValue = GetValue();
301 int value = ValueInvertOrNot( m_peer->GetValue() );
320 int value = ValueInvertOrNot( m_peer->GetValue() ) ;
464 text.Printf(wxT("%d"), (int)m_peer->GetValue());
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/mediaplayer/
H A Dmediaplayer.cpp1427 int nMinutes = (int) (llLength / 60000).GetValue();
1428 int nSeconds = (int) ((llLength % 60000)/1000).GetValue();
1437 nMinutes = (int) (llTell / 60000).GetValue();
1438 nSeconds = (int) ((llTell % 60000)/1000).GetValue();
1451 currentpage->m_slider->SetRange(0, (int)(llLength / 1000).GetValue());
1457 currentpage->m_slider->SetValue((long)(llTell / 1000).GetValue());
1466 if(llDownloadTotal.GetValue() != 0)
1469 (int) ((llDownloadProgress * 100) / llDownloadTotal).GetValue()
1490 (int)llDownloadProgress.GetValue(),
1491 (int)llDownloadTotal.GetValue(),
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dgauge95.cpp115 wxPROPERTY( Value , int , SetValue, GetValue, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
211 if (GetValue() == pos) return;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/os2/
H A Dcheckbox.cpp49 rEvent.SetInt(GetValue());
140 bool wxCheckBox::GetValue() const function in class:wxCheckBox
143 } // end of wxCheckBox::GetValue
H A Dradiobut.cpp137 bool wxRadioButton::GetValue() const function in class:wxRadioButton
140 } // end of wxRadioButton::GetValue
156 bool bIsChecked = GetValue();

Completed in 257 milliseconds

1234567891011>>