iup-stack/iup/srccontrols/iup_controls.c

59 lines
1.2 KiB
C
Raw Normal View History

2023-02-20 16:44:45 +00:00
/** \file
* \brief initializes the additional controls.
*
* See Copyright Notice in "iup.h"
*/
#include "iup.h"
#include "iupcontrols.h"
#include <cd.h>
#include "iup_object.h"
#include "iup_childtree.h"
#include "iup_register.h"
#include "iup_controls.h"
#include "iup_attrib.h"
int IupControlsOpen(void)
{
if (!IupIsOpened())
return IUP_ERROR;
if (IupGetGlobal("_IUP_CONTROLS_OPEN"))
return IUP_OPENED;
iupRegisterClass(iupCellsNewClass());
iupRegisterClass(iupMatrixNewClass());
iupRegisterClass(iupMatrixListNewClass());
iupRegisterClass(iupMatrixExNewClass());
IupSetGlobal("_IUP_CONTROLS_OPEN", "1");
IupSetGlobal("CD_NAME", CD_NAME);
IupSetGlobal("CD_VERSION", cdVersion());
IupSetGlobal("CD_VERSIONDATE", cdVersionDate());
return IUP_NOERROR;
}
char *iupControlBaseGetParentBgColor(Ihandle* ih)
{
return IupGetAttribute(iupChildTreeGetNativeParent(ih), "BGCOLOR");
}
char *iupControlBaseGetBgColorAttrib(Ihandle* ih)
{
/* check the hash table */
char *color = iupAttribGet(ih, "BGCOLOR");
/* If not defined check native definition from parent */
if (!color)
color = iupControlBaseGetParentBgColor(ih);
return color;
}