taskbar.h
Go to the documentation of this file.00001 #ifndef __TASKBAR_H
00002 #define __TASKBAR_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #if MACHINE_IS_DR1000S || MACHINE_IS_DR1000SW
00033
00034 void taskbar_create();
00035
00036 void taskbar_enable(gboolean enabled);
00037
00038 void taskbar_update_locale();
00039
00040 void taskbar_add_task(int xid, const char* label);
00041
00042 void taskbar_remove_task(int xid);
00043
00044 void taskbar_rename_task(int xid, const char* label);
00045
00046 void taskbar_select_task(int xid);
00047
00048 #endif
00049
00050 void taskbar_select_folder();
00051
00052 void testing_taskbar_print();
00053
00054 #endif
00055