home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / win_lrn / clipbord / getclipf.c < prev    next >
Text File  |  1988-08-10  |  6KB  |  201 lines

  1. /*
  2.  
  3. Function(s) demonstrated in this program: GetClipboardFormatName
  4.  
  5. Windows version:  2.03
  6.  
  7. Windows SDK version:  2.00
  8.  
  9. Compiler version:  C 5.10
  10.  
  11. Description:  This function returns the name of the registered format
  12.    requested.
  13.  
  14. Additional Comments:
  15.  
  16. */
  17.  
  18. #define NOMINMAX
  19. #include <windows.h>
  20. #include <stdlib.h>
  21. #include <stdio.h>
  22. #include "GetClipF.h"
  23.  
  24.  
  25. HWND     hWndParent1;
  26. HANDLE   hInstMain;
  27.  
  28. char     szOutputBuffer1 [70];
  29. char     szOutputBuffer2 [500];
  30.  
  31.  
  32. /****************************************************************************/
  33. /************************    Message Structure      *************************/
  34. /****************************************************************************/
  35.  
  36. struct { char *szMessage; }
  37.        Messages [] = {
  38. "About",
  39. "     This is a sample application to demonstrate the\n\
  40. use of the GetClipboardFormatName Windows function.",
  41.  
  42. "Help Message",
  43. "     This program uses the GetClipboardFormatName\n\
  44. Windows function to retrieve the name of a format\n\
  45. which was registered just prior to this function call\n\
  46. under the name of TMSROMAN.  This name is then\n\
  47. displayed in a Message Box.  Use the menu to invoke\n\
  48. this function.",
  49.  
  50. };    
  51.  
  52. /****************************************************************************/
  53.  
  54. void ProcessMessage (HWND, int); 
  55.  
  56. void ProcessMessage (hWnd, MessageNumber) 
  57.      HWND     hWnd;
  58.      int      MessageNumber;
  59. {
  60.      sprintf (szOutputBuffer1, "%s", Messages [MessageNumber]);
  61.      sprintf (szOutputBuffer2, "%s", Messages [MessageNumber + 1]);
  62.      MessageBox (hWnd, szOutputBuffer2, szOutputBuffer1, MB_OK);
  63. }       
  64.  
  65. /****************************************************************************/
  66.  
  67. int PASCAL WinMain (hInstance, hPrevInstance, lpszCmdLine, nCmdShow)
  68.      HANDLE      hInstance, hPrevInstance ;
  69.      LPSTR       lpszCmdLine ;
  70.      int         nCmdShow ;
  71.      {
  72.      static char szAppName [] = "GetClipF" ;
  73.      HWND        hWnd ;
  74.      WNDCLASS    wndclass ;
  75.      MSG msg;
  76.      short       xScreen, yScreen ;
  77.  
  78.      if (!hPrevInstance) 
  79.           {
  80.           wndclass.style         = CS_HREDRAW | CS_VREDRAW ;
  81.           wndclass.lpfnWndProc   = WndProc ;
  82.           wndclass.cbClsExtra    = 0 ;
  83.           wndclass.cbWndExtra    = 0 ;
  84.           wndclass.hInstance     = hInstance ;
  85.           wndclass.hIcon         = LoadIcon (NULL, IDI_APPLICATION) ;
  86.           wndclass.hCursor       = LoadCursor (NULL, IDC_ARROW) ;
  87.           wndclass.hbrBackground = GetStockObject (WHITE_BRUSH) ;
  88.           wndclass.lpszMenuName  = szAppName ;
  89.           wndclass.lpszClassName = szAppName ;
  90.  
  91.           if (!RegisterClass (&wndclass))
  92.                return FALSE ;
  93.           }
  94.  
  95.      xScreen = GetSystemMetrics (SM_CXSCREEN) ;
  96.      yScreen = GetSystemMetrics (SM_CYSCREEN) ;
  97.  
  98.      hWndParent1 = CreateWindow (szAppName,     /* window class name       */
  99.                     "GetClipboardFormatName",   /* window caption          */
  100.                     WS_OVERLAPPEDWINDOW,        /* window style            */
  101.                     CW_USEDEFAULT,              /* initial x position      */
  102.                     0,                          /* initial y position      */
  103.                     CW_USEDEFAULT,              /* initial x size          */
  104.                     0,                          /* initial y size          */
  105.                     NULL,                       /* parent window handle    */
  106.                     NULL,                       /* window menu handle      */
  107.                     hInstance,                  /* program instance handle */
  108.                     NULL) ;                     /* create parameters       */
  109.  
  110.      ShowWindow (hWndParent1, nCmdShow) ;
  111.      UpdateWindow (hWndParent1) ;
  112.  
  113.      hInstMain = hInstance;
  114.  
  115.      while (GetMessage(&msg, NULL, 0, 0))
  116.      {
  117.       TranslateMessage(&msg);
  118.       DispatchMessage(&msg);
  119.      } 
  120.      return (msg.wParam) ;     
  121.      }
  122.  
  123. /****************************************************************************/
  124.  
  125. long FAR PASCAL WndProc (hWnd, iMessage, wParam, lParam)
  126. HWND     hWnd ;
  127. unsigned iMessage ;
  128. WORD     wParam ;
  129. LONG     lParam ;
  130. {
  131.  HMENU       hMenu;
  132.  HDC         hDC;
  133.  PAINTSTRUCT ps;
  134.  static int  xClient, yClient;
  135.  WORD        wFormat;
  136.  int         nCopied;
  137.  char        lpFormatName [40];
  138.  
  139.  switch(iMessage)
  140.  {
  141.   case WM_CREATE:
  142.        hMenu = GetSystemMenu (hWnd, FALSE);
  143.  
  144.        ChangeMenu (hMenu, NULL, "&About", IDM_ABOUT, 
  145.                    MF_APPEND | MF_STRING);
  146.        break;
  147.  
  148.   case WM_SYSCOMMAND:
  149.        switch (wParam) {
  150.           case IDM_ABOUT:
  151.                ProcessMessage (hWnd, 0);
  152.                break;
  153.           default:
  154.                return DefWindowProc (hWnd, iMessage, wParam, lParam) ;
  155.        }
  156.        break;
  157.  
  158.   case WM_COMMAND:
  159.        switch (wParam) {
  160.           case IDM_GETCLIPFNAME:
  161.                MessageBox (NULL, (LPSTR)"Getting clipboard format name",
  162.                   (LPSTR)"GetClipboardFormatName", MB_OK);
  163.              
  164.                wFormat = RegisterClipboardFormat ( (LPSTR)"TMSROMAN" );
  165.                nCopied = GetClipboardFormatName ( wFormat, lpFormatName, 20 );
  166.                
  167.                if ( nCopied != 0 ) 
  168.                    MessageBox (NULL, (LPSTR)lpFormatName, 
  169.                               (LPSTR)"The Format Name Is", MB_OK);
  170.                else
  171.                    MessageBox (NULL, (LPSTR)"Format does not exits", 
  172.                               (LPSTR)"GetClipboardFormatName", MB_OK);
  173.                
  174.                break;
  175.  
  176.           case IDM_HELP:
  177.                ProcessMessage (hWnd, 2);
  178.                break;
  179.        }
  180.        break;
  181.  
  182.   case WM_PAINT:
  183.        BeginPaint(hWnd, (LPPAINTSTRUCT)&ps);
  184.        EndPaint(hWnd, (LPPAINTSTRUCT)&ps);
  185.        break;
  186.  
  187.   case WM_DESTROY:
  188.        PostQuitMessage(0);
  189.        break;
  190.  
  191.   default:
  192.   {
  193.    return DefWindowProc (hWnd, iMessage, wParam, lParam) ;
  194.   }
  195.  }
  196.  return (0L); 
  197. }
  198.  
  199.  
  200.  
  201.