blob: 0cf680d3128dc70e46cfc7b8fe02e88126f5d73c (
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
45
46
47
48
49
50
51
52
53
54
55
56
|
/** \file
* \brief iupmatrix focus control
*
* See Copyright Notice in "iup.h"
*/
#include <stdlib.h>
#include "iup.h"
#include "iupcbs.h"
#include <cd.h>
#include "iup_object.h"
#include "iup_attrib.h"
#include "iup_str.h"
#include "iup_stdcontrols.h"
#include "iupmat_def.h"
#include "iupmat_aux.h"
#include "iupmat_focus.h"
#include "iupmat_draw.h"
void iupMatrixFocusSet(Ihandle* ih, int lin, int col)
{
ih->data->lines.focus_cell = lin;
ih->data->columns.focus_cell = col;
}
int iupMatrixFocus_CB(Ihandle* ih, int focus)
{
int rc = IUP_DEFAULT;
if (!iupMatrixIsValid(ih, 1))
return IUP_DEFAULT;
if (IupGetGlobal("MOTIFVERSION"))
{
if (iupAttribGet(ih, "_IUPMAT_DROPDOWN") || /* from iMatrixEditDropDown_CB, in Motif */
iupAttribGet(ih, "_IUPMAT_DOUBLECLICK")) /* from iMatrixMouseLeftPress, in Motif */
return IUP_DEFAULT;
}
ih->data->has_focus = focus;
iupMatrixDrawUpdate(ih);
if (focus)
iupMatrixAuxCallEnterCellCb(ih);
else
iupMatrixAuxCallLeaveCellCb(ih);
return rc;
}
|