File: buttonpixmaps.h

package info (click to toggle)
mpsql 2.1-2
  • links: PTS
  • area: non-free
  • in suites: potato
  • size: 3,528 kB
  • ctags: 4,886
  • sloc: ansic: 35,184; makefile: 3,761; sh: 44
file content (28 lines) | stat: -rw-r--r-- 1,005 bytes parent folder | download | duplicates (2)
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