Leggere in inglese

Condividi tramite


CMainWindow

Il sistema operativo Microsoft Windows converte le azioni utente seguenti in messaggi finestra standard e li invia alla procedura principale nell'applicazione StoClien :

  • L'utente fa clic sul pulsante sinistro del mouse o sull'interruttore della punta della penna nei dispositivi tablet per avviare una sequenza di disegno a linee.
  • L'utente fa clic e tiene premuto il pulsante e sposta il mouse per disegnare una linea.
  • La sequenza viene terminata quando viene rilasciato il pulsante sinistro del mouse.

Il codice di esempio seguente illustra questa procedura.

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);
  }

Una sequenza di disegno a linee inizia quando il messaggio WM_LBUTTONDOWN recapita i dati di posizione del mouse.

CMainWindow ha un puntatore all'oggetto CGuiPaper e chiama il metodo CGuiPaper::InkStart per avviare la sequenza di disegno a linee.

Quando il mouse viene spostato per disegnare, al metodo CGuiPaper::InkDraw viene fornita una sequenza di messaggi separati WM_MOUSEMOVE contenenti dati sulla posizione del mouse.

Quando viene rilasciato il pulsante sinistro del mouse, viene ricevuto il messaggio WM_LBUTTONUP . Il metodo CGuiPaper::InkStop arresta la sequenza di disegno a linee.