IUP矩阵“全行选择”

时间:2013-04-11 21:54:14

标签: iup

通过尝试使用IUP矩阵,我发现它的使用非常直观,即使在弱电脑上也能以惊人的速度运行。所以我看到我可以从控制中获得大部分我需要的东西。但是,由于IUP具有非常原始的设置属性的方式,我不能使该矩阵的行为类似于常见的多列列表或MS列表视图。

这是我格式化的方式:

Ihandle *create_mat(void)
{
mat = IupMatrix(NULL);

IupSetAttribute(mat, "READONLY", "YES");
IupSetAttribute(mat, "HIDEFOCUS", "YES");
IupSetAttribute(mat, "FRAMECOLOR", "220 220 220");
IupSetAttribute(mat, "NUMCOL", "5");
IupSetAttribute(mat, "NUMCOL_VISIBLE", "5");
IupSetAttribute(mat, "NUMLIN", "30");
IupSetAttribute(mat, "NUMLIN_VISIBLE", "30");
IupSetAttribute(mat, "RESIZEMATRIX", "YES");
IupSetAttribute(mat, "MARKMODE", "LIN");
IupSetAttribute(mat, "MARKAREA", "CONTINUOUS");
IupSetAttribute(mat, "MULTIPLE", "NO");
IupSetAttribute(mat, "BORDER", "NO");
IupSetAttribute(mat, "CURSOR", "ARROW");
IupSetAttribute(mat, "ALIGNMENT", "ARIGHT");
IupSetAttribute(mat, "ALIGNMENT1", "ALEFT");
IupSetAttribute(mat, "ALIGNMENT5", "ACENTER");
//
IupSetAttribute(mat, "WIDTH0", "30");
IupSetAttribute(mat, "WIDTH1", "150");
IupSetAttribute(mat, "WIDTH2", "50");
IupSetAttribute(mat, "WIDTH3", "50");
IupSetAttribute(mat, "WIDTH4", "50");
//
IupSetAttribute(mat, "0:0", "Row H");
IupSetAttribute(mat, "0:1", "Col1");
IupSetAttribute(mat, "0:2", "Col2");
IupSetAttribute(mat, "0:3", "Col3");
IupSetAttribute(mat, "0:4", "Col4");
IupSetAttribute(mat, "0:5", "Col5");
//
IupSetCallback(mat, "CLICK_CB", (Icallback)click);
IupSetCallback(mat, "LEAVEITEM_CB", (Icallback)leave);
IupSetCallback(mat, "ENTERITEM_CB", (Icallback)enter);
IupSetCallback(mat, "WHEEL_CB", (Icallback)wheel);

return mat;
}

所有带回调的属性和事件都按预期工作。 由于我有一些特定的使用/管理数据的方法,因此当需要点击任意单元格的全行时,或者当我通过键盘改变位置时,也需要这样做。

我还希望能够通过点击行标题来选择带有代码的完整行 除了点击(我按预期捕获),如何检查双击矩阵?

最后,不是最重要但最好知道这里是否存在一种方法来获取系统颜色中的选定线(主要是蓝色)而不是灰色?

如何最简单地实现该功能?
(Windows7的/ 64)

1 个答案:

答案 0 :(得分:2)

以您希望的方式选择行的最简单形式是使用ENTERITEM_CB回调:

static int enteritem_cb(Ihandle *ih, int lin, int col)
{
  IupSetAttribute(ih,"MARKED", NULL);  /* clear all marks */
  IupMatSetAttribute(ih,"MARK", lin, 0, "Yes");
  IupSetfAttribute(ih,"REDRAW", "L%d", lin);
  return IUP_DEFAULT;
}

目前无法更改所选的线条颜色。其实因为它不是特定的颜色。标记的单元格在前景和背景颜色处绘制衰减。