00001 #ifndef __BITMAPS_H
00002 #define __BITMAPS_H
00003
00004
00005
00006 static const QCOORD u_arrow[]={-1,-3, 0,-3, -2,-2, 1,-2, -3,-1, 2,-1, -4,0, 3,0, -4,1, 3,1};
00007 static const QCOORD d_arrow[]={-4,-2, 3,-2, -4,-1, 3,-1, -3,0, 2,0, -2,1, 1,1, -1,2, 0,2};
00008 static const QCOORD l_arrow[]={-3,-1, -3,0, -2,-2, -2,1, -1,-3, -1,2, 0,-4, 0,3, 1,-4, 1,3};
00009 static const QCOORD r_arrow[]={-2,-4, -2,3, -1,-4, -1,3, 0,-3, 0,2, 1,-2, 1,1, 2,-1, 2,0};
00010
00011 static const QCOORD keramik_combo_arrow[] =
00012 {-4,-5, 4, -5,
00013 -2 ,-2, 2, -2,
00014 -2 ,-1, 2, -1,
00015 -2 ,0, 2, 0,
00016 -4, 1, 4, 1,
00017 -3, 2, 3, 2,
00018 -2 , 3, 2, 3,
00019 -1 , 4, 1, 4,
00020 0 , 5, 0, 5
00021 };
00022
00023
00024 static const QCOORD keramik_up_arrow[] =
00025 {
00026 0, -4, 0, -4,
00027 -1, -3, 1, -3,
00028 -2, -2, 2, -2,
00029 -3, -1, 3, -1,
00030 -4, 0, 4, 0,
00031 -2, 1, 2, 1,
00032 -2, 2, 2, 2,
00033 -2, 3, 2, 3,
00034 -2, 4, 2, 4
00035 };
00036
00037 static const QCOORD keramik_down_arrow[] =
00038 {
00039 0, 4, 0, 4,
00040 -1, 3, 1, 3,
00041 -2, 2, 2, 2,
00042 -3, 1, 3, 1,
00043 -4, 0, 4, 0,
00044 -2, -1, 2, -1,
00045 -2, -2, 2, -2,
00046 -2, -3, 2, -3,
00047 -2, -4, 2, -4
00048 };
00049
00050
00051 static const QCOORD keramik_right_arrow[] =
00052 {
00053 4, 0, 4, 0,
00054 3, -1, 3, 1,
00055 2, -2, 2, 2,
00056 1, -3, 1, 3,
00057 0, -4, 0, 4,
00058 -1, -2, -1, 2,
00059 -2, -2, -2, 2,
00060 -3, -2, -3, 2,
00061 -4, -2, -4, 2
00062 };
00063
00064 static const QCOORD keramik_left_arrow[] =
00065 {
00066 -4, 0, -4, 0,
00067 -3, -1, -3, 1,
00068 -2, -2, -2, 2,
00069 -1, -3, -1, 3,
00070 0, -4, 0, 4,
00071 1, -2, 1, 2,
00072 2, -2, 2, 2,
00073 3, -2, 3, 2,
00074 4, -2, 4, 2
00075 };
00076
00077
00078
00079 #define QCOORDARRLEN(x) sizeof(x)/(sizeof(QCOORD)*2)
00080
00081
00082
00083 #endif