OpenTTD
progress.h
Go to the documentation of this file.
1 /* $Id$ */
2 
3 /*
4  * This file is part of OpenTTD.
5  * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
6  * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
7  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
8  */
9 
12 #ifndef PROGRESS_H
13 #define PROGRESS_H
14 
15 #include <mutex>
16 
17 static const uint MODAL_PROGRESS_REDRAW_TIMEOUT = 200;
18 
23 static inline bool HasModalProgress()
24 {
25  extern bool _in_modal_progress;
26  return _in_modal_progress;
27 }
28 
33 static inline bool UseThreadedModelProgress()
34 {
35  extern bool _use_threaded_modal_progress;
37 }
38 
40 void SetModalProgress(bool state);
41 
42 extern std::mutex _modal_progress_work_mutex;
43 extern std::mutex _modal_progress_paint_mutex;
44 
45 #endif /* PROGRESS_H */
std::mutex _modal_progress_work_mutex
Rights for the performing work.
Definition: progress.cpp:23
void SetModalProgress(bool state)
Set the modal progress state.
Definition: progress.cpp:32
static const uint MODAL_PROGRESS_REDRAW_TIMEOUT
Timeout between redraws.
Definition: progress.h:17
static bool UseThreadedModelProgress()
Check if we can use a thread for modal progress.
Definition: progress.h:33
bool _use_threaded_modal_progress
Threading usable for modal progress?
Definition: progress.cpp:21
bool _in_modal_progress
Are we in a modal progress or not?
Definition: progress.cpp:18
bool IsFirstModalProgressLoop()
Check whether this is the first modal progress loop.
Definition: progress.cpp:43
static bool HasModalProgress()
Check if we are currently in a modal progress state.
Definition: progress.h:23
std::mutex _modal_progress_paint_mutex
Rights for the painting.
Definition: progress.cpp:25