]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/scrolwin.cpp
Fix a number of mingw compile errors.
[wxWidgets.git] / src / gtk / scrolwin.cpp
CommitLineData
30954328 1/////////////////////////////////////////////////////////////////////////////
80fdcdb9 2// Name: src/gtk/scrolwin.cpp
30954328 3// Purpose: wxScrolledWindow implementation
47a3ff38 4// Author: Robert Roebling
566d84a7 5// Modified by: Ron Lee
d32e78bd 6// Vadim Zeitlin: removed 90% of duplicated common code
30954328
RR
7// Created: 01/02/97
8// RCS-ID: $Id$
47a3ff38 9// Copyright: (c) Robert Roebling
65571936 10// Licence: wxWindows licence
30954328
RR
11/////////////////////////////////////////////////////////////////////////////
12
30954328
RR
13// For compilers that support precompilation, includes "wx.h".
14#include "wx/wxprec.h"
15
16#ifdef __BORLANDC__
17 #pragma hdrstop
18#endif
19
e1bf3ad3 20#include "wx/scrolwin.h"
30954328 21
8aa40b04 22#include <gtk/gtk.h>
385e8575 23#include "wx/gtk/private/gtk2-compat.h"
30954328 24
30954328 25// ----------------------------------------------------------------------------
d32e78bd 26// wxScrollHelper implementation
30954328
RR
27// ----------------------------------------------------------------------------
28
29e1398f
VZ
29void wxScrollHelper::SetScrollbars(int pixelsPerUnitX, int pixelsPerUnitY,
30 int noUnitsX, int noUnitsY,
31 int xPos, int yPos,
8aa40b04 32 bool noRefresh)
30954328 33{
8aa40b04
PC
34 base_type::SetScrollbars(
35 pixelsPerUnitX, pixelsPerUnitY, noUnitsX, noUnitsY, xPos, yPos, noRefresh);
385e8575
PC
36
37 gtk_range_set_value(m_win->m_scrollBar[wxWindow::ScrollDir_Horz], m_xScrollPosition);
38 gtk_range_set_value(m_win->m_scrollBar[wxWindow::ScrollDir_Vert], m_yScrollPosition);
39 m_win->m_scrollPos[wxWindow::ScrollDir_Horz] =
40 gtk_range_get_value(m_win->m_scrollBar[wxWindow::ScrollDir_Horz]);
41 m_win->m_scrollPos[wxWindow::ScrollDir_Vert] =
42 gtk_range_get_value(m_win->m_scrollBar[wxWindow::ScrollDir_Vert]);
30954328
RR
43}
44
29e1398f
VZ
45void wxScrollHelper::DoAdjustScrollbar(GtkRange* range,
46 int pixelsPerLine,
47 int winSize,
48 int virtSize,
49 int *pos,
50 int *lines,
51 int *linesPerPage)
30954328 52{
6d595f3d
JS
53 if (!range)
54 return;
55
f6814d01
PC
56 int upper;
57 int page_size;
fb18afdd 58 if (pixelsPerLine > 0 && winSize > 0 && winSize < virtSize)
4ca24f18 59 {
f6814d01
PC
60 upper = (virtSize + pixelsPerLine - 1) / pixelsPerLine;
61 page_size = winSize / pixelsPerLine;
5713b349
RR
62 *lines = upper;
63 *linesPerPage = page_size;
5713b349
RR
64 }
65 else
66 {
67 // GtkRange won't allow upper == lower, so for disabled state use [0,1]
68 // with a page size of 1. This will also clamp position to 0.
f6814d01
PC
69 upper = 1;
70 page_size = 1;
5713b349
RR
71 *lines = 0;
72 *linesPerPage = 0;
4ca24f18 73 }
9ec927f8 74
385e8575
PC
75 gtk_range_set_increments(range, 1, page_size);
76 gtk_adjustment_set_page_size(gtk_range_get_adjustment(range), page_size);
f6814d01 77 gtk_range_set_range(range, 0, upper);
ae4c09a8
PC
78
79 // ensure that the scroll position is always in valid range
80 if (*pos > *lines)
81 *pos = *lines;
30954328
RR
82}
83
29e1398f 84void wxScrollHelper::AdjustScrollbars()
566d84a7 85{
9ec927f8 86 int vw, vh;
3d9ecb87
VZ
87 m_targetWindow->GetVirtualSize(&vw, &vh);
88
89 int w, h;
90 const wxSize availSize = GetSizeAvailableForScrollTarget(
91 m_win->GetSize() - m_win->GetWindowBorderSize());
92 if ( availSize.x >= vw && availSize.y >= vh )
93 {
94 w = availSize.x;
95 h = availSize.y;
96
97 // we know that the scrollbars will be removed
98 DoAdjustHScrollbar(w, vw);
99 DoAdjustVScrollbar(h, vh);
100
101 return;
102 }
830ed6d9 103
cd38dd5b 104 m_targetWindow->GetClientSize(&w, NULL);
9ec927f8
VZ
105 DoAdjustHScrollbar(w, vw);
106
cd38dd5b 107 m_targetWindow->GetClientSize(NULL, &h);
9ec927f8 108 DoAdjustVScrollbar(h, vh);
cd38dd5b
PC
109
110 const int w_old = w;
111 m_targetWindow->GetClientSize(&w, NULL);
9ec927f8 112 if ( w != w_old )
cd38dd5b
PC
113 {
114 // It is necessary to repeat the calculations in this case to avoid an
115 // observed infinite series of size events, involving alternating
116 // changes in visibility of the scrollbars.
117 // At this point, GTK+ has already queued a resize, which will cause
118 // AdjustScrollbars() to be called again. If the scrollbar visibility
119 // is not correct before then, yet another resize will occur, possibly
120 // leading to an unending series if the sizes are just right.
9ec927f8
VZ
121 DoAdjustHScrollbar(w, vw);
122
cd38dd5b 123 m_targetWindow->GetClientSize(NULL, &h);
9ec927f8 124 DoAdjustVScrollbar(h, vh);
cd38dd5b 125 }
830ed6d9
RR
126}
127
29e1398f
VZ
128void wxScrollHelper::DoScrollOneDir(int orient,
129 int pos,
130 int pixelsPerLine,
131 int *posOld)
30486297 132{
d32e78bd 133 if ( pos != -1 && pos != *posOld && pixelsPerLine )
30486297 134 {
add7cadd
PC
135 m_win->SetScrollPos(orient, pos);
136 pos = m_win->GetScrollPos(orient);
30486297 137
d32e78bd
VZ
138 int diff = (*posOld - pos)*pixelsPerLine;
139 m_targetWindow->ScrollWindow(orient == wxHORIZONTAL ? diff : 0,
140 orient == wxHORIZONTAL ? 0 : diff);
30954328 141
d32e78bd 142 *posOld = pos;
2b5f62a0 143 }
30954328
RR
144}
145
29e1398f 146void wxScrollHelper::DoScroll( int x_pos, int y_pos )
30954328 147{
9a83f860 148 wxCHECK_RET( m_targetWindow != 0, wxT("No target window") );
30954328 149
0b0f6f87
VZ
150 DoScrollOneDir(wxHORIZONTAL, x_pos, m_xScrollPixelsPerLine, &m_xScrollPosition);
151 DoScrollOneDir(wxVERTICAL, y_pos, m_yScrollPixelsPerLine, &m_yScrollPosition);
30954328 152}
6362d82b
VZ
153
154// ----------------------------------------------------------------------------
155// scrollbars visibility
156// ----------------------------------------------------------------------------
157
158namespace
159{
160
161GtkPolicyType GtkPolicyFromWX(wxScrollbarVisibility visibility)
162{
163 GtkPolicyType policy;
164 switch ( visibility )
165 {
166 case wxSHOW_SB_NEVER:
167 policy = GTK_POLICY_NEVER;
168 break;
169
170 case wxSHOW_SB_DEFAULT:
171 policy = GTK_POLICY_AUTOMATIC;
172 break;
173
2805bdda
VZ
174 default:
175 wxFAIL_MSG( wxS("unknown scrollbar visibility") );
176 // fall through
177
6362d82b
VZ
178 case wxSHOW_SB_ALWAYS:
179 policy = GTK_POLICY_ALWAYS;
180 break;
181 }
182
183 return policy;
184}
185
186} // anonymous namespace
187
29e1398f
VZ
188void wxScrollHelper::DoShowScrollbars(wxScrollbarVisibility horz,
189 wxScrollbarVisibility vert)
6362d82b
VZ
190{
191 GtkScrolledWindow * const scrolled = GTK_SCROLLED_WINDOW(m_win->m_widget);
192 wxCHECK_RET( scrolled, "window must be created" );
193
194 gtk_scrolled_window_set_policy(scrolled,
195 GtkPolicyFromWX(horz),
196 GtkPolicyFromWX(vert));
197}