当前位置: 首页>>代码示例>>C++>>正文


C++ UIWindow::SetVisible方法代码示例

本文整理汇总了C++中UIWindow::SetVisible方法的典型用法代码示例。如果您正苦于以下问题:C++ UIWindow::SetVisible方法的具体用法?C++ UIWindow::SetVisible怎么用?C++ UIWindow::SetVisible使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在UIWindow的用法示例。


在下文中一共展示了UIWindow::SetVisible方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: UpdatePageView

void UIBookStoreBookCommentDetailedPage::UpdatePageView()
{
    const int itemHeight = GetWindowMetrics(UIBookStoreBookCommentReplyItemHeightIndex);
    const int horizontalMargin = GetWindowMetrics(UIHorizonMarginIndex);
    for (vector<VIEW_ATTRIBUTE>::iterator itr = m_layoutIndex[m_curPage].viewList.begin(); itr != m_layoutIndex[m_curPage].viewList.end(); itr++)
    {
        UIWindow *pView = (*itr).pView;
        pView->SetVisible((*itr).isEnable);
        pView->MoveWindow((*itr).left, (*itr).top, (*itr).width, (*itr).height);
        if (pView->IsVisible() && ((*itr).listboxStartIndex || (*itr).listboxEndIndex))
        {
            UIBookStoreBookCommentReplyItem *pItem = NULL;
            int topOffset = 0;
            int i = 0;
            for (i = (*itr).listboxStartIndex; i < (*itr).listboxEndIndex; i++)
            {
                if ((i - (*itr).listboxStartIndex) == (int)m_replyList.GetChildrenCount())
                {
                    pItem = new UIBookStoreBookCommentReplyItem();
                    if(pItem)
                    {
                        m_replyList.AddItem(pItem);
                    }
                }
                else
                {
                    pItem = (UIBookStoreBookCommentReplyItem *)m_replyList.GetChildByIndex(i - (*itr).listboxStartIndex);
                }
                if (pItem)
                {
                    dk::bookstore::model::CommentReplySPtr objectItem = m_bookComment->GetReplyList()[i];
                    pItem->SetVisible(TRUE);
                    pItem->MoveWindow(0, topOffset, m_iWidth - (horizontalMargin << 1), itemHeight);
                    pItem->SetInfoSPtr(objectItem);
                    topOffset += itemHeight;
                }
            }
            for(i = i - (*itr).listboxStartIndex;i < (int)m_replyList.GetChildrenCount();i++)
            {
                pItem = (UIBookStoreBookCommentReplyItem *)m_replyList.GetChildByIndex(i);
                if(pItem)
                {
                    pItem->SetVisible(FALSE);
                }
                else
                {
                    break;
                }
            }

        }
    }
    if (m_commentContent.IsVisible())
    {
        m_commentContent.SetDrawPageNo(m_curPage);
    }
    Layout();
    UpdatePageNumber();
    m_replyList.ResetVisibleItemNum();
#ifndef KINDLE_FOR_TOUCH
    m_usefulButton.SetFocus(true);
#endif
}
开发者ID:chenhbzl,项目名称:OriginApp,代码行数:63,代码来源:UIBookStoreBookCommentDetailedPage.cpp


注:本文中的UIWindow::SetVisible方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。