blob: d3835cd76acf332d9afbee6ffc9481c55b40af9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/** \file
* \brief IupColorDlg pre-defined dialog
*
* See Copyright Notice in "iup.h"
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <memory.h>
#include <stdarg.h>
#include <limits.h>
#include "iup.h"
#include "iup_object.h"
#include "iup_attrib.h"
#include "iup_str.h"
#include "iup_stdcontrols.h"
Ihandle* IupColorDlg(void)
{
return IupCreate("colordlg");
}
Iclass* iupColorDlgGetClass(void)
{
Iclass* ic = iupClassNew(iupDialogGetClass());
ic->name = "colordlg";
ic->nativetype = IUP_TYPEDIALOG;
ic->is_interactive = 1;
/* reset not used native dialog methods */
ic->parent->LayoutUpdate = NULL;
ic->parent->SetChildrenPosition = NULL;
ic->parent->Map = NULL;
ic->parent->UnMap = NULL;
iupdrvColorDlgInitClass(ic);
return ic;
}
|