home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 January
/
Chip_1997-01_cd.bin
/
ms95
/
disk22
/
dir09
/
f015410.re_
/
f015410.re
Wrap
Text File
|
1996-04-02
|
4KB
|
107 lines
/*----------------------------------------------------------------------+
| |
| Copyright (1995) Bentley Systems, Inc., All rights reserved. |
| |
| "MicroStation" is a registered trademark and "MDL" and "MicroCSL" |
| are trademarks of Bentley Systems, Inc. |
| |
| Limited permission is hereby granted to reproduce and modify this |
| copyrighted material provided that the resulting code is used only |
| in conjunction with Bentley Systems products under the terms of the |
| license agreement provided therein, and that this notice is retained |
| in its entirety in any such reproduction or modification. |
| |
+----------------------------------------------------------------------*/
/*----------------------------------------------------------------------+
| |
| $Logfile: J:/mdl/examples/listbox/listcolr.fdv $
| $Workfile: listcolr.fdf $
| $Revision: 1.1 $
| $Date: 29 Jun 1995 15:33:48 $
| |
+----------------------------------------------------------------------*/
#if !defined (__listcolrFDF__)
#define __listcolrFDF__
/*----------------------------------------------------------------------+
| |
| listcolr.fdf - listcolr public function definitions |
| |
+----------------------------------------------------------------------*/
/*----------------------------------------------------------------------+
| |
| Include Files |
| |
+----------------------------------------------------------------------*/
#if !defined (__dlogitemH__)
#include <dlogitem.h>
#endif
/*----------------------------------------------------------------------+
| |
| name listcolr_colorsDialogHook |
| |
| author BSI 09/92 |
| |
+----------------------------------------------------------------------*/
void listcolr_colorsDialogHook
(
DialogMessage *dmP /* => a ptr to a dialog message */
);
/*----------------------------------------------------------------------+
| |
| name listcolr_colorsToggleBtnHook |
| |
| author BSI 10/92 |
| |
+----------------------------------------------------------------------*/
void listcolr_colorsToggleBtnHook
(
DialogItemMessage *dimP /* => a ptr to a dialog item message */
);
/*----------------------------------------------------------------------+
| |
| name listcolr_handleRemap |
| |
| author BSI 10/92 |
| |
+----------------------------------------------------------------------*/
void listcolr_handleRemap
(
int screen, /* => screen number */
char *colortbl, /* => dgn or ref file's colortbl */
char *colormap, /* => new mapping of colortbl */
int fileNum /* => 0 = master ctbl, 1-255 = ref file ctbls */
);
/*----------------------------------------------------------------------+
| |
| name listcolr_initializeColorDescriptors |
| |
| author BSI 11/94 |
| |
+----------------------------------------------------------------------*/
int listcolr_initializeColorDescriptors
(
BSIColorPalette **palPP,
BSIColorDescr **colorsPP, /* <= color descr array to initialize */
int numColorDescrs /* => number of colors in the array */
);
/*----------------------------------------------------------------------+
| |
| name listcolr_coloredListBoxHook |
| |
| author BSI 05/95 |
| |
+----------------------------------------------------------------------*/
void listcolr_coloredListBoxHook
(
DialogItemMessage *dimP
);
#endif /* __listcolrFDF__ */