summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2DlgItemVScr.cpp
blob: 77df7603abbae67ac5b45f31f6489a3318414f0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#include "StdAfx.h"
#include "T2BitImage.h"
#include "T2DlgItemVScr.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

T2DlgItemVScr::T2DlgItemVScr(T2TowerDoc* towerDoc, T2ImageObj* imageObj, CPalette* palette)
	: T2DlgItemScr(towerDoc, imageObj, palette)
{
}

/*virtual*/ BOOL T2DlgItemVScr::OnT2DlgItemEraseBkgnd(CDC* dc) {
#pragma var_order(imgRect, thumbSize, brush, rect, image, destRect, pen1, pen2, savedDC, pen3, thumbPosition)
    CRect rect;
    GetClientRect(rect);

    int savedDC = dc->SaveDC();

    dc->SelectPalette(mPalette, false);
    dc->RealizePalette();

    CPen pen1;
    pen1.CreatePen(PS_SOLID, 0, PALETTERGB(255, 255, 255));

    CPen pen2;
    pen2.CreatePen(PS_SOLID, 0, PALETTERGB(133, 133, 133));

    CPen pen3;
    pen3.CreatePen(PS_SOLID, 0, PALETTEINDEX(255));

    CBrush brush;
    brush.CreateSolidBrush(PALETTERGB(204, 204, 204));

    dc->SelectObject(pen2);
    dc->MoveTo(rect.right - 1, rect.top);
    dc->LineTo(rect.left, rect.top);
    dc->LineTo(rect.left, rect.bottom);

    dc->SelectObject(pen1);
    dc->MoveTo(rect.right - 1, rect.top + 1);
    dc->LineTo(rect.right - 1, rect.bottom - 1);
    dc->LineTo(rect.left, rect.bottom - 1);

    int thumbPosition, thumbSize;
    CalcScrollBarThumb(&thumbPosition, &thumbSize);

    RECT imgRect;
    T2BitImage *image = GetObjectImage(
        imgRect,
        "DLGITEM:UArrow",
        !IsScrollable() ? 200 : (mUpImage == 100) ? 100 : 0
    );

    RECT destRect = rect;
    destRect.top = 0;
    destRect.bottom = imgRect.bottom - imgRect.top;
    dc->Rectangle(&destRect);
    image->CopyImage(dc, imgRect, destRect, 0, NULL);

    image = GetObjectImage(
        imgRect,
        "DLGITEM:DArrow",
        !IsScrollable() ? 200 : (mDownImage == 100) ? 100 : 0
    );

    destRect = rect;
    destRect.top = destRect.bottom - (imgRect.bottom - imgRect.top);
    dc->Rectangle(&destRect);
    image->CopyImage(dc, imgRect, destRect, 0, NULL);

    destRect.left = rect.left + 1;
    destRect.top = 16;
    destRect.right = rect.right - 1;
    destRect.bottom = thumbPosition;
    if (destRect.top < destRect.bottom)
        dc->FillRect(&destRect, &brush);

    destRect.left = rect.left + 1;
    destRect.top = thumbPosition + thumbSize;
    destRect.right = rect.right - 1;
    destRect.bottom = rect.bottom - 16;
    if (destRect.top < destRect.bottom)
        dc->FillRect(&destRect, &brush);

    if (thumbSize > 0) {
        destRect.left = rect.left + 1;
        destRect.top = thumbPosition;
        destRect.right = rect.right - 1;
        destRect.bottom = thumbPosition + thumbSize;
        dc->FillRect(&destRect, &brush);

        dc->SelectObject(pen3);
        dc->MoveTo(destRect.right - 1, destRect.top);
        dc->LineTo(destRect.right - 1, destRect.bottom - 1);
        dc->LineTo(destRect.left, destRect.bottom - 1);
        dc->LineTo(destRect.left, destRect.top);
        dc->LineTo(destRect.right - 1, destRect.top);

        dc->SelectObject(pen2);
        dc->MoveTo(destRect.right - 2, destRect.top + 1);
        dc->LineTo(destRect.right - 2, destRect.bottom - 2);
        dc->LineTo(destRect.left + 1, destRect.bottom - 2);

        dc->SelectObject(pen1);
        dc->MoveTo(destRect.right - 2, destRect.top + 1);
        dc->LineTo(destRect.left + 1, destRect.top + 1);
        dc->LineTo(destRect.left + 1, destRect.bottom - 1);
    }

    dc->RestoreDC(savedDC);

    return true;
}

/*virtual*/ int T2DlgItemVScr::ScrollBarHittest(CPoint pt) const {
    if (!IsScrollable())
        return 0;

    CRect theCRect;
    GetClientRect(theCRect);

    int area = 0;

    int theThumbPosition, theThumbSize;
    CalcScrollBarThumb(&theThumbPosition, &theThumbSize);

    if (theCRect.top <= pt.y && pt.y < (theCRect.top + 16))
        area = Area_Up;
    else if ((theCRect.top + 16) <= pt.y && pt.y < theThumbPosition)
        area = Area_PageUp;
    else if (theThumbPosition <= pt.y && pt.y < (theThumbPosition + theThumbSize))
        area = Area_Thumb;
    else if ((theThumbPosition + theThumbSize) <= pt.y && pt.y < (theCRect.bottom - 16))
        area = Area_PageDown;
    else if ((theCRect.bottom - 16) <= pt.y && pt.y < theCRect.bottom)
        area = Area_Down;

    return area;
}

/*virtual*/ void T2DlgItemVScr::GetUpButtonRect(const CRect& clientRect, CRect& buttonRect) const {
    buttonRect = CRect(clientRect.left, clientRect.top, clientRect.right, clientRect.top + 16);
}

/*virtual*/ void T2DlgItemVScr::GetDnButtonRect(const CRect& clientRect, CRect& buttonRect) const {
    buttonRect = CRect(clientRect.left, clientRect.bottom - 16, clientRect.right, clientRect.bottom);
}

/*virtual*/ int T2DlgItemVScr::PositionToValue(const CPoint& pt) const {
    return pt.y;
}

/*virtual*/ int T2DlgItemVScr::PositionToValue(const CRect& rect) const {
    return rect.Height();
}