#ifndef _WDCPOPUPBOX_H_
#define _WDCPOPUPBOX_H_

#include "guiutil.h"
#include "rowcol.h"

@interface WDCVariablePopupBox : WDCGUIObject
{
  id _popupShell;
  id _popupWindow;
}
- buildPopupShellWithName:(char*)aName managedBy:anObject;
- setPopupShell:shell;
- setPopupWindow:window;
- getPopupShell;
- getPopupWindow;

@end

@interface WDCDrawBox : WDCVariablePopupBox
{
  id _drawArea;
}

- setDrawArea:drawArea;
- getDrawArea;

@end

@interface WDCPopupBox: WDCVariablePopupBox
{
}

@end

@interface WDCRadioBox: WDCPopupBox
{
}

@end

@interface WDCCheckBox : WDCPopupBox
{
}

@end


#endif
