最终的工具栏项图标未显示

时间:2017-08-18 15:25:19

标签: c++ winapi toolbar

我正在包装Win32工具栏。除了每当包装类的用户添加分隔符时,一切都有效,最后一个工具栏项的图标不显示。

考虑这个客户端代码:

    toolbarBtn tbb[] = { toolbarBtn { ID_FILE_NEW, IDI_NEW },
                            toolbarBtn { ID_FILE_OPEN, IDI_OPEN },
                            sep { },
                            toolbarBtn { ID_FILE_SAVEAS, IDI_SAVE },
                            toolbarBtn { ID_FILE_PRINT, IDI_PRINT },
                            sep { },
                            toolbarBtn { ID_EDIT_UNDO, IDI_UNDO },
                            toolbarBtn { ID_EDIT_REDO, IDI_REDO } };

this->tb = toolbar { *this, tbb, sizeof tbb / sizeof *tbb };

toolbarBtn个对象代表一个工具栏按钮。 sep对象是一个分隔符,并继承自类toolbarBtn。以下语句调用工具栏类的构造函数,并创建它。对于这段代码,这就是我得到的图形输出:

enter image description here

正如您在悬停时所看到的,最后两个按钮存在!但由于一个原因图标没有显示,并且图标的顺序也发生了变化。它应该是“新建”,“打开”,[分隔符],“保存”,“打印”,[分隔符],“撤消”和“重做”。但是“另存为”和“重做”并没有显示出来。而且我知道图标本身不是问题,因为我可以放置toolbarBtn的任何序列,但只要有sep个对象,就会显示最后一个图标。

以下是相关功能/方法的实现:

toolbarBtn::toolbarBtn(int id, icon ico, BYTE state, BYTE style)
{
    ZeroMemory(this, sizeof *this);
    this->ico = ico;
    this->tbb.idCommand = id;
    this->tbb.fsState = state;
    this->tbb.fsStyle = style;
    this->tbb.iBitmap = 0;  // field will be changed by toolbar c'tor
}

// count # of buttons; no separators counted
size_t nActualButtons(const toolbarBtn btns[], size_t n)
{
    size_t n1 = n;
    for (size_t i = 0; i < n; ++i)
        if (btns[i].getTBB().fsStyle & TBSTYLE_SEP)
            --n1;
    return n1;
}
toolbar::toolbar(overlappedwindow parent, const toolbarBtn btns[], size_t n, 
                 int id)
{
    this->hwnd = CreateWindow(TOOLBARCLASSNAME, NULL, 
        WS_CHILD | WS_VISIBLE | TBSTYLE_FLAT, 0, 0, 0, 0,
        parent.gethwnd(), (HMENU) id, GetModuleHandle(NULL), NULL);
    if (this->hwnd == NULL)
        message(L"%s: %s", __FUNCTIONW__, geterror());

    // Send the TB_BUTTONSTRUCTSIZE message, which is required for
    // backward compatibility.
    SendMessage(this->hwnd, TB_BUTTONSTRUCTSIZE, sizeof(TBBUTTON), 0);

    HIMAGELIST imglist = ImageList_Create(16, 16, ILC_COLOR32, n, 0);
    if (!imglist)
        message(L"%s: %s", __FUNCTIONW__, geterror());

    for (size_t i = 0; i < n; ++i) {
        if (btns[i].getTBB().fsStyle & TBSTYLE_SEP)
            continue;     // dont add separators to image list
        if (ImageList_AddIcon(imglist, btns[i].getIcon().gethandle()) == -1)
            message(L"%s: %s", __FUNCTIONW__, geterror());
    }

    SendMessage(this->hwnd, TB_SETIMAGELIST, (WPARAM) 0, (LPARAM) imglist);

    TBBUTTON *tbb = (TBBUTTON *) calloc(n, sizeof (TBBUTTON));
    for (size_t i = 0; i < n; ++i) {
        tbb[i] = btns[i].getTBB();
        tbb[i].iBitmap = (tbb[i].fsStyle & TBSTYLE_SEP) ? 0 : i;
        if (tbb[i].fsStyle & TBSTYLE_SEP)
            tbb[i].idCommand = 0;
    }
    SendMessage(this->hwnd, TB_ADDBUTTONS, n, (LPARAM) tbb);
    free(tbb);
}

1 个答案:

答案 0 :(得分:0)

我认为您的问题可能与此有关:

sep { },

你基本上是这样做的:

sep {0, 0, 0, 0}

因此您的分隔符不会设置TBSTYLE_SEP。你应该像这样初始化分隔符:

sep {0, 0, 0, TBSTYLE_SEP}