-
Notifications
You must be signed in to change notification settings - Fork 212
/
gutter.cpp
120 lines (93 loc) · 3.18 KB
/
gutter.cpp
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
/*
* This file is part of diff-pdf.
*
* Copyright (C) 2009 TT-Solutions.
*
* 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, see <http://www.gnu.org/licenses/>.
*/
#include "gutter.h"
#include <wx/dcclient.h>
#include <wx/scrolwin.h>
#include <wx/settings.h>
#define EXTRA_ROOM_FOR_SCROLLBAR 20
Gutter::Gutter(wxWindow *parent, wxWindowID winid)
: wxVListBox(parent, winid)
{
m_fontHeight = -1;
SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT));
SetMinSize(wxSize(WIDTH + 2 * BORDER + EXTRA_ROOM_FOR_SCROLLBAR, -1));
}
void Gutter::AddPage(const wxString& label, const wxImage& thumbnail)
{
m_labels.push_back(label);
m_backgrounds.push_back(wxBitmap(thumbnail));
SetItemCount(m_backgrounds.size());
Refresh();
}
void Gutter::SetThumbnail(int page, const wxImage& thumbnail)
{
m_backgrounds[page] = wxBitmap(thumbnail);
Refresh();
}
void Gutter::UpdateViewPos(wxScrolledWindow *win)
{
int sel = GetSelection();
if ( sel == wxNOT_FOUND )
return;
int total_x, total_y;
win->GetVirtualSize(&total_x, &total_y);
float scale_x = float(m_backgrounds[sel].GetWidth()) / float(total_x);
float scale_y = float(m_backgrounds[sel].GetHeight()) / float(total_y);
win->GetViewStart(&m_viewPos.x, &m_viewPos.y);
win->GetClientSize(&m_viewPos.width, &m_viewPos.height);
m_viewPos.x = int(m_viewPos.x * scale_x);
m_viewPos.y = int(m_viewPos.y * scale_y);
m_viewPos.width = int(m_viewPos.width * scale_x);
m_viewPos.height = int(m_viewPos.height * scale_y);
Refresh();
}
wxCoord Gutter::OnMeasureItem(size_t n) const
{
if ( m_fontHeight == -1 )
wxConstCast(this, Gutter)->m_fontHeight = GetCharHeight();
return m_backgrounds[n].GetHeight() + 3 * BORDER + m_fontHeight;
}
void Gutter::OnDrawItem(wxDC& dc, const wxRect& rect, size_t n) const
{
const int xoffset = (GetClientSize().x - WIDTH) / 2;
const int yoffset = BORDER;
dc.DrawBitmap(m_backgrounds[n], rect.x + xoffset, rect.y + yoffset);
const wxString label = m_labels[n];
int tw;
dc.GetTextExtent(label, &tw, NULL);
dc.SetFont(GetFont());
dc.DrawText
(
label,
rect.x + xoffset + (WIDTH - tw) / 2,
rect.y + yoffset + m_backgrounds[n].GetHeight() + BORDER
);
if ( GetSelection() == n )
{
// draw current position
if ( m_viewPos.IsEmpty() )
return;
wxRect view(m_viewPos);
view.Offset(rect.GetTopLeft());
view.Offset(wxPoint(xoffset, yoffset));
dc.SetBrush(*wxTRANSPARENT_BRUSH);
dc.SetPen(wxPen(*wxBLUE));
dc.DrawRectangle(view);
}
}