00001
00002
00003
00004 #ifndef BROWSERGFX_H
00005 #define BROWSERGFX_H
00006
00007 #ifndef VGFX_H
00008 #include "vGfx.h"
00009 #endif
00010
00011 void vgBarbedHorizontalLine(struct vGfx *vg, int x, int y,
00012 int width, int barbHeight, int barbSpacing, int barbDir, Color color,
00013 boolean needDrawMiddle);
00014
00015
00016
00017
00018 void vgDrawRulerBumpText(struct vGfx *vg, int xOff, int yOff,
00019 int height, int width,
00020 Color color, MgFont *font,
00021 int startNum, int range, int bumpX, int bumpY);
00022
00023
00024
00025 void vgDrawRuler(struct vGfx *vg, int xOff, int yOff, int height, int width,
00026 Color color, MgFont *font,
00027 int startNum, int range);
00028
00029
00030
00031 void vgNextItemButton(struct vGfx *vg, int x, int y, int w, int h,
00032 Color color, Color bgColor, boolean nextItem);
00033
00034
00035
00036
00037 #endif