games - backgammon - use defined names instead of magic numbers.
[dragonfly.git] / usr.sbin / installer / dfuife_curses / curses_bar.h
blob98ac598eb606781200394b7f8fdfe7c0efd89109
1 /*
2 * Copyright (c)2004 Cat's Eye Technologies. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
8 * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
11 * Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in
13 * the documentation and/or other materials provided with the
14 * distribution.
16 * Neither the name of Cat's Eye Technologies nor the names of its
17 * contributors may be used to endorse or promote products derived
18 * from this software without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31 * OF THE POSSIBILITY OF SUCH DAMAGE.
35 * curses_bar.h
36 * $Id: curses_bar.h,v 1.4 2005/02/08 06:03:21 cpressey Exp $
39 #ifndef __CURSES_BAR_H
40 #define __CURSES_BAR_H
42 #include <ncurses.h>
43 #include <panel.h>
45 struct curses_bar {
46 WINDOW *win;
47 PANEL *pan;
48 unsigned int x;
49 unsigned int y;
50 unsigned int width;
51 unsigned int height;
52 int colors;
55 #define CURSES_BAR_WIDEN 1
56 #define CURSES_BAR_BOTTOM 2
58 struct curses_bar *curses_bar_new(unsigned int, unsigned int,
59 unsigned int, unsigned int, int, int);
60 void curses_bar_free(struct curses_bar *);
61 void curses_bar_set_text(struct curses_bar *, const char *);
63 #endif /* !__CURSES_BAR_H */