亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? window.c

?? 新片介紹
?? C
?? 第 1 頁 / 共 5 頁
字號:
        SetPenColor (hdc, GetWindowElementColor (FGC_CONTROL_DEF));        Rectangle (hdc, rcHBar.left, rcHBar.top, rcHBar.right, rcHBar.bottom - 1);#endif        // draw moving bar.        start = rcHBar.left +                    GetMainWinMetrics (MWM_CXHSCROLL) +                    pWin->hscroll.barStart;        if (start + pWin->hscroll.barLen > rcHBar.right)            start = rcHBar.right - pWin->hscroll.barLen;#ifdef _FLAT_WINDOW_STYLE#ifdef _GRAY_SCREEN        SetBrushColor (hdc, GetWindowElementColor (FGC_CONTROL_DEF));        FillBox (hdc, start, rcHBar.top + 2,                        pWin->hscroll.barLen,                        RECTH (rcHBar) - 4);#else        SetBrushColor (hdc, PIXEL_lightgray);        FillBox (hdc, start, rcHBar.top + 1,                            pWin->hscroll.barLen + 1,                            RECTH (rcHBar) - 2);        SetPenColor (hdc, PIXEL_black);        MoveTo (hdc, start, rcHBar.top + 1);        LineTo (hdc, start, rcHBar.top + 1 + RECTH (rcHBar) - 2);        MoveTo (hdc, start+pWin->hscroll.barLen + 1, rcHBar.top + 1);        LineTo (hdc, start+pWin->hscroll.barLen + 1, rcHBar.top + 1 + RECTH (rcHBar) - 2);#endif#else        Draw3DUpFrame (hdc, start,                            rcHBar.top,                            start + pWin->hscroll.barLen,                            rcHBar.bottom,                            PIXEL_invalid);#endif    }    if (pWin->dwStyle & WS_VSCROLL && !(pWin->vscroll.status & SBS_HIDE)) {        SetBrushColor (hdc, GetWindowElementColor (BKC_CONTROL_DEF));        FillBox (hdc, rcVBar.left, rcVBar.top,                         RECTW (rcVBar), RECTH (rcVBar));        // draw top and bottom buttons.        if (pWin->vscroll.status & SBS_DISABLED) {            xo = 0; yo = bh;        }        else {            xo = 0; yo = 0;        }        FillBoxWithBitmapPart (hdc, rcVBar.left, rcVBar.top,                         bw, bh, 0, 0, bmp, xo, yo);        if (pWin->vscroll.status & SBS_DISABLED) {            xo = bw; yo = bh;        }        else {            xo = bw; yo = 0;        }                FillBoxWithBitmapPart (hdc,                         rcVBar.left, rcVBar.bottom - GetMainWinMetrics (MWM_CYVSCROLL),                        bw, bh, 0, 0, bmp, xo, yo);#ifdef _FLAT_WINDOW_STYLE        SetPenColor (hdc, GetWindowElementColor (FGC_CONTROL_DEF));        Rectangle (hdc, rcVBar.left, rcVBar.top, rcVBar.right - 1, rcVBar.bottom);#endif        // draw moving bar        start = rcVBar.top +                    GetMainWinMetrics (MWM_CYVSCROLL) +                    pWin->vscroll.barStart;                            if (start + pWin->vscroll.barLen > rcVBar.bottom)            start = rcVBar.bottom - pWin->vscroll.barLen;#ifdef _FLAT_WINDOW_STYLE#ifdef _GRAY_SCREEN        SetBrushColor (hdc, GetWindowElementColor (FGC_CONTROL_DEF));        FillBox (hdc, rcVBar.left + 2, start,                    RECTW (rcVBar) - 4, pWin->vscroll.barLen);#else        SetBrushColor (hdc, PIXEL_lightgray);        FillBox (hdc, rcVBar.left + 1, start,                            RECTW (rcVBar) - 2,                            pWin->vscroll.barLen);        SetPenColor (hdc, PIXEL_black);        MoveTo (hdc, rcVBar.left + 1, start);        LineTo (hdc, rcVBar.left + 1 + RECTW (rcVBar) - 2, start);        MoveTo (hdc, rcVBar.left + 1, start + pWin->vscroll.barLen - 1);        LineTo (hdc, rcVBar.left + 1 + RECTW (rcVBar) - 2, start + pWin->vscroll.barLen - 1);#endif#else        Draw3DUpFrame (hdc, rcVBar.left,                            start,                            rcVBar.right,                            start + pWin->vscroll.barLen,                            PIXEL_invalid);#endif    }}// this function is CONTROL safe.static void wndDrawCaption(const MAINWIN* pWin, HDC hdc, BOOL bFocus){    int i;    RECT rc;    int iBorder = 0;    int iCaption = 0, bCaption;    int iIconX = 0;    int iIconY = 0;    int x, y, w, h;#if defined(_FLAT_WINDOW_STYLE) && defined(_GRAY_SCREEN)    SIZE text_ext;#endif    PBITMAP bmp;    int bw, bh;    bmp = GetSystemBitmap (SYSBMP_CAPBTNS);    bw = bmp->bmWidth >> 2;    bh = bmp->bmHeight;    if (pWin->dwStyle & WS_BORDER)         iBorder = GetMainWinMetrics(MWM_BORDER);    else if( pWin->dwStyle & WS_THICKFRAME ) {        iBorder = GetMainWinMetrics(MWM_THICKFRAME);                SetPenColor (hdc, bFocus                            ? GetWindowElementColor (WEC_FRAME_ACTIVED)                            : GetWindowElementColor (WEC_FRAME_NORMAL));        for (i=1; i<iBorder; i++)            Rectangle(hdc, i, i,                       pWin->right - pWin->left - i - 1,                       pWin->bottom - pWin->top - i - 1);    }    else if (pWin->dwStyle & WS_THINFRAME)        iBorder = GetMainWinMetrics (MWM_THINFRAME);    if (!(pWin->dwStyle & WS_CAPTION))        return;    if (pWin->hIcon ) {        iIconX = GetMainWinMetrics(MWM_ICONX);        iIconY = GetMainWinMetrics(MWM_ICONY);    }    iCaption = GetMainWinMetrics(MWM_CAPTIONY);    bCaption = iBorder + iCaption - 1;    // draw Caption    rc.left = iBorder;    rc.top = iBorder;    rc.right = pWin->right - pWin->left - iBorder;    rc.bottom = iBorder + iCaption;    ClipRectIntersect (hdc, &rc);    SelectFont (hdc, GetSystemFont (SYSLOGFONT_CAPTION));#ifdef _FLAT_WINDOW_STYLE#ifdef _GRAY_SCREEN    GetTextExtent (hdc, pWin->spCaption, -1, &text_ext);    if (pWin->hIcon) text_ext.cx += iIconX + 2;    SetBrushColor (hdc, bFocus                        ? GetWindowElementColor (BKC_CAPTION_ACTIVED)                        : GetWindowElementColor (BKC_CAPTION_NORMAL));    FillBox (hdc, iBorder, iBorder, text_ext.cx + 4, bCaption);    SetBrushColor(hdc, GetWindowElementColor (FGC_CAPTION_ACTIVED));    FillBox (hdc, iBorder + text_ext.cx + 4, iBorder,               pWin->right - pWin->left, bCaption);    SetPenColor(hdc, bFocus                        ? GetWindowElementColor (BKC_CAPTION_ACTIVED)                        : GetWindowElementColor (BKC_CAPTION_NORMAL));    MoveTo (hdc, iBorder, bCaption);    LineTo (hdc, pWin->right - pWin->left, bCaption);    SetPenColor(hdc, GetWindowElementColor (FGC_CAPTION_ACTIVED));    MoveTo (hdc, iBorder + text_ext.cx + 4, bCaption - 3);    LineTo (hdc, iBorder + text_ext.cx + 2, bCaption - 1);    MoveTo (hdc, iBorder + text_ext.cx + 4, bCaption - 2);    LineTo (hdc, iBorder + text_ext.cx + 3, bCaption - 1);    MoveTo (hdc, iBorder + text_ext.cx + 2, iBorder);    LineTo (hdc, iBorder + text_ext.cx + 4, iBorder + 2);    MoveTo (hdc, iBorder + text_ext.cx + 3, iBorder);    LineTo (hdc, iBorder + text_ext.cx + 4, iBorder + 1);#else    {        unsigned char bits [256];        BITMAP bmp;        InitBitmap (hdc, 64, 1, 128, bits, &bmp);        if (bFocus) {            int i;            Uint8 r, g, b;            gal_pixel pixel;            Pixel2RGB (hdc, GetWindowElementColor (BKC_CAPTION_ACTIVED), &r, &g, &b);            if (r > 191) r = 255; else r += 64;            if (g > 191) g = 255; else g += 64;            if (b > 191) b = 255; else b += 64;            for (i = 0; i < 64; i++) {                pixel = RGB2Pixel (hdc, r - i, g - i, b - i);                SetPixelInBitmap (&bmp, 63 - i, 0, pixel);            }        }        else {            int i;            Uint8 r, g, b;            gal_pixel pixel;            Pixel2RGB (hdc, GetWindowElementColor (BKC_CAPTION_NORMAL), &r, &g, &b);            if (r > 191) r = 255; else r += 64;            if (g > 191) g = 255; else g += 64;            if (b > 191) b = 255; else b += 64;            for (i = 0; i < 64; i++) {                pixel = RGB2Pixel (hdc, r - i, g - i, b - i);                SetPixelInBitmap (&bmp, 63 - i, 0, pixel);            }        }        FillBoxWithBitmap (hdc, iBorder, iBorder,                                pWin->right - pWin->left - (iBorder << 1),                                 bCaption + 1, &bmp);    }#endif#else    SetBrushColor (hdc, bFocus                        ? GetWindowElementColor (BKC_CAPTION_ACTIVED)                        : GetWindowElementColor (BKC_CAPTION_NORMAL));    FillBox(hdc, iBorder, iBorder,                       pWin->right - pWin->left - iBorder,                       bCaption + 1);#endif    if (pWin->hIcon)        DrawIcon (hdc, iBorder, iBorder + (bCaption - iIconY) / 2,                         iIconX, iIconY, pWin->hIcon);    SetTextColor(hdc, bFocus                        ? GetWindowElementColor (FGC_CAPTION_ACTIVED)                        : GetWindowElementColor (FGC_CAPTION_NORMAL));    SetBkColor(hdc, bFocus                        ? GetWindowElementColor (BKC_CAPTION_ACTIVED)                        : GetWindowElementColor (BKC_CAPTION_NORMAL));    SetBkMode(hdc, BM_TRANSPARENT);    TextOut(hdc, iBorder + iIconX + 2, iBorder + 3,                pWin->spCaption);    // draw system button    w = GetMainWinMetrics (MWM_SB_WIDTH);    x = rc.right - w;    y = GetMainWinMetrics (MWM_SB_HEIGHT);    if (y < bCaption) {        y = iBorder + ((bCaption - y)>>1);        h = GetMainWinMetrics (MWM_SB_HEIGHT);    }    else {        y = iBorder;        h = iIconY;    }    if (!(pWin->dwExStyle & WS_EX_NOCLOSEBOX)) {        // close box#if defined(_FLAT_WINDOW_STYLE) && !defined(_GRAY_SCREEN)        int xx = x - 3;        int yy = y + 1;        int hh = h - 2;        SetPenColor (hdc, PIXEL_lightwhite);        Rectangle (hdc, xx, yy, xx + w, yy + hh);        MoveTo (hdc, xx + 5, yy + hh / 2);        LineTo (hdc, xx + w - 5, yy + hh / 2);#else        FillBoxWithBitmapPart (hdc, x, y, bw, bh, 0, 0, bmp, (bw << 1) + bw, 0);#endif        x -= GetMainWinMetrics (MWM_SB_WIDTH);        x -= GetMainWinMetrics (MWM_SB_INTERX) << 1;    }    if (pWin->dwStyle & WS_MAXIMIZEBOX) {        // restore/maximize/question box#if defined(_FLAT_WINDOW_STYLE) && !defined(_GRAY_SCREEN)        int xx = x - 3;        int yy = y + 1;        int hh = h - 2;        SetPenColor (hdc, PIXEL_lightwhite);        Rectangle (hdc, xx, yy, xx + w, yy + hh);#if 1        MoveTo (hdc, xx + 2, yy + 3);        LineTo (hdc, xx + w - 5, yy + 3);        MoveTo (hdc, xx + 2, yy + 5);        LineTo (hdc, xx + w - 3, yy + 5);        MoveTo (hdc, xx + 2, yy + 7);        LineTo (hdc, xx + w - 2, yy + 7);        MoveTo (hdc, xx + 2, yy + 9);        LineTo (hdc, xx + w - 4, yy + 9);#else        MoveTo (hdc, xx + 5, yy);        LineTo (hdc, xx + 5, yy + hh);        MoveTo (hdc, xx + w - 5, yy);        LineTo (hdc, xx + w - 5, yy + hh);        MoveTo (hdc, xx + 5, yy + hh / 2);        LineTo (hdc, xx + w - 5, yy + hh / 2);#endif#else        if (pWin->dwStyle & WS_MAXIMIZE)            FillBoxWithBitmapPart (hdc, x, y, bw, bh, 0, 0, bmp, bw << 1, 0);        else            FillBoxWithBitmapPart (hdc, x, y, bw, bh, 0, 0, bmp, 0, 0);#endif        x -= GetMainWinMetrics (MWM_SB_WIDTH);        x -= GetMainWinMetrics (MWM_SB_INTERX);    }    if (pWin->dwStyle & WS_MINIMIZEBOX) {        // minimize/ok box#if defined(_FLAT_WINDOW_STYLE) && !defined(_GRAY_SCREEN)        int xx = x - 3;        int yy = y + 1;        int hh = h - 2;        SetPenColor (hdc, PIXEL_lightwhite);        Rectangle (hdc, xx, yy, xx + w, yy + hh);        Circle (hdc, xx + w / 2, yy + hh / 2, hh / 2 - 2);#else        FillBoxWithBitmapPart (hdc, x, y, bw, bh, 0, 0, bmp, bw, 0);#endif    }}static void wndEraseBackground(const MAINWIN* pWin,             HDC hdc, const RECT* pClipRect){    RECT rcTemp;    BOOL fGetDC = FALSE;    if (hdc == 0) {        hdc = GetClientDC ((HWND)pWin);        fGetDC = TRUE;    }    if (pClipRect) {        rcTemp = *pClipRect;        if (pWin->WinType == TYPE_MAINWIN) {            ScreenToClient ((HWND)pWin, &rcTemp.left, &rcTemp.top);            ScreenToClient ((HWND)pWin, &rcTemp.right, &rcTemp.bottom);        }    }    else {        rcTemp.left = rcTemp.top = 0;        rcTemp.right = pWin->cr - pWin->cl;        rcTemp.bottom = pWin->cb - pWin->ct;    }        SetBrushColor(hdc, pWin->iBkColor);    FillBox(hdc, rcTemp.left, rcTemp.top,                  RECTW (rcTemp), RECTH (rcTemp));    if (fGetDC)        ReleaseDC (hdc);}// this function is CONTROL safe.static void wndDrawNCFrame(MAINWIN* pWin, HDC hdc, const RECT* prcInvalid){    BOOL fGetDC = FALSE;        if (hdc == 0) {        hdc = GetDC ((HWND)pWin);        fGetDC = TRUE;    }            if (prcInvalid)        ClipRectIntersect (hdc, prcInvalid);    wndDrawNCArea (pWin, hdc);    wndDrawScrollBar (pWin, hdc);    if (pWin->WinType == TYPE_MAINWIN) {        wndDrawCaption (pWin, hdc, !(pWin->dwStyle & WS_DISABLED)             && (GetActiveWindow() == (HWND)pWin));        DrawMenuBarHelper (pWin, hdc, prcInvalid);    }    else {        wndDrawCaption (pWin, hdc, !(pWin->dwStyle & WS_DISABLED) &&                 ((PCONTROL)pWin)->pParent->active == (PCONTROL)pWin);    }    if (fGetDC)        ReleaseDC (hdc);}// this function is CONTROL safe.static void wndActiveMainWindow (PMAINWIN pWin, BOOL fActive){    HDC hdc;    hdc = GetDC ((HWND)pWin);    wndDrawCaption (pWin, hdc, fActive);            ReleaseDC (hdc);}#if 0static void OnShowWindow (PMAINWIN pWin, int iShowCmd){    PCONTROL pCtrl;        if (iShowCmd != SW_HIDE) {                pCtrl = (PCONTROL)(pWin->hFirstChild);        while (pCtrl) {            ShowWindow ((HWND)pCtrl, i

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲黄网站在线观看| 国产日韩在线不卡| 丝袜美腿亚洲一区| 91精品免费观看| 韩国一区二区在线观看| 日韩欧美一区电影| 国产不卡视频一区二区三区| 欧美高清在线视频| 91丝袜美女网| 日韩电影免费在线观看网站| 日韩精品一区二区三区视频播放| 国产一区二区成人久久免费影院| 国产网站一区二区三区| 99精品国产91久久久久久| 亚洲一区欧美一区| 日韩欧美你懂的| 成人丝袜高跟foot| 亚洲电影一区二区三区| 日韩欧美第一区| 99久久精品国产观看| 亚洲电影你懂得| 精品99999| 色哟哟精品一区| 久久不见久久见中文字幕免费| 欧美国产精品一区| 91麻豆精品国产91久久久久久久久| 国产一二精品视频| 亚洲午夜在线观看视频在线| 精品国产乱码久久久久久影片| 成人天堂资源www在线| 亚洲va天堂va国产va久| 国产视频一区二区在线观看| 欧美在线|欧美| 福利电影一区二区三区| 亚洲一二三四在线| 国产精品日产欧美久久久久| 欧美日韩精品综合在线| www.久久精品| 狠狠色2019综合网| 午夜伊人狠狠久久| 亚洲人午夜精品天堂一二香蕉| 欧美一卡2卡3卡4卡| 一本色道**综合亚洲精品蜜桃冫| 美国欧美日韩国产在线播放| 亚洲精品美腿丝袜| 中文字幕第一页久久| 日韩视频国产视频| 欧美三级电影一区| 91香蕉视频污在线| 国产麻豆日韩欧美久久| 日本视频在线一区| 亚洲综合免费观看高清完整版| 国产日产欧产精品推荐色| 91麻豆精品国产91| 欧美日韩久久久| 在线精品亚洲一区二区不卡| 高清视频一区二区| 国产一区二区三区蝌蚪| 美女视频黄免费的久久| 亚洲一区影音先锋| 伊人婷婷欧美激情| 国产精品人成在线观看免费 | 久久婷婷国产综合精品青草| 色视频欧美一区二区三区| 成人黄色软件下载| 国产成人99久久亚洲综合精品| 激情综合网最新| 国内精品写真在线观看| 久久aⅴ国产欧美74aaa| 毛片av一区二区| 麻豆精品一区二区综合av| 亚洲自拍偷拍麻豆| 亚洲国产乱码最新视频 | 国产99久久久久| 国产精品18久久久久久久网站| 精品一区二区三区久久久| 麻豆91在线观看| 麻豆精品久久久| 久久疯狂做爰流白浆xx| 精品一区二区三区在线观看 | 亚洲综合网站在线观看| 亚洲精选视频免费看| 成人免费在线视频观看| 亚洲日本一区二区三区| 亚洲欧美影音先锋| 亚洲综合精品久久| 亚洲大型综合色站| 免费精品视频在线| 国产在线精品免费| 国产成a人无v码亚洲福利| av一区二区不卡| 色激情天天射综合网| 欧美日韩一区不卡| 日韩精品中文字幕一区| 久久亚洲欧美国产精品乐播| 国产日韩v精品一区二区| 中文字幕一区二区不卡 | 国产精品美女久久福利网站| 亚洲天堂a在线| 亚洲一区视频在线| 久久成人麻豆午夜电影| 成人激情小说网站| 一本久久精品一区二区| 91精品在线免费| 国产性色一区二区| 一区二区在线看| 人人精品人人爱| 成人免费视频一区二区| 欧美日韩午夜精品| 久久精品免费在线观看| 亚洲女性喷水在线观看一区| 日韩和的一区二区| 国产大陆亚洲精品国产| 91久久精品国产91性色tv| 欧美日韩aaaaaa| 国产精品免费视频网站| 天天综合网天天综合色| 国产一区二区三区蝌蚪| 欧美性色综合网| 久久色视频免费观看| 一区二区三区四区激情| 裸体一区二区三区| 色婷婷综合久久| 亚洲精品一区二区三区四区高清| 亚洲乱码国产乱码精品精小说| 免费在线观看精品| 91啪亚洲精品| 国产亚洲精品aa午夜观看| 亚洲不卡一区二区三区| 岛国av在线一区| 91精品国产综合久久国产大片| 中文字幕亚洲成人| 国产一区二区精品在线观看| 欧美日韩中文另类| 亚洲欧美视频在线观看| 国产高清一区日本| 欧美一区二区女人| 亚洲精品乱码久久久久久日本蜜臀| 国模套图日韩精品一区二区| 91成人国产精品| 国产精品毛片大码女人| 激情图区综合网| 欧美精品色一区二区三区| 亚洲免费三区一区二区| 丰满少妇在线播放bd日韩电影| 欧美不卡123| 天堂av在线一区| 欧美日韩中文国产| 国产中文字幕精品| 777午夜精品免费视频| 最新中文字幕一区二区三区| 国产美女在线观看一区| 日韩免费在线观看| 日韩精品一二三| 欧美日韩视频在线第一区| 亚洲精品乱码久久久久久久久| 国产91清纯白嫩初高中在线观看| 日韩女优制服丝袜电影| 免费观看30秒视频久久| 欧美日韩一区二区在线观看视频| 亚洲综合在线观看视频| 91社区在线播放| 自拍偷拍国产精品| 一本色道亚洲精品aⅴ| 亚洲男人的天堂av| 欧美性欧美巨大黑白大战| 亚洲一线二线三线视频| 欧美中文字幕一区二区三区| 亚洲午夜久久久久| 在线成人高清不卡| 麻豆视频观看网址久久| 欧美电视剧在线看免费| 久久99精品国产.久久久久久| 日韩欧美一区二区视频| 久久99精品国产麻豆不卡| 精品国产伦理网| 国产成人在线视频播放| 欧美国产成人在线| 色综合色狠狠天天综合色| 一区二区三区色| 91.麻豆视频| 国产米奇在线777精品观看| 国产精品欧美一区二区三区| 色综合天天综合给合国产| 亚洲人精品午夜| 欧美日韩国产乱码电影| 久久国产剧场电影| 欧美激情一区在线观看| 一本高清dvd不卡在线观看| 亚洲高清视频在线| 欧美一区二区三区视频在线观看| 久久 天天综合| 中文无字幕一区二区三区| 色婷婷综合久色| 免费观看91视频大全| 亚洲国产精品成人综合色在线婷婷 | 中文字幕 久热精品 视频在线 | 久久精品国产网站| 国产精品视频线看| 精品1区2区3区|