/usr/include/vdkb2/waitcursor.h is in vdkbuilder2 2.4.0-4.4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | /*
*/
#ifndef _wait_cursor_h
#define _wait_cursor_h
class WaitCursor
{
GdkCursor *cursor;
VDKForm* form;
public:
WaitCursor(VDKForm *form):form(form)
{
cursor = gdk_cursor_new (GDK_WATCH);
gdk_window_set_cursor (form->Window()->window, cursor);
gdk_cursor_destroy (cursor);
}
~WaitCursor()
{
cursor = gdk_cursor_new (GDK_LEFT_PTR);
gdk_window_set_cursor (form->Window()->window, cursor);
gdk_cursor_destroy (cursor);
}
};
#endif
|