/* * $Id: gen-slider.h,v 1.8 2012/03/20 21:59:30 tom Exp $ */ #ifndef CDKINCLUDES #ifndef CDK_H #define CDK_H 1 #ifdef __cplusplus extern "C" { #endif #ifndef CDK_H #define CDKINCLUDES #include #undef CDKINCLUDES #include #include #include #endif /* * Copyright 2004,2012 Thomas E. Dickey * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgment: * This product includes software developed by Thomas Dickey * and contributors. * 4. Neither the name of Thomas Dickey, nor the names of contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THOMAS DICKEY AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THOMAS DICKEY OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ /* * Define the CDK widget structure. */ struct S { CDKOBJS obj; WINDOW * parent; WINDOW * win; WINDOW * shadowWin; WINDOW * fieldWin; WINDOW * labelWin; int titleAdj; chtype * label; int labelLen; int boxHeight; int boxWidth; int fieldWidth; int fieldEdit; /* offset from right-margin of field */ chtype filler; low; high; inc; fastinc; current; #if int digits; #endif EExitType exitType; boolean shadow; }; typedef struct S CDK; /* * This creates a new pointer to a CDK - widget. */ CDK *newCDK ( CDKSCREEN * /* cdkscreen */, int /* xpos */, int /* ypos */, const char * /* title */, const char * /* label */, chtype /* fieldAttr */, int /* fieldWidth */, /* start */, /* low */, /* high */, /* inc */, /* fastInc */, #if int /* digits */, #endif boolean /* Box */, boolean /* shadow */); /* * This activates the widget. */ activateCDK ( CDK * /* widget */, chtype * /* actions */); /* * This injects a single character into the widget. */ #define injectCDK(obj,input) injectCDKObject(obj,input,) /* * This sets various attributes of the widget. */ void setCDK ( CDK * /* widget */, /* low */, /* high */, /* value */, boolean /* Box */); /* * These set/get the low and high values. */ void setCDKLowHigh ( CDK * /* widget */, /* low */, /* high */); getCDKLowValue ( CDK * /* widget */); getCDKHighValue ( CDK * /* widget */); /* * These set/get the digits. */ #if void setCDKDigits ( CDK * /* widget */, int /* digits */); int getCDKDigits ( CDK * /* widget */); #endif /* * These set/get the current value. */ void setCDKValue ( CDK * /* widget */, /* value */); getCDKValue ( CDK * /* widget */); /* * This sets the box attribute of the widget. */ void setCDKBox ( CDK * /* widget */, boolean /* Box */); boolean getCDKBox ( CDK * /* widget */); /* * These set the drawing characters of the widget. */ #define setCDKULChar(w,c) setULCharOf(w,c) #define setCDKURChar(w,c) setURCharOf(w,c) #define setCDKLLChar(w,c) setLLCharOf(w,c) #define setCDKLRChar(w,c) setLRCharOf(w,c) #define setCDKVerticalChar(w,c) setVTCharOf(w,c) #define setCDKHorizontalChar(w,c) setHZCharOf(w,c) #define setCDKBoxAttribute(w,c) setBXAttrOf(w,c) /* * This sets the background color of the widget. */ #define setCDKBackgroundColor(w,c) setCDKObjectBackgroundColor(ObjOf(w),c) /* * This sets the background attribute of the widget. */ #define setCDKBackgroundAttrib(w,c) setBKAttrOf(w,c) /* * This draws the widget on the screen. */ #define drawCDK(obj,Box) drawCDKObject(obj,Box) /* * This erases the widget from the screen. */ #define eraseCDK(obj) eraseCDKObject(obj) /* * This moves the widget to the given location on the screen. */ #define moveCDK(obj,xpos,ypos,relative,refresh) moveCDKObject(obj,xpos,ypos,relative,refresh) /* * This allows the user to interactively position the widget on the screen. */ #define positionCDK(widget) positionCDKObject(ObjOf(widget),widget->win) /* * This destroys the widget and associated memory. */ #define destroyCDK(obj) destroyCDKObject(obj) /* * These set the pre/post process callback functions. */ #define setCDKPreProcess(w,f,d) setCDKObjectPreProcess(ObjOf(w),f,d) #define setCDKPostProcess(w,f,d) setCDKObjectPostProcess(ObjOf(w),f,d) #ifdef __cplusplus } #endif #endif /* CDK_H */ #endif /* CDKINCLUDES */