Exemplo n.º 1
0
void CMod_eaterApp::start()
{
    superStart();
    DWORD threadId;

    toolThreadShouldStop = 0;
    toolThreadHandle     = ::CreateThread(NULL, 0, toolThreadProc, m_configData, 0, &threadId);
    m_started            = 1;
}
Exemplo n.º 2
0
void CMod_SellerApp::start() {	
	superStart();
	if (m_configDialog) 	{
		m_configDialog->disableControls();
		m_configDialog->activateEnableButton(true);
	}
	
	DWORD threadId;
	
	toolThreadShouldStop=0;
	toolThreadHandle =  ::CreateThread(NULL,0,toolThreadProc,m_configData,0,&threadId);				
	m_started=1;
}
Exemplo n.º 3
0
void NBSideBar::updateSideBar() {

	if ( not NBDeviceManager::allDrives().count() )
		devicesEntry->hide();

	if ( not NBBookmarkInfo::allBookmarks().count() )
		bookmarksEntry->hide();

	QSettings catalogs( "NewBreeze", "Catalogs" );
	int catalogCount = 0;
	Q_FOREACH( QString key, catalogs.allKeys() )
		catalogCount += catalogs.value( key ).toStringList().count();
	if ( not catalogCount )
		catalogsEntry->hide();

	QSettings superStart( "NewBreeze", "SuperStart" );
	superStart.beginGroup( "Files" );
	if ( not superStart.childKeys().count() )
		quickFilesEntry->hide();
};
Exemplo n.º 4
0
void CMod_showmapApp::start()
{
    superStart();
}