mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=5658
This commit is contained in:
parent
71c9615182
commit
179bdec4d7
|
@ -73,15 +73,19 @@ void app_debug_msg (const char *fmt, ...);
|
||||||
|
|
||||||
// This callback is invoked when a user presses a key.
|
// This callback is invoked when a user presses a key.
|
||||||
//
|
//
|
||||||
void keyboardD(unsigned char /*key*/, int /*x*/, int /*y*/) {
|
void keyboardD(unsigned char key, int /*x*/, int /*y*/) {
|
||||||
if (current_graphics_mode == MODE_FULLSCREEN) {
|
if (current_graphics_mode == MODE_FULLSCREEN) {
|
||||||
set_mode(MODE_HIDE_GRAPHICS);
|
set_mode(MODE_HIDE_GRAPHICS);
|
||||||
|
} else {
|
||||||
|
boinc_app_key_press((int) key, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void keyboardU(unsigned char /*key*/, int /*x*/, int /*y*/) {
|
void keyboardU(unsigned char key, int /*x*/, int /*y*/) {
|
||||||
if (current_graphics_mode == MODE_FULLSCREEN) {
|
if (current_graphics_mode == MODE_FULLSCREEN) {
|
||||||
set_mode(MODE_HIDE_GRAPHICS);
|
set_mode(MODE_HIDE_GRAPHICS);
|
||||||
|
} else {
|
||||||
|
boinc_app_key_press((int) key, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -25937,3 +25937,9 @@ David 13 Mar 2005
|
||||||
|
|
||||||
David 13 Mar 2005
|
David 13 Mar 2005
|
||||||
- db_dump: name archive dirs X_YYYY_mm_dd_hh_mm_ss
|
- db_dump: name archive dirs X_YYYY_mm_dd_hh_mm_ss
|
||||||
|
|
||||||
|
David 14 Mar 2005
|
||||||
|
- API: implement keyboard handling in X11 (from Eric Myers)
|
||||||
|
|
||||||
|
api/
|
||||||
|
x_opengl.C
|
||||||
|
|
|
@ -29,7 +29,7 @@ The project directory contains all files (inputs,
|
||||||
outputs, executables) related to the project.
|
outputs, executables) related to the project.
|
||||||
<li>
|
<li>
|
||||||
<b>slots</b>: this directory contains one subdirectory for each
|
<b>slots</b>: this directory contains one subdirectory for each
|
||||||
CPU 'slot' (normally there are as many slots as the host has CPUs).
|
result in progress.
|
||||||
The subdirectories are named 0, 1, ... N-1.
|
The subdirectories are named 0, 1, ... N-1.
|
||||||
</ul>
|
</ul>
|
||||||
<p>
|
<p>
|
||||||
|
|
Loading…
Reference in New Issue