tcbgraph.h

Go to the documentation of this file.
00001 /**********************************************************************
00002  *<
00003     FILE: TCBGraph.h
00004 
00005     DESCRIPTION:  UI gadget to display TCB graph
00006 
00007     CREATED BY: Rolf Berteig
00008 
00009     HISTORY: created 2/12/96
00010 
00011  *> Copyright (c) 1994, All Rights Reserved.
00012  **********************************************************************/
00013 #pragma once
00014 #include <WTypes.h>
00015 #include "coreexp.h"
00016 #include "maxheap.h"
00017 
00018 // The class name of the UI gadget
00019 #define TCBGRAPHCLASS _M("TCBGraph")
00020 
00021 // Send this message to the graph control with lParam
00022 // pointing to a TCBGraphParams structure to set the
00023 // garph parameters
00024 #define WM_SETTCBGRAPHPARAMS    (WM_USER + 0xbb34)
00025 
00055 class TCBGraphParams: public MaxHeapOperators {
00056     public:
00057         float tens, cont, bias, easeFrom, easeTo;
00058     };
00059 
00060 CoreExport void InitTCBGraph(HINSTANCE hInst);
00061