CMainWindow

Microsoft Windows 운영 체제는 다음 사용자 작업을 표준 창 메시지로 변환하고 StoClien 애플리케이션의 기본 프로시저로 보냅니다.

  • 사용자가 왼쪽 마우스 단추 또는 태블릿 디바이스의 펜 팁 스위치를 클릭하여 선 그리기 시퀀스를 시작합니다.
  • 사용자가 단추를 클릭하고 누른 다음 마우스를 이동하여 선을 그립니다.
  • 시퀀스는 마우스 왼쪽 단추가 놓이면 종료됩니다.

다음 예제 코드에서는 이 절차를 보여 줍니다.

CMainWindow::WindowProc(STOCLIEN. CPP)

LRESULT CMainWindow::WindowProc(
            UINT uMsg,
            WPARAM wParam,
            LPARAM lParam)
  {
    LRESULT lResult = FALSE;

    switch (uMsg)
    {
      case WM_CREATE:
        break;

      case WM_ACTIVATE:
        // A mouse click reactivates the paint procedure.
        // This is used to paint a new window when a user
        // selects a portion of the STOCLIEN window that is 
        // visible beneath another window. This message is  
        // sent in the WindowProc handle.
        if (WA_CLICKACTIVE == LOWORD(wParam))
          m_pGuiPaper->PaintWin();
        lResult = ::DefWindowProc(m_hWnd, uMsg, wParam, lParam);
        break;

      case WM_SIZE:
        // Handle a resize of this window.
        m_wWidth = LOWORD(lParam);
        m_wHeight = HIWORD(lParam);
        // Inform CGuiPaper of the change.
        m_pGuiPaper->Resize(m_wWidth, m_wHeight);
        break;

      case WM_PAINT:
        // This is a message to repaint the window.
        {
          PAINTSTRUCT ps;

          if(BeginPaint(m_hWnd, &ps))
            EndPaint(m_hWnd, &ps);

          m_pGuiPaper->PaintWin();
        }
        break;

      case WM_LBUTTONDOWN:
        // Start sequence of ink drawing to the paper.
        m_pGuiPaper->InkStart(LOWORD(lParam), HIWORD(lParam));
        break;

      case WM_MOUSEMOVE:
        // Draw inking sequence data.
        m_pGuiPaper->InkDraw(LOWORD(lParam), HIWORD(lParam));
        break;

      case WM_LBUTTONUP:
        // Stop an ink drawing sequence.
        m_pGuiPaper->InkStop(LOWORD(lParam), HIWORD(lParam));
        break;

      case WM_COMMAND:
        // Dispatch and handle any Menu command messages received.
        lResult = DoMenu(wParam, lParam);
        break;

      case WM_CHAR:
        if (wParam == 0x1b)
        {
          // Exit this application if user presses the ESC key.
          ::PostMessage(m_hWnd, WM_CLOSE, 0, 0);
        }
        break;

      case WM_CLOSE:
        // The user selected Close on the main window System menu
        // or Exit on the File menu.
        // If there is unsaved ink data, then prompt
        // the user. If the user cancels, do not close the window.
        if (IDCANCEL == m_pGuiPaper->AskSave())
          break;
      case WM_QUIT:
        // When exiting the application, close any associated help
        // windows.
        // ::WinHelp(m_hWnd, m_szHelpFile, HELP_QUIT, 0);
      default:
        // If there are any messages that have not been handled,
        // send them to the default window procedure.
        lResult = ::DefWindowProc(m_hWnd, uMsg, wParam, lParam);
        break;
    }

    return(lResult);
  }

WM_LBUTTONDOWN 메시지가 마우스 위치 데이터를 전달하면 선 그리기 시퀀스가 시작됩니다.

CMainWindow에는 CGuiPaper 개체에 대한 포인터가 있으며 CGuiPaper::InkStart 메서드를 호출하여 선 그리기 시퀀스를 시작합니다.

마우스를 그리기 위해 이동하면 마우스 위치 데이터가 포함된 별도의 WM_MOUSEMOVE 메시지 시퀀스가 CGuiPaper::InkDraw 메서드에 제공됩니다.

마우스 왼쪽 단추를 놓으면 WM_LBUTTONUP 메시지가 수신됩니다. CGuiPaper::InkStop 메서드는 선 그리기 시퀀스를 중지합니다.