1 /**********
2 *
3 * Copyright (c) 2003, Division of Imaging Science and Biomedical Engineering,
4 * University of Manchester, UK. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without modification,
7 * are permitted provided that the following conditions are met:
8 *
9 * . Redistributions of source code must retain the above copyright notice,
10 * this list of conditions and the following disclaimer.
11 *
12 * . Redistributions in binary form must reproduce the above copyright notice,
13 * this list of conditions and the following disclaimer in the documentation
14 * and/or other materials provided with the distribution.
15 *
16 * . Neither the name of the University of Manchester nor the names of its
17 * contributors may be used to endorse or promote products derived from this
18 * software without specific prior written permission.
19 *
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
32 *
33 **********
34 *
35 * Program : TINA
36 * File :
37 * Date : $Date: 2012/08/02 11:20 $
38 * Version : $Revision: 1.3 $
39 * CVS Id :
40 *
41 * Author : Legacy TINA
42 *
43 * Notes : HR modified
44 *
45 *********
46 */
47
48 #ifndef TINATOOL_GPHX_NULL_CMAP_HDR
49 #define TINATOOL_GPHX_NULL_CMAP_HDR
50
51 #include <tinatool/gphx/null/gphx_NullDef.h>
52 #include <tinatool/draw/draw_TvDef.h>
53
54 #ifdef __cplusplus
55 extern "C" {
56 #endif /* __cplusplus */
57
58 int big_endian(); /* HR added */
59 void cmap_create(Cmap_data * cmap_data);
60 void *cmap_data_cmap_get(Cmap_data * cmap_data);
61 void cmap_data_cmap_set(Cmap_data * cmap_data, Colormap cmap);
62 int cmap_data_cmap_ncells_get(Cmap_data * cmap_data);
63 Bool cmap_data_find_or_create(Tv *tv, Cmap_data *tv_screen_cmap_data, int ndefault_colors); /* HR renamed */
64 void cmap_data_default_color_fill(Cmap_data * cmap_data, int ndefault_colors);
65 void cmap_query_colors(Cmap_data * cmap_data, Tina_color * tina_colors, int base, int ncolors);
66 void cmap_store_colors(Cmap_data * cmap_data, Tina_color * tina_colors, int base, int ncolors);
67 void named_colors_rgbs_get(Cmap_data * cmap_data, char **color_names, int ncolors, Rgb * rgbs);
68 Cmap_data_visible *tv_screen_cmap_create(void *tv_screen_void, int ndefault_colors);
69 void tv_screen_cmap_find_and_install(Tv * tv, Tv_screen * tv_screen);
70 void tv_screen_cmap_install(Tv_screen * tv_screen, Colormap cmap);
71 int tv_screen_cmap_ncells_get(Tv_screen * tv_screen);
72
73 #ifdef __cplusplus
74 }
75 #endif /* __cplusplus */
76
77 #endif /* TINATOOL_GPHX_NULL_CMAP_HDR */
78
79
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.