• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            為生存而奔跑

               :: 首頁 :: 聯(lián)系 :: 聚合  :: 管理
              271 Posts :: 0 Stories :: 58 Comments :: 0 Trackbacks

            留言簿(5)

            我參與的團(tuán)隊(duì)

            搜索

            •  

            積分與排名

            • 積分 - 328427
            • 排名 - 74

            最新評論

            閱讀排行榜

            評論排行榜

            CLongOperation is a class designed to give visual feedback for long-lasting operations. It has support for:

            • Displaying a wait cursor
            • Showing a text in the status bar
            • Displaying a progress bar in a dynamically created status bar pane

            We can use in the following 3 ways:

            1、In the simplest case, this class can be used as a replacement for MFC's CWaitCursor:

            	CLongOperation wait;
            // some hard work going here...

            2、To display some textual progress information in the status bar:

            	CLongOperation wait;
            wait.SetText("Pass 1");
            // ...
            wait.SetText("Pass 2");
            // ...

            3、To display a progress bar in the status bar:

            	CLongOperation wait;
            for (int i = 1; i < 100; i++)
            {
            wait.Step(i);
            // ...do something.
            }
            wait.Stop();
            When using this,我們必須把項(xiàng)目的字符集改為使用多字節(jié)符集,IDS_PLEASE_WAIT是一個(gè)字符串資源
            ///////////////////////////////////////////////////////////////// // LongOperation.h // (c) 1997, Klaus Gütter class CLongOperation : public CObject { public: // IDS_PLEASE_WAIT is a string resource ID for the default text, // e.g. "Please wait..." CLongOperation(UINT nIDText = IDS_PLEASE_WAIT, bool bStart = true); CLongOperation(LPCTSTR lpszText, bool bStart = true); ~CLongOperation(); void Start(); void Stop(); void Step(int nPercentage = -1); void SetText(LPCTSTR lpszText); protected: CString m_strText; bool m_bStarted; HWND m_hwndProgress; void CreateProgressControl(); }; ///////////////////////////////////////////////////////////////// // LongOperation.cpp // (c) 1997, Klaus Gütter #include "stdafx.h" #include <afxpriv.h> // defines WM_SETMESSAGESTRING #include "LongOperation.h" #ifdef _DEBUG #undef THIS_FILE #define new DEBUG_NEW static char BASED_CODE THIS_FILE[] = __FILE__; #endif CLongOperation::CLongOperation(UINT nIDText, bool bStart) : m_bStarted(false) , m_hwndProgress(NULL) { VERIFY(m_strText.LoadString(nIDText)); if (bStart) Start(); } CLongOperation::CLongOperation(LPCTSTR lpszText, bool bStart) : m_strText(lpszText) , m_bStarted(false) , m_hwndProgress(NULL) { if (bStart) Start(); } CLongOperation::~CLongOperation() { if (m_bStarted) Stop(); } void CLongOperation::Start() { if (m_bStarted) Stop(); // display text in the status bar CWnd* pMainWnd = ::AfxGetMainWnd(); if (pMainWnd) pMainWnd->SendMessage(WM_SETMESSAGESTRING, 0, (LPARAM)(LPCTSTR)m_strText); // switch on wait cursor ::AfxGetApp()->BeginWaitCursor(); m_bStarted = true; } void CLongOperation::Stop() { if (!m_bStarted) return; if (m_hwndProgress) { // clean up and destroy progress bar CStatusBar* pStatusBar = DYNAMIC_DOWNCAST(CStatusBar, CWnd::FromHandle(::GetParent(m_hwndProgress))); ASSERT_VALID(pStatusBar); ::DestroyWindow(m_hwndProgress); m_hwndProgress = NULL; // remove progress bar pane int anPart[32]; int nParts = pStatusBar->GetStatusBarCtrl().GetParts(31, anPart); nParts--; pStatusBar->GetStatusBarCtrl().SetParts(nParts, anPart+1); } // switch back to standard text in the status bar CWnd* pMainWnd = ::AfxGetMainWnd(); if (pMainWnd) pMainWnd->SendMessage(WM_SETMESSAGESTRING, AFX_IDS_IDLEMESSAGE, 0); // switch off wait cursor ::AfxGetApp()->EndWaitCursor(); m_bStarted = false; } void CLongOperation::Step(int nPercentage) { if (!m_bStarted) Start(); ::AfxGetApp()->RestoreWaitCursor(); if (nPercentage >= 0) { ASSERT(nPercentage <= 100); // create or update a progress control in the status bar if (m_hwndProgress == NULL) CreateProgressControl(); if (m_hwndProgress) ::SendMessage(m_hwndProgress, PBM_SETPOS, (WPARAM)nPercentage, 0); } } void CLongOperation::SetText(LPCTSTR lpszText) { m_strText = lpszText; CWnd* pMainWnd = ::AfxGetMainWnd(); if (pMainWnd) pMainWnd->SendMessage(WM_SETMESSAGESTRING, 0, (LPARAM)(LPCTSTR)m_strText); } void CLongOperation::CreateProgressControl() { ASSERT(m_hwndProgress == NULL); // find status bar CWnd* pMainWnd = ::AfxGetMainWnd(); if (pMainWnd == NULL) return; CStatusBar* pStatusBar = DYNAMIC_DOWNCAST(CStatusBar, pMainWnd->GetDescendantWindow(AFX_IDW_STATUS_BAR, TRUE)); if (pStatusBar == NULL || pStatusBar->m_hWnd == NULL) return; CRect rc; // this will be the location for the progress bar pane pStatusBar->GetItemRect(0, rc); if (!m_strText.IsEmpty()) { // adjust so that the text in the leftmost pane will not be covered CClientDC dc(pStatusBar); dc.SelectObject(pStatusBar->GetFont()); CSize sz = dc.GetTextExtent(m_strText); TEXTMETRIC tm; dc.GetTextMetrics(&tm); rc.left += sz.cx + 2*tm.tmAveCharWidth; } int cx = rc.Width(); if (cx < 20) { // no sense in displaying such a small progress bar TRACE0("ProgressDisplay would be too small\n"); return; } else if (cx > 200) { // arbitrarily limiting progress bar width to 200 pixel cx = 200; rc.left = rc.right - cx; } // add a pane between the text and the currently leftmost pane int anPart[32]; int nParts = pStatusBar->GetStatusBarCtrl().GetParts(31, anPart+1); anPart[0] = rc.left; nParts++; pStatusBar->GetStatusBarCtrl().SetParts(nParts, anPart); pStatusBar->GetStatusBarCtrl().GetRect(1, rc); // create progress bar control m_hwndProgress = ::CreateWindow(PROGRESS_CLASS, "", WS_CHILD | WS_VISIBLE, rc.left, rc.top, rc.Width(), rc.Height(), pStatusBar->m_hWnd, (HMENU)1, AfxGetInstanceHandle(), NULL); pStatusBar->UpdateWindow(); }
            posted on 2009-07-24 11:15 baby-fly 閱讀(217) 評論(0)  編輯 收藏 引用 所屬分類: MFC
            精品久久久久一区二区三区| 91精品国产高清91久久久久久| 久久久久无码精品国产不卡| 777米奇久久最新地址| 国产一级持黄大片99久久| 久久久久久国产精品无码下载| 国产69精品久久久久APP下载| 久久AV无码精品人妻糸列| 狠狠色丁香久久综合婷婷| 国产精品九九久久精品女同亚洲欧美日韩综合区 | 久久精品国内一区二区三区| 国产国产成人久久精品| 区久久AAA片69亚洲| 久久99国产精品一区二区| 久久久久久无码国产精品中文字幕 | 国产精品天天影视久久综合网| 久久av免费天堂小草播放| 久久久久亚洲AV成人网人人网站| 情人伊人久久综合亚洲| 婷婷综合久久中文字幕蜜桃三电影| 青青草原综合久久| 99久久国产宗和精品1上映| 久久99这里只有精品国产| 免费国产99久久久香蕉| .精品久久久麻豆国产精品| 2020久久精品亚洲热综合一本| 精品乱码久久久久久夜夜嗨 | 久久99久久99精品免视看动漫| 伊人色综合久久| 久久国产成人午夜AV影院| 久久久久亚洲av无码专区| 午夜精品久久久久久久| 国产精品久久久久久久人人看 | 国内精品人妻无码久久久影院导航 | 国产女人aaa级久久久级| 久久综合香蕉国产蜜臀AV| 久久久久无码精品国产不卡| 久久国产免费直播| 久久婷婷五月综合97色直播| 麻豆久久久9性大片| 国内精品九九久久精品|