#include <cpanel.h>
Inheritance diagram for CPanelWindow:
Public Methods | |
CPanelWindow () | |
void | Init (Display *d, int x, int y) |
Message | Dispatch (Message &m) |
|
Definition at line 24 of file cpanel.c. References Window::BkColor, Window::BorderColor, Window::ClientD, Window::CliX1, Window::CliX2, Window::CliY1, Window::CliY2, CPanelXDim, CPanelYDim, ScrnObj::Drawn, False, Window::Title, Window::TitleColor, Window::TitleD, Window::TX1, Window::TX2, Window::TY1, Window::TY2, Window::XDim, and Window::YDim.
00025 { 00026 XDim = CPanelXDim; YDim = CPanelYDim; 00027 CliX1 = CliY1 = CliX2 = CliY2 = 0; 00028 TX1 = TY1 = TX2 = TY2 = 0; 00029 BorderColor = RED; 00030 BkColor = LIGHTGRAY; 00031 TitleColor = WHITE; 00032 Title = new char[20]; 00033 strcpy (Title, "Control Panel"); 00034 ClientD = TitleD = NULL; 00035 Drawn = False; 00036 } |
|
Reimplemented from Window. Definition at line 74 of file cpanel.c. References Window::ClientD, and Display::Dispatch().
|
|