OpenTTD
|
Functions for modal progress windows. More...
Go to the source code of this file.
Functions | |
void | SetModalProgress (bool state) |
Set the modal progress state. More... | |
bool | IsFirstModalProgressLoop () |
Check whether this is the first modal progress loop. More... | |
Variables | |
bool | _in_modal_progress = false |
Are we in a modal progress or not? | |
bool | _first_in_modal_loop = false |
ThreadMutex * | _modal_progress_work_mutex = ThreadMutex::New() |
Rights for the performing work. More... | |
ThreadMutex * | _modal_progress_paint_mutex = ThreadMutex::New() |
Rights for the painting. More... | |
Functions for modal progress windows.
Definition in file progress.cpp.
bool IsFirstModalProgressLoop | ( | ) |
Check whether this is the first modal progress loop.
Definition at line 41 of file progress.cpp.
Referenced by HasModalProgress().
void SetModalProgress | ( | bool | state | ) |
Set the modal progress state.
state | The new state; are we modal or not? |
Definition at line 30 of file progress.cpp.
References _in_modal_progress.
Referenced by DoScanNewGRFFiles(), GenerateWorld(), HasModalProgress(), and ScanNewGRFFiles().
ThreadMutex* _modal_progress_paint_mutex = ThreadMutex::New() |
Rights for the painting.
Definition at line 23 of file progress.cpp.
Referenced by GRFFileScanner::AddFile(), DoScanNewGRFFiles(), HasModalProgress(), ScanNewGRFFiles(), and WaitTillGeneratedWorld().
ThreadMutex* _modal_progress_work_mutex = ThreadMutex::New() |
Rights for the performing work.
Definition at line 21 of file progress.cpp.
Referenced by GRFFileScanner::AddFile(), DoScanNewGRFFiles(), HasModalProgress(), ScanNewGRFFiles(), and WaitTillGeneratedWorld().