Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of SimpleGUI by
SpinnerDialog.cpp
00001 #include "SpinnerDialog.h" 00002 SpinnerDialog::SpinnerDialog(GraphicsContext *context) : OKCancelDialog(context) 00003 { 00004 00005 // Now add a Spinner 00006 _spinner = new SpinnerWidget(context); 00007 _spinner->setLocation(0,0); 00008 attach(_spinner); 00009 } 00010 00011 SpinnerWidget *SpinnerDialog::getSpinner() 00012 { 00013 return _spinner; 00014 }
Generated on Tue Jul 12 2022 22:27:14 by
