1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
/************************************************************************/
/* File : buttonpixmaps.h */
/* Purpose: pixmap header for help button bar */
/* By : Keith R. Davis */
/* Date : 9/9/95 */
/* Notes : Copyright(c) 1996-98 Mutiny Bay Software */
/************************************************************************/
#ifndef _BUTTON_PIXMAPS_H
#define _BUTTON_PIXMAPS_H
#ifdef COLOR_PIXMAPS
#include "../pixmaps/help/color/close.xpm"
#include "../pixmaps/help/color/index.xpm"
#include "../pixmaps/help/color/history.xpm"
#include "../pixmaps/help/color/back.xpm"
#include "../pixmaps/help/color/up.xpm"
#include "../pixmaps/help/color/down.xpm"
#else
#include "../pixmaps/help/bw/close.xpm"
#include "../pixmaps/help/bw/index.xpm"
#include "../pixmaps/help/bw/history.xpm"
#include "../pixmaps/help/bw/back.xpm"
#include "../pixmaps/help/bw/up.xpm"
#include "../pixmaps/help/bw/down.xpm"
#endif
#endif
|