/* * ReactOS zoomin * * framewnd.c * * Copyright (C) 2002 Robert Dickenson * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers #include #include #include "main.h" #include "framewnd.h" //////////////////////////////////////////////////////////////////////////////// // Global and Local Variables: // //////////////////////////////////////////////////////////////////////////////// // Local module support methods // //////////////////////////////////////////////////////////////////////////////// // // FUNCTION: _CmdWndProc(HWND, unsigned, WORD, LONG) // // PURPOSE: Processes WM_COMMAND messages for the main frame window. // // static BOOL _CmdWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { switch (LOWORD(wParam)) { // Parse the menu selections: case ID_EDIT_EXIT: DestroyWindow(hWnd); break; case ID_EDIT_COPY: case ID_EDIT_REFRESH: case ID_OPTIONS_REFRESH_RATE: case ID_HELP_ABOUT: // TODO: break; default: return FALSE; } return TRUE; } //////////////////////////////////////////////////////////////////////////////// // // FUNCTION: FrameWndProc(HWND, unsigned, WORD, LONG) // // PURPOSE: Processes messages for the main frame window. // // WM_COMMAND - process the application menu // WM_DESTROY - post a quit message and return // // LRESULT CALLBACK FrameWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { case WM_CREATE: break; case WM_COMMAND: if (!_CmdWndProc(hWnd, message, wParam, lParam)) { return DefWindowProc(hWnd, message, wParam, lParam); } break; case WM_SIZE: break; case WM_TIMER: break; case WM_DESTROY: PostQuitMessage(0); default: return DefWindowProc(hWnd, message, wParam, lParam); } return 0; }