Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > Visual C++ MFC > Toolkit Pro
  New Posts New Posts RSS Feed - Trouble with Task panel group icons
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Trouble with Task panel group icons

 Post Reply Post Reply
Author
Message
debugx View Drop Down
Groupie
Groupie
Avatar

Joined: 23 June 2008
Location: Andorra
Status: Offline
Points: 28
Post Options Post Options   Thanks (0) Thanks(0)   Quote debugx Quote  Post ReplyReply Direct Link To This Post Topic: Trouble with Task panel group icons
    Posted: 15 July 2008 at 4:58am
Hello All,

I created simple SDI application added TaskPanel. Then I want to add groups and group items with icons. I do this way:
    HICON icon1, icon2;
    icon1 = app->LoadIconA(IDI_ICON1);
    icon2 = app->LoadIconA(IDI_ICON2);
    CImageList pImList;
    pImList.Create(16, 16, ILC_COLOR32|ILC_MASK, 0, 1);
    pImList.Add(icon1);
    pImList.Add(icon2);
    m_myTaskPanel.GetImageManager()->SetIcons(pImList, 0, 0, CSize(16, 16));

When I set the icon index to the group elements:
    pGroupWelcome->AddLinkItem(ID_TASKITEM_CONNECTIONS, 1);
It works perfectly.
But when I am trying to set the icon index to the group itself:
    CXTPTaskPanelGroup* pGroupWelcome = m_wndWelcomeTaskPanel.AddGroup(ID_TASKGROUP_WELCOME, 1);
the icon look like large and not streched:
How can I do so that the icon appearance in the group headers looks like such accurately as in the group elements.
Thanks.
"Один законник с портфелем в рукаm
Back to Top
Oleg View Drop Down
Senior Member
Senior Member


Joined: 21 May 2003
Location: United States
Status: Offline
Points: 11234
Post Options Post Options   Thanks (0) Thanks(0)   Quote Oleg Quote  Post ReplyReply Direct Link To This Post Posted: 15 July 2008 at 8:16am
Hi,
 
Try to change size with SetGroupIconSize method.
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS
Back to Top
debugx View Drop Down
Groupie
Groupie
Avatar

Joined: 23 June 2008
Location: Andorra
Status: Offline
Points: 28
Post Options Post Options   Thanks (0) Thanks(0)   Quote debugx Quote  Post ReplyReply Direct Link To This Post Posted: 15 July 2008 at 10:16am
thank you. It was helpful
"Один законник с портфелем в рукаm
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.049 seconds.