• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/

Lines Matching refs:theApp

71 wxDialog(theApp->amuledlg, -1, _("Connect to remote amule"), wxDefaultPosition)
239 // Get theApp
240 theApp = &wxGetApp();
581 theApp->glob_prefs->AddCat(cat);
588 theApp->glob_prefs->AddCat(cat);
591 theApp->AddPendingEvent(event);
628 if (catTag && pathTag && catTag->GetInt() < theApp->glob_prefs->GetCatCount()) {
630 Category_Struct* cs = theApp->glob_prefs->GetCategory(cat);
635 theApp->amuledlg->m_transferwnd->UpdateCategory(cat);
636 theApp->amuledlg->m_transferwnd->downloadlistctrl->Refresh();
747 theApp->m_ConnState = 0;
750 theApp->m_clientID = tag->GetClientId();
755 server = theApp->serverlist->GetByID(srvtag->GetInt());
757 theApp->amuledlg->m_serverwnd->serverlistctrl->HighlightServer(server, true);
761 theApp->m_ConnState |= CONNECTED_ED2K;
763 theApp->amuledlg->m_serverwnd->serverlistctrl->HighlightServer(m_CurrServer, false);
769 theApp->m_ConnState |= CONNECTED_KAD_FIREWALLED;
771 theApp->m_ConnState |= CONNECTED_KAD_OK;
775 theApp->m_ConnState |= CONNECTED_KAD_NOT;
779 theApp->amuledlg->ShowConnectionState();
876 theApp->amuledlg->m_serverwnd->serverlistctrl->RemoveServer(srv.get());
905 theApp->amuledlg->m_serverwnd->serverlistctrl->RefreshServer(server);
999 if (theApp->sharedfiles->count(id)) {
1000 theApp->amuledlg->m_sharedfileswnd->sharedfilesctrl->RemoveFile(file);
1001 theApp->sharedfiles->erase(id);
1003 if (theApp->downloadqueue->count(id)) {
1004 theApp->amuledlg->m_transferwnd->downloadlistctrl->RemoveFile((CPartFile *) file);
1005 theApp->downloadqueue->erase(id);
1065 theApp->amuledlg->m_sharedfileswnd->sharedfilesctrl->UpdateItem(file);
1096 theApp->clientlist->ProcessUpdate(curTag, NULL, EC_TAG_CLIENT);
1098 theApp->serverlist->ProcessUpdate(curTag, NULL, EC_TAG_SERVER);
1100 theApp->friendlist->ProcessUpdate(curTag, NULL, EC_TAG_FRIEND);
1121 (*theApp->downloadqueue)[id] = file;
1122 theApp->amuledlg->m_transferwnd->downloadlistctrl->AddFile(file);
1127 (*theApp->sharedfiles)[id] = newFile;
1129 theApp->amuledlg->m_sharedfileswnd->sharedfilesctrl->ShowFile(newFile);
1138 theApp->amuledlg->m_sharedfileswnd->sharedfilesctrl->ShowFileList();
1266 return credits->GetScoreRatio(GetIP(), theApp->CryptoAvailable());
1300 theApp->m_allUploadingKnownFile->RemoveUploadingClient(client); // in case it vanished directly while uploading
1376 theApp->m_allUploadingKnownFile->AddUploadingClient(client);
1378 theApp->m_allUploadingKnownFile->RemoveUploadingClient(client);
1429 CKnownFile * kf = theApp->knownfiles->GetByID(fileID);
1475 CKnownFile * kf = theApp->knownfiles->GetByID(fileID);
1671 CClientRef * src = theApp->clientlist->GetByID(id);
1684 CClientRef * src = theApp->clientlist->GetByID(id);
1692 theApp->amuledlg->m_transferwnd->downloadlistctrl->UpdateItem(file);
1696 if (file->IsShared() && !theApp->sharedfiles->count(file->ECID())) {
1697 (*theApp->sharedfiles)[file->ECID()] = file;
1698 theApp->amuledlg->m_sharedfileswnd->sharedfilesctrl->ShowFile(file);
1823 CClientRef * client = theApp->clientlist->GetByID(clientID);
1985 m_searchID = theApp->searchlist->m_curr_search;
1988 CSearchFile * parent = theApp->searchlist->GetByID(parentID);
2014 theApp->amuledlg->m_searchwnd->AddResult(file);
2044 if (theApp->amuledlg && theApp->amuledlg->m_searchwnd) {
2045 theApp->amuledlg->m_searchwnd->UpdateResult(file);
2089 theApp->amuledlg->ShowTransferRate();
2090 theApp->ShowUserCount(); // maybe there should be a check if a usercount changed ?
2092 theApp->serverconnect->HandlePacket(packet);
2099 theApp->friendlist->RequestSharedFileList(ref);
2112 theApp->m_connect->SendPacket(&req);
2212 theApp->amuledlg->m_statisticswnd->RebuildStatTreeRemote(treeRoot);
2213 theApp->amuledlg->m_statisticswnd->ShowStatistics();
2217 CamuleRemoteGuiApp *theApp;