鱼C论坛

 找回密码
 立即注册
查看: 2217|回复: 2

[学习笔记] 滚动条最终代码

[复制链接]
发表于 2019-2-12 16:21:57 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 pwnmelife 于 2019-2-12 16:32 编辑
#include <Windows.h>
#include <strsafe.h>
#include "SysMets.h"

#define LINEHEIGHT 15
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);


int WINAPI WinMain(HINSTANCE hInstance,
        HINSTANCE hPrevInstance,
        LPSTR lpCmdLine,
        int nShowCmd) {
        static TCHAR szAppName[] = TEXT("Bill");
        HWND hwnd;
        WNDCLASS wndclass;
        MSG msg;
        
        wndclass.cbClsExtra = 0;
        wndclass.cbWndExtra = 0;

        wndclass.hInstance = hInstance;
        wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
        wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
        wndclass.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH);
        wndclass.lpszClassName = szAppName;
        wndclass.lpszMenuName = NULL;
        wndclass.lpfnWndProc = WndProc;
        wndclass.style = CS_HREDRAW | CS_VREDRAW;

        RegisterClass(&wndclass);
        hwnd = CreateWindow(TEXT("Bill"), TEXT("Tip"), WS_OVERLAPPEDWINDOW | WS_HSCROLL | WS_VSCROLL,
                CW_USEDEFAULT, 40, 400, 100,
                NULL, NULL, hInstance, NULL);

        ShowWindow(hwnd, nShowCmd);
        UpdateWindow(hwnd);
        while (GetMessage(&msg, NULL, 0, 0)) {
                TranslateMessage(&msg);
                DispatchMessage(&msg);
        }
        return 0;

}

LRESULT CALLBACK WndProc(HWND hwnd, UINT message,
        WPARAM wParam, LPARAM lParam) {
        HDC hdc;
        SCROLLINFO si;
        PAINTSTRUCT ps;
        RECT rect;
        TCHAR szBuffer[128];
        TEXTMETRIC tm;

        static int cxChar,cxCaps,cyChar;
        static int cxClient, cyClient, iMaxWidth;
        int i, x, y, iVscrollPos, iVertPos, iHorzPos, iPaintBeg, iPaintEnd;
        size_t len;
        switch (message) {
        case WM_CREATE:
                hdc = GetDC(hwnd);
                GetTextMetrics(hdc, &tm);
                cxChar = tm.tmAveCharWidth;
                cxCaps = (tm.tmPitchAndFamily & 1 ? 3 : 2) * cxChar / 2;
                cyChar = tm.tmHeight + tm.tmExternalLeading;
                ReleaseDC(hwnd, hdc);
                iMaxWidth = 40 * cxChar + 22 * cxCaps;
                return 0;
        case WM_VSCROLL:
                si.cbSize = sizeof(si);
                si.fMask = SIF_ALL;
                GetScrollInfo(hwnd, SB_VERT, &si);
                iVertPos = si.nPos;
                switch (LOWORD(wParam)) {
                case SB_TOP:
                        si.nPos = si.nMin;
                        break;
                case SB_BOTTOM :
                        si.nPos = si.nMax;
                        break;
                case SB_LINEDOWN:
                        si.nPos += 1;
                        break;
                case SB_LINEUP:
                        si.nPos -= 1;
                        break;
                case SB_PAGEDOWN:
                        si.nPos += si.nPage;
                        break;
                case SB_PAGEUP:
                        si.nPos -= si.nPage;
                        break;
                case SB_THUMBPOSITION: 
                        si.nPos = si.nTrackPos;
                        break;
                default:
                        break;
                }
                if (iVertPos != si.nPos) {
                        si.fMask = SIF_POS;
                        SetScrollInfo(hwnd, SB_VERT, &si, TRUE);
                        ScrollWindow(hwnd, 0, cyChar * (iVertPos - si.nPos),
                                NULL, NULL);
                        InvalidateRect(hwnd, NULL, TRUE);
                        UpdateWindow(hwnd);
                }
                return 0;
        case WM_HSCROLL:
                si.cbSize = sizeof(si);
                si.fMask = SIF_ALL;
                GetScrollInfo(hwnd, SB_HORZ, &si);
                iHorzPos = si.nPos;
                switch (LOWORD(wParam)) {
                case SB_LINELEFT:
                        si.nPos -= 1;
                        break;
                case SB_LINERIGHT:
                        si.nPos += 1;
                        break;
                case SB_PAGELEFT:
                        si.nPos -= si.nPage;
                        break;
                case SB_PAGERIGHT:
                        si.nPos += si.nPage;
                        break;
                case SB_THUMBPOSITION:
                        si.nPos = si.nTrackPos;
                default:
                        break;
                }
                if (iHorzPos != si.nPos) {
                        si.fMask = SIF_POS;
                        SetScrollInfo(hwnd, SB_HORZ, &si, TRUE);
                        ScrollWindow(hwnd, cxChar * (iHorzPos - si.nPos), 0, NULL, NULL);
                        InvalidateRect(hwnd, NULL, TRUE);
                        UpdateWindow(hwnd);
                }
                return 0;
        case WM_PAINT:
                hdc = BeginPaint(hwnd, &ps);
                si.cbSize = sizeof(si);
                si.fMask = SIF_POS;
                GetScrollInfo(hwnd, SB_VERT, &si);
                iVertPos = si.nPos;
                GetScrollInfo(hwnd, SB_HORZ, &si);
                iHorzPos = si.nPos;

                iPaintBeg = max(0, iVertPos + ps.rcPaint.top / cyChar);
                iPaintEnd = min(NUMLINES - 1, 
                        iVertPos + ps.rcPaint.bottom / cyChar);
                for (i  = iPaintBeg        ; i <= iPaintEnd; i++) {
                        StringCchLength(sysmetrics[i].szLabel, 1024, &len);
                        TextOut(hdc, 0, (i - iPaintBeg) * cyChar, sysmetrics[i].szLabel, len);
                        
                        StringCchLength(sysmetrics[i].szDesc, 1024, &len);
                        TextOut(hdc, 22 * cxCaps, (i - iPaintBeg) * cyChar, sysmetrics[i].szDesc, len);

                        SetTextAlign(hdc, TA_RIGHT | TA_TOP);
                        StringCchPrintf(szBuffer, 10, TEXT("%5d"), GetSystemMetrics(sysmetrics[i].iIndex));
                        StringCchLength(szBuffer, 10, &len);
                        TextOut(hdc, 22 * cxCaps + 40 * cxChar, (i - iPaintBeg) * cyChar, szBuffer, len);
                        SetTextAlign(hdc, TA_LEFT | TA_TOP);
                }
                EndPaint(hwnd, &ps);
                return 0;
        case WM_SIZE:
                cxClient = LOWORD(lParam);
                cyClient = HIWORD(lParam);

                si.cbSize = sizeof(si);
                si.fMask = SIF_RANGE | SIF_PAGE;

                si.nMin = 0;
                si.nMax = NUMLINES - 1;
                si.nPage = cyClient / cyChar;
                SetScrollInfo(hwnd, SB_VERT, &si, TRUE);

                si.cbSize = sizeof(si);
                si.fMask = SIF_RANGE | SIF_PAGE;
                si.nMin = 0;
                si.nMax = 2 + iMaxWidth / cxChar;
                si.nPage = cxClient / cxChar;
                SetScrollInfo(hwnd, SB_HORZ, &si, TRUE);

                return 0;
        case WM_DESTROY:
                PostQuitMessage(0);
                return 0;
        default:
                return DefWindowProc(hwnd, message, wParam, lParam);
        }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-2-28 09:58:26 | 显示全部楼层
多谢
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2019-2-28 21:58:02 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-23 17:50

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表