/* AbiWord * Copyright (C) 1998 AbiSource, Inc. * * 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., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ #include #include #include "ut_types.h" #include "ut_misc.h" #include "ut_assert.h" #include "ut_debugmsg.h" #include "ap_Win32TopRuler.h" #include "gr_Win32Graphics.h" #include "xap_Win32App.h" #include "ap_Win32Frame.h" /*****************************************************************/ #define GWL(hwnd) (AP_Win32TopRuler*)GetWindowLong((hwnd), GWL_USERDATA) #define SWL(hwnd, f) (AP_Win32TopRuler*)SetWindowLong((hwnd), GWL_USERDATA,(LONG)(f)) #define ENSUREP(p) do { UT_ASSERT(p); if (!p) goto Cleanup; } while (0) static char s_TopRulerWndClassName[256]; /*****************************************************************/ AP_Win32TopRuler::AP_Win32TopRuler(XAP_Frame * pFrame) : AP_TopRuler(pFrame) { m_pG = NULL; m_hwndTopRuler = NULL; } AP_Win32TopRuler::~AP_Win32TopRuler(void) { DELETEP(m_pG); } void AP_Win32TopRuler::setView(AV_View * pView) { AP_TopRuler::setView(pView); DELETEP(m_pG); GR_Win32Graphics * pG = new GR_Win32Graphics(GetDC(m_hwndTopRuler), m_hwndTopRuler, m_pFrame->getApp()); m_pG = pG; UT_ASSERT(m_pG); pG->init3dColors(); } /*****************************************************************/ UT_Bool AP_Win32TopRuler::RegisterClass(XAP_Win32App * app) { WNDCLASSEX wndclass; ATOM a; // register class for the top ruler sprintf(s_TopRulerWndClassName, "%sTopRuler", app->getApplicationName()); memset(&wndclass, 0, sizeof(wndclass)); wndclass.cbSize = sizeof(wndclass); wndclass.style = CS_OWNDC; wndclass.lpfnWndProc = AP_Win32TopRuler::_TopRulerWndProc; wndclass.cbClsExtra = 0; wndclass.cbWndExtra = 0; wndclass.hInstance = app->getInstance(); wndclass.hIcon = NULL; wndclass.hCursor = LoadCursor(NULL, IDC_ARROW); wndclass.hbrBackground = GetSysColorBrush(COLOR_BTNFACE); wndclass.lpszMenuName = NULL; wndclass.lpszClassName = s_TopRulerWndClassName; wndclass.hIconSm = NULL; a = RegisterClassEx(&wndclass); UT_ASSERT(a); return UT_TRUE; } HWND AP_Win32TopRuler::createWindow(HWND hwndContainer, UT_uint32 left, UT_uint32 top, UT_uint32 width) { XAP_Win32App * app = static_cast(m_pFrame->getApp()); m_hwndTopRuler = CreateWindowEx(0, s_TopRulerWndClassName, NULL, WS_CHILD | WS_VISIBLE, left, top, width, s_iFixedHeight, hwndContainer, NULL, app->getInstance(), NULL); UT_ASSERT(m_hwndTopRuler); SWL(m_hwndTopRuler, this); RECT rSize; GetClientRect(m_hwndTopRuler,&rSize); setHeight(rSize.bottom); setWidth(rSize.right); return m_hwndTopRuler; } static EV_EditModifierState s_GetEMS(WPARAM fwKeys) { EV_EditModifierState ems = 0; if (fwKeys & MK_SHIFT) ems |= EV_EMS_SHIFT; if (fwKeys & MK_CONTROL) ems |= EV_EMS_CONTROL; if (GetKeyState(VK_MENU) & 0x8000) ems |= EV_EMS_ALT; return ems; } LRESULT CALLBACK AP_Win32TopRuler::_TopRulerWndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam) { // this is a static member function. AP_Win32TopRuler * pRuler = GWL(hwnd); if (!pRuler) return DefWindowProc(hwnd, iMsg, wParam, lParam); switch (iMsg) { case WM_LBUTTONDOWN: SetCapture(hwnd); pRuler->mousePress(s_GetEMS(wParam),EV_EMB_BUTTON1,LOWORD(lParam),HIWORD(lParam)); return 0; case WM_MBUTTONDOWN: SetCapture(hwnd); pRuler->mousePress(s_GetEMS(wParam),EV_EMB_BUTTON2,LOWORD(lParam),HIWORD(lParam)); return 0; case WM_RBUTTONDOWN: SetCapture(hwnd); pRuler->mousePress(s_GetEMS(wParam),EV_EMB_BUTTON3,LOWORD(lParam),HIWORD(lParam)); return 0; case WM_MOUSEMOVE: pRuler->mouseMotion(s_GetEMS(wParam),signedLoWord(lParam),signedHiWord(lParam)); return 0; case WM_LBUTTONUP: pRuler->mouseRelease(s_GetEMS(wParam),EV_EMB_BUTTON1,signedLoWord(lParam),signedHiWord(lParam)); ReleaseCapture(); return 0; case WM_MBUTTONUP: pRuler->mouseRelease(s_GetEMS(wParam),EV_EMB_BUTTON2,signedLoWord(lParam),signedHiWord(lParam)); ReleaseCapture(); return 0; case WM_RBUTTONUP: pRuler->mouseRelease(s_GetEMS(wParam),EV_EMB_BUTTON3,signedLoWord(lParam),signedHiWord(lParam)); ReleaseCapture(); return 0; case WM_SIZE: { int nWidth = LOWORD(lParam); int nHeight = HIWORD(lParam); pRuler->setHeight(nHeight); pRuler->setWidth(nWidth); return 0; } case WM_PAINT: { PAINTSTRUCT ps; HDC hdc = BeginPaint(hwnd, &ps); UT_Rect r(ps.rcPaint.left,ps.rcPaint.top, ps.rcPaint.right-ps.rcPaint.left, ps.rcPaint.bottom-ps.rcPaint.top); pRuler->draw(&r); EndPaint(hwnd,&ps); return 0; } case WM_SYSCOLORCHANGE: { GR_Win32Graphics * pG = static_cast(pRuler->m_pG); pG->init3dColors(); return 0; } default: break; } return DefWindowProc(hwnd, iMsg, wParam, lParam); }