Home
last modified time | relevance | path

Searched refs:theApp (Results 1 – 25 of 1127) sorted by relevance

12345678910>>...46

/dports/emulators/vba/VisualBoyAdvance-1.7.2/src/win32/
H A DMainWndOptions.cpp128 theApp.autoFrameSkip = !theApp.autoFrameSkip; in OnOptionsFrameskipAutomatic()
225 theApp.vsync = !theApp.vsync; in OnOptionsVideoVsync()
324 theApp.winAccelMgr.UpdateMenu(theApp.menu); in OnOptionsVideoFullscreen()
384 theApp.winAccelMgr.UpdateMenu(theApp.menu); in OnOptionsVideoRendermethodGdi()
396 theApp.winAccelMgr.UpdateMenu(theApp.menu); in OnOptionsVideoRendermethodDirectdraw()
408 theApp.winAccelMgr.UpdateMenu(theApp.menu); in OnOptionsVideoRendermethodDirect3d()
556 if(theApp.skin && theApp.skinEnabled) { in OnOptionsVideoRenderoptionsSelectskin()
575 theApp.skinEnabled = !theApp.skinEnabled; in OnOptionsVideoRenderoptionsSkin()
653 theApp.autoIPS = !theApp.autoIPS; in OnOptionsEmulatorAutomaticallyipspatch()
938 theApp.useOldSync = !theApp.useOldSync; in OnOptionsSoundUseoldsynchronization()
[all …]
H A DGDIDisplay.cpp100 theApp.surfaceSizeX = theApp.sizeX; in initialize()
101 theApp.surfaceSizeY = theApp.sizeY; in initialize()
104 theApp.surfaceSizeX = theApp.sizeX * 2; in initialize()
105 theApp.surfaceSizeY = theApp.sizeY * 2; in initialize()
108 theApp.surfaceSizeX = theApp.sizeX * 3; in initialize()
109 theApp.surfaceSizeY = theApp.sizeY * 3; in initialize()
112 theApp.surfaceSizeX = theApp.sizeX * 4; in initialize()
113 theApp.surfaceSizeY = theApp.sizeY * 4; in initialize()
137 theApp.rect.right = theApp.sizeX; in initialize()
138 theApp.rect.bottom = theApp.sizeY; in initialize()
[all …]
H A DOpenGL.cpp125 theApp.surfaceSizeX = theApp.sizeX; in initialize()
126 theApp.surfaceSizeY = theApp.sizeY; in initialize()
129 theApp.surfaceSizeX = theApp.sizeX * 2; in initialize()
130 theApp.surfaceSizeY = theApp.sizeY * 2; in initialize()
133 theApp.surfaceSizeX = theApp.sizeX * 3; in initialize()
134 theApp.surfaceSizeY = theApp.sizeY * 3; in initialize()
137 theApp.surfaceSizeX = theApp.sizeX * 4; in initialize()
138 theApp.surfaceSizeY = theApp.sizeY * 4; in initialize()
168 theApp.rect.right = theApp.sizeX; in initialize()
169 theApp.rect.bottom = theApp.sizeY; in initialize()
[all …]
H A DMainWndTools.cpp97 pCmdUI->Enable(theApp.videoOption <= VIDEO_4X && theApp.cartridgeType == 0); in OnUpdateToolsIoviewer()
192 if(theApp.paused) in OnDebugNextframe()
193 theApp.paused = false; in OnDebugNextframe()
222 CPUInit(theApp.biosFileName, theApp.useBiosFile ? true : false); in OnToolsDebugGdb()
437 if(!theApp.movieFile) { in OnToolsRecordStartmovierecording()
471 fwrite(&theApp.movieFrame, 1, sizeof(int), theApp.movieFile); in OnToolsRecordStopmovierecording()
472 fwrite(&theApp.movieLastJoypad, 1, sizeof(u32), theApp.movieFile); in OnToolsRecordStopmovierecording()
575 if(emulating && theApp.emulator.emuReadMemState && theApp.rewindMemory && theApp.rewindCount) { in OnToolsRewind()
576 theApp.rewindPos = --theApp.rewindPos & 7; in OnToolsRewind()
577theApp.emulator.emuReadMemState(&theApp.rewindMemory[REWIND_SIZE*theApp.rewindPos], REWIND_SIZE); in OnToolsRewind()
[all …]
H A DDirectDraw.cpp170 theApp.surfaceSizeX = theApp.sizeX; in initialize()
171 theApp.surfaceSizeY = theApp.sizeY; in initialize()
174 theApp.surfaceSizeX = theApp.sizeX * 2; in initialize()
175 theApp.surfaceSizeY = theApp.sizeY * 2; in initialize()
178 theApp.surfaceSizeX = theApp.sizeX * 3; in initialize()
179 theApp.surfaceSizeY = theApp.sizeY * 3; in initialize()
182 theApp.surfaceSizeX = theApp.sizeX * 4; in initialize()
183 theApp.surfaceSizeY = theApp.sizeY * 4; in initialize()
207 theApp.rect.right = theApp.sizeX; in initialize()
208 theApp.rect.bottom = theApp.sizeY; in initialize()
[all …]
H A DMainWndFile.cpp51 theApp.paused = !theApp.paused; in OnFilePause()
53 if(theApp.paused) { in OnFilePause()
112 theApp.szFile = theApp.recentFiles[(nID&0xFFFF)-ID_FILE_MRU_FILE1]; in OnFileRecentFile()
132 theApp.recentFreeze = !theApp.recentFreeze; in OnFileRecentFreeze()
164 theApp.dir = ""; in OnFileOpengameboy()
169 theApp.szFile = ""; in OnFileOpengameboy()
179 theApp.dir = theApp.szFile.Left(dlg.m_ofn.nFileOffset); in OnFileOpengameboy()
180 if(theApp.dir.GetLength() > 3 && theApp.dir[theApp.dir.GetLength()-1] == '\\') in OnFileOpengameboy()
181 theApp.dir = theApp.dir.Left(theApp.dir.GetLength()-1); in OnFileOpengameboy()
633 theApp.menuToggle = !theApp.menuToggle; in OnFileTogglemenu()
[all …]
H A DDirect3D.cpp163 theApp.surfaceSizeX = theApp.sizeX; in initialize()
164 theApp.surfaceSizeY = theApp.sizeY; in initialize()
167 theApp.surfaceSizeX = theApp.sizeX * 2; in initialize()
168 theApp.surfaceSizeY = theApp.sizeY * 2; in initialize()
171 theApp.surfaceSizeX = theApp.sizeX * 3; in initialize()
172 theApp.surfaceSizeY = theApp.sizeY * 3; in initialize()
175 theApp.surfaceSizeX = theApp.sizeX * 4; in initialize()
176 theApp.surfaceSizeY = theApp.sizeY * 4; in initialize()
206 theApp.rect.right = theApp.sizeX; in initialize()
207 theApp.rect.bottom = theApp.sizeY; in initialize()
[all …]
H A DMainWnd.cpp452 theApp.filename = theApp.filename.Left(index); in FileRun()
460 theApp.dir = theApp.filename.Left(index-1); in FileRun()
574 theApp.addRecentFile(theApp.szFile); in FileRun()
576 theApp.updateWindowSize(theApp.videoOption); in FileRun()
580 if(theApp.autoHideMenu && theApp.videoOption > VIDEO_4X && theApp.menuToggle) in FileRun()
706theApp.display->resize(theApp.dest.right-theApp.dest.left, theApp.dest.bottom-theApp.dest.top); in OnSize()
899 theApp.winAccelMgr.UpdateMenu(theApp.menu); in OnContextMenu()
941 x = (theApp.dest.left + theApp.dest.right) / 2; in OnContextMenu()
942 y = (theApp.dest.top + theApp.dest.bottom) / 2; in OnContextMenu()
977 if(theApp.dir.GetLength() > 3 && theApp.dir[theApp.dir.GetLength()-1] == '\\') in fileOpenSelect()
[all …]
H A DMainWndCheats.cpp36 theApp.winCheckFullscreen(); in OnCheatsSearchforcheats()
37 if(theApp.cartridgeType == 0) { in OnCheatsSearchforcheats()
53 theApp.winCheckFullscreen(); in OnCheatsCheatlist()
54 if(theApp.cartridgeType == 0) { in OnCheatsCheatlist()
70 theApp.autoSaveLoadCheatList = !theApp.autoSaveLoadCheatList; in OnCheatsAutomaticsaveloadcheats()
80 theApp.winCheckFullscreen(); in OnCheatsLoadcheatlist()
87 buffer = theApp.filename.Right(theApp.filename.GetLength()-index-1); in OnCheatsLoadcheatlist()
89 buffer = theApp.filename; in OnCheatsLoadcheatlist()
119 theApp.winCheckFullscreen(); in OnCheatsSavecheatlist()
126 buffer = theApp.filename.Right(theApp.filename.GetLength()-index-1); in OnCheatsSavecheatlist()
[all …]
H A DVBA.cpp352 VBA theApp; variable
813 if(theApp.aviRecording && !theApp.painting) { in systemDrawScreen()
847 theApp.aviRecorder->Open(theApp.aviRecordName); in systemDrawScreen()
860 theApp.ifbFunction(pix+theApp.filterWidth*2+4, theApp.filterWidth*2+4, in systemDrawScreen()
863 theApp.ifbFunction(pix+theApp.filterWidth*4+4, theApp.filterWidth*4+4, in systemDrawScreen()
909 theApp.showRenderedFrames = theApp.renderedFrames; in systemShowSpeed()
928 if(theApp.movieRecording || theApp.moviePlaying) in systemFrame()
935 if(!theApp.wasPaused && theApp.autoFrameSkip && !theApp.throttle) { in system10Frames()
963 if(!theApp.wasPaused && theApp.throttle) { in system10Frames()
977 if(++theApp.rewindCounter >= (theApp.rewindTimer)) { in system10Frames()
[all …]
H A DBugReport.cpp140 theApp.winCheckFullscreen(); in createReport()
157 AppendFormat(report, "File : %s\r\n", theApp.szFile); in createReport()
160 if(theApp.cartridgeType == 0) { in createReport()
177 u32 *end = (u32 *)((char *)rom+theApp.romSize); in createReport()
209 } else if(theApp.cartridgeType == 1) { in createReport()
216 AppendFormat(report, "Using BIOS : %d\r\n", theApp.useBiosFile); in createReport()
220 AppendFormat(report, "Throttle : %d\r\n", theApp.throttle); in createReport()
231 theApp.winSaveType, cpuSaveType); in createReport()
233 theApp.winFlashSize, flashSize); in createReport()
241 AppendFormat(report, "Old Sync : %d\r\n", theApp.useOldSync); in createReport()
[all …]
H A DDirectSound.cpp67 if(theApp.aviRecorder != NULL) { in ~DirectSound()
68 delete theApp.aviRecorder; in ~DirectSound()
69 theApp.aviRecorder = NULL; in ~DirectSound()
70 theApp.aviFrameNumber = 0; in ~DirectSound()
73 if(theApp.soundRecording) { in ~DirectSound()
214 if(!theApp.useOldSync) { in init()
286 if(theApp.soundRecording) { in write()
292 if(theApp.soundRecorder->Open(theApp.soundRecordName)) in write()
297 if(theApp.soundRecorder) { in write()
302 if(theApp.aviRecording) { in write()
[all …]
/dports/net-p2p/amule/aMule-2.3.3/src/
H A DGuiEvents.cpp78 if (theApp->amuledlg) { in HandleNotification()
229 if (theApp->amuledlg->m_serverwnd && theApp->amuledlg->m_serverwnd->serverlistctrl) { in ServerRefresh()
415 if (theApp->amuledlg->m_serverwnd && theApp->amuledlg->m_serverwnd->serverlistctrl) { in ServerAdd()
424 if (theApp->amuledlg->m_serverwnd && theApp->amuledlg->m_serverwnd->serverlistctrl) { in ServerRemove()
432 if (theApp->serverlist) { in ServerRemoveDead()
440 if (theApp->amuledlg->m_serverwnd && theApp->amuledlg->m_serverwnd->serverlistctrl) { in ServerRemoveAll()
449 if (theApp->amuledlg->m_serverwnd && theApp->amuledlg->m_serverwnd->serverlistctrl) { in ServerHighlight()
458 if (theApp->amuledlg->m_serverwnd && theApp->amuledlg->m_serverwnd->serverlistctrl) { in ServerFreeze()
467 if (theApp->amuledlg->m_serverwnd && theApp->amuledlg->m_serverwnd->serverlistctrl) { in ServerThaw()
524 if (theApp->amuledlg && theApp->amuledlg->m_searchwnd) { in Search_Update_Sources()
[all …]
H A DServerWnd.cpp133 theApp->serverlist->SaveServerMet(); in OnBnClickedAddserver()
146 theApp->GetLog(true); // Reset it. in OnBnClickedResetLog()
152 theApp->GetServerLog(true); // Reset it in OnBnClickedResetServerLog()
163 if (theApp->IsConnectedED2K()) { in UpdateED2KInfo()
178 if (theApp->serverconnect->IsLowID()) { in UpdateED2KInfo()
206 if (theApp->IsKadRunning()) { in UpdateKadInfo()
214 if (theApp->IsConnectedKad()) { in UpdateKadInfo()
228 switch ( theApp->GetBuddyStatus() ) in UpdateKadInfo()
231 if (!theApp->IsFirewalledKad()) { in UpdateKadInfo()
280 if (theApp->amuledlg) { in OnSashPositionChanged()
[all …]
/dports/net-p2p/amule-devel/aMule-SVN-r11065/src/
H A DGuiEvents.cpp78 if (theApp->amuledlg) { in HandleNotification()
229 if (theApp->amuledlg->m_serverwnd && theApp->amuledlg->m_serverwnd->serverlistctrl) { in ServerRefresh()
415 if (theApp->amuledlg->m_serverwnd && theApp->amuledlg->m_serverwnd->serverlistctrl) { in ServerAdd()
424 if (theApp->amuledlg->m_serverwnd && theApp->amuledlg->m_serverwnd->serverlistctrl) { in ServerRemove()
432 if (theApp->serverlist) { in ServerRemoveDead()
440 if (theApp->amuledlg->m_serverwnd && theApp->amuledlg->m_serverwnd->serverlistctrl) { in ServerRemoveAll()
449 if (theApp->amuledlg->m_serverwnd && theApp->amuledlg->m_serverwnd->serverlistctrl) { in ServerHighlight()
458 if (theApp->amuledlg->m_serverwnd && theApp->amuledlg->m_serverwnd->serverlistctrl) { in ServerFreeze()
467 if (theApp->amuledlg->m_serverwnd && theApp->amuledlg->m_serverwnd->serverlistctrl) { in ServerThaw()
524 if (theApp->amuledlg && theApp->amuledlg->m_searchwnd) { in Search_Update_Sources()
[all …]
H A DServerWnd.cpp133 theApp->serverlist->SaveServerMet(); in OnBnClickedAddserver()
146 theApp->GetLog(true); // Reset it. in OnBnClickedResetLog()
152 theApp->GetServerLog(true); // Reset it in OnBnClickedResetServerLog()
163 if (theApp->IsConnectedED2K()) { in UpdateED2KInfo()
178 if (theApp->serverconnect->IsLowID()) { in UpdateED2KInfo()
206 if (theApp->IsKadRunning()) { in UpdateKadInfo()
214 if (theApp->IsConnectedKad()) { in UpdateKadInfo()
228 switch ( theApp->GetBuddyStatus() ) in UpdateKadInfo()
231 if (!theApp->IsFirewalledKad()) { in UpdateKadInfo()
280 if (theApp->amuledlg) { in OnSashPositionChanged()
[all …]
/dports/games/holotz-castle/holotz-castle-1.3.14-src/src/
H A DHCed.cpp2718 theApp->imgMouse = &theApp->imgMenu[theApp->state]; in OnContFloor()
2724 theApp->imgMouse = &theApp->imgMenu[theApp->state]; in OnLadder()
2730 theApp->imgMouse = &theApp->imgMenu[theApp->state]; in OnBar()
2736 theApp->imgMouse = &theApp->imgMenu[theApp->state]; in OnBreak()
2742 theApp->imgMouse = &theApp->imgMenu[theApp->state]; in OnObject()
2748 theApp->imgMouse = &theApp->imgMenu[theApp->state]; in OnRope()
2754 theApp->imgMouse = &theApp->imgMenu[theApp->state]; in OnStart()
2760 theApp->imgMouse = &theApp->imgMenu[theApp->state]; in OnExit()
2766 theApp->imgMouse = &theApp->imgMenu[theApp->state]; in OnEnemy()
2773 theApp->imgMouse = &theApp->imgMenu[theApp->state]; in OnSave()
[all …]
/dports/emulators/visualboyadvance-m/visualboyadvance-m-VBA-M_Beta_2/src/win32/
H A DMainWndTools.cpp296 if(theApp.soundRecorder) { in OnOptionsSoundStoprecording()
349 if( theApp.aviRecorder ) { in OnToolsRecordStartavirecording()
350 delete theApp.aviRecorder; in OnToolsRecordStartavirecording()
351 theApp.aviRecorder = NULL; in OnToolsRecordStartavirecording()
356 ret = theApp.aviRecorder->CreateAVIFile( theApp.aviRecordName ); in OnToolsRecordStartavirecording()
359 delete theApp.aviRecorder; in OnToolsRecordStartavirecording()
406 if( theApp.aviRecorder ) { in OnToolsRecordStopavirecording()
454 if(!theApp.movieFile) { in OnToolsRecordStartmovierecording()
540 if(!theApp.movieFile) { in OnToolsPlayStartmovieplaying()
561 theApp.movieReadNext(); in OnToolsPlayStartmovieplaying()
[all …]
H A DMainWndOptions.cpp243 if( theApp.display ) { in OnOptionsVideoVsync()
312 theApp.winAccelMgr.UpdateMenu(theApp.menu); in OnOptionsVideoFullscreen()
432 theApp.winAccelMgr.UpdateMenu(theApp.menu); in OnOptionsVideoRendermethodDirect3d()
450 theApp.winAccelMgr.UpdateMenu(theApp.menu); in OnOptionsVideoRendermethodOpengl()
482 theApp.d3dFilter = 0; in OnOptionsVideoRenderoptionsD3dnofilter()
484 theApp.display->setOption( _T("d3dFilter"), theApp.d3dFilter ); in OnOptionsVideoRenderoptionsD3dnofilter()
504 theApp.display->setOption( _T("d3dFilter"), theApp.d3dFilter ); in OnOptionsVideoRenderoptionsD3dbilinear()
1386 theApp.winAccelMgr.UpdateMenu(theApp.menu); in OnOptionsLanguageSystem()
1397 theApp.winAccelMgr.UpdateMenu(theApp.menu); in OnOptionsLanguageEnglish()
1408 theApp.winAccelMgr.UpdateMenu(theApp.menu); in OnOptionsLanguageOther()
[all …]
H A DJoypad.cpp42 txtKeys+=theApp.input->getKeyName(Keys.GetNext(p)); in GetKeyListName()
167 theApp.input->checkKeys(); in OnOk()
184 theApp.input->checkDevices(); in OnTimer()
324 theApp.input->checkKeys(); in OnOk()
341 CopyKeys(up.m_Keys, theApp.input->joypaddata[MOTION(KEY_UP)]); in OnInitDialog()
361 theApp.input->checkDevices(); in OnTimer()
370 AssignKey(theApp.input->joypaddata[MOTION(KEY_LEFT)],key); in assignKey()
373 AssignKey(theApp.input->joypaddata[MOTION(KEY_RIGHT)],key); in assignKey()
376 AssignKey(theApp.input->joypaddata[MOTION(KEY_UP)],key); in assignKey()
379 AssignKey(theApp.input->joypaddata[MOTION(KEY_DOWN)],key); in assignKey()
[all …]
H A DMainWndFile.cpp121 theApp.szFile = theApp.recentFiles[(nID&0xFFFF)-ID_FILE_MRU_FILE1]; in OnFileRecentFile()
178 buffer = theApp.filename.Right(theApp.filename.GetLength()-index-1); in OnFileLoad()
235 buffer = theApp.filename.Right(theApp.filename.GetLength()-index-1); in OnFileLoadSlot()
283 buffer = theApp.filename.Right(theApp.filename.GetLength()-index-1); in OnFileSave()
335 buffer = theApp.filename.Right(theApp.filename.GetLength()-index-1); in OnFileSaveSlot()
496 name = theApp.filename.Right(theApp.filename.GetLength()-index-1); in OnFileExportBatteryfile()
563 name = theApp.filename.Right(theApp.filename.GetLength()-index-1); in OnFileExportGamesharksnapshot()
606 name = theApp.filename.Right(theApp.filename.GetLength()-index-1); in OnFileScreencapture()
688 theApp.updateWindowSize( theApp.lastFullscreen ); in OnFileTogglemenu()
691 theApp.updateWindowSize( theApp.lastWindowed ); in OnFileTogglemenu()
[all …]
H A DMainWnd.cpp444 theApp.filename = theApp.filename.Left(index); in FileRun()
469 theApp.dir = theApp.filename.Left(index-1); in FileRun()
603 theApp.addRecentFile(theApp.szFile); in FileRun()
783theApp.display->resize(theApp.dest.right-theApp.dest.left, theApp.dest.bottom-theApp.dest.top); in OnSize()
812 name = theApp.filename.Right(theApp.filename.GetLength()-index-1); in winSaveCheatListDefault()
854 name = theApp.filename.Right(theApp.filename.GetLength()-index-1); in winLoadCheatListDefault()
1088 theApp.dir = theApp.szFile.Left( dlg.m_ofn.nFileOffset ); in fileOpenSelect()
1089 if( (theApp.dir.GetLength() > 3) && (theApp.dir[theApp.dir.GetLength()-1] == _T('\\')) ) { in fileOpenSelect()
1090 theApp.dir = theApp.dir.Left( theApp.dir.GetLength() - 1 ); in fileOpenSelect()
1186 name = theApp.filename.Right(theApp.filename.GetLength()-index-1); in screenCapture()
[all …]
H A DOpenGL.cpp262 theApp.rect.left = 0; in initialize()
263 theApp.rect.top = 0; in initialize()
267 theApp.dest.left = 0; in initialize()
268 theApp.dest.top = 0; in initialize()
285 int winSizeX = theApp.dest.right - theApp.dest.left; in initialize()
286 int winSizeY = theApp.dest.bottom - theApp.dest.top; in initialize()
357 theApp.updateFilter(); in initialize()
358 theApp.updateIFB(); in initialize()
389 (u8*)theApp.delta, in render()
644 initializeMatrices( theApp.dest.right-theApp.dest.left, theApp.dest.bottom-theApp.dest.top ); in setOption()
[all …]
H A DBugReport.cpp140 theApp.winCheckFullscreen(); in createReport()
153 AppendFormat(report, "File : %s\r\n", theApp.szFile); in createReport()
156 if(theApp.cartridgeType == 0) { in createReport()
173 u32 *end = (u32 *)((char *)rom+theApp.romSize); in createReport()
205 } else if(theApp.cartridgeType == 1) { in createReport()
212 AppendFormat(report, "Using BIOS : %d\r\n", theApp.useBiosFile); in createReport()
215 AppendFormat(report, "Throttle : %d\r\n", theApp.throttle); in createReport()
227 theApp.winSaveType, cpuSaveType); in createReport()
229 theApp.winFlashSize, flashSize); in createReport()
237 AppendFormat(report, "Old Sync : %d\r\n", theApp.useOldSync); in createReport()
[all …]
/dports/japanese/skkinput3/skkinput-3.0.6/
H A Dmain.c56 static SkkinputApp theApp ; variable
182 return theApp.m_pLispMgr ; in skkinputApp_GetLispMgr()
235 theApp.m_nProtocol = 0 ; in skkinputApp_initInstance()
252 theApp.m_nProtocol ++ ; in skkinputApp_initInstance()
266 theApp.m_nProtocol ++ ; in skkinputApp_initInstance()
295 theApp.m_nProtocol = 0 ; in skkinputApp_exitInstance()
297 theApp.m_pLM = NULL ; in skkinputApp_exitInstance()
391 theApp.m_nProtocol -- ; in skkinputApp_onProtocolDestroy()
397 theApp.m_nProtocol -- ; in skkinputApp_onProtocolDestroy()
419 theApp.m_pLM != NULL) { in skkinputApp_onXIoError()
[all …]

12345678910>>...46