You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.3 KiB
C++
35 lines
1.3 KiB
C++
//-----------------------------------------------------------------------------
|
|
#ifndef CommonGUIFunctionsH
|
|
#define CommonGUIFunctionsH CommonGUIFunctionsH
|
|
//-----------------------------------------------------------------------------
|
|
#include <mvIMPACT_CPP/mvIMPACT_acquire.h>
|
|
|
|
#include "wxIncludePrologue.h"
|
|
#include <wx/thread.h>
|
|
#include "wxIncludeEpilogue.h"
|
|
|
|
class wxWindow;
|
|
|
|
//=============================================================================
|
|
//================= Implementation UpdateDeviceListThread =====================
|
|
//=============================================================================
|
|
//------------------------------------------------------------------------------
|
|
class UpdateDeviceListThread : public wxThread
|
|
//------------------------------------------------------------------------------
|
|
{
|
|
const mvIMPACT::acquire::DeviceManager& devMgr_;
|
|
protected:
|
|
void* Entry( void )
|
|
{
|
|
devMgr_.updateDeviceList();
|
|
return 0;
|
|
}
|
|
public:
|
|
explicit UpdateDeviceListThread( const mvIMPACT::acquire::DeviceManager& devMgr ) : wxThread( wxTHREAD_JOINABLE ),
|
|
devMgr_( devMgr ) {}
|
|
};
|
|
|
|
void UpdateDeviceListWithProgressMessage( wxWindow* pParent, const mvIMPACT::acquire::DeviceManager& devMgr );
|
|
|
|
#endif // CommonGUIFunctionsH
|