]> git.saurik.com Git - wxWidgets.git/blame - src/msw/statbr95.cpp
wxTreeCtrl::IsVisible() fix fix - a (LPARAM) typecast was lost in the last checkin
[wxWidgets.git] / src / msw / statbr95.cpp
CommitLineData
2bda0e17
KB
1///////////////////////////////////////////////////////////////////////////////
2// Name: msw/statbr95.cpp
3// Purpose: native implementation of wxStatusBar
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 04.04.98
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9// Licence: wxWindows license
10///////////////////////////////////////////////////////////////////////////////
11
cfe780fb
JS
12#ifdef __GNUG__
13#pragma implementation "statbr95.h"
14#endif
15
2bda0e17
KB
16// for compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19#ifdef __BORLANDC__
20 #pragma hdrstop
21#endif
22
23#ifndef WX_PRECOMP
24 #include "wx/setup.h"
25 #include "wx/frame.h"
26 #include "wx/settings.h"
27 #include "wx/dcclient.h"
28#endif
29
2432b92d
JS
30#ifdef __WIN95__
31
2bda0e17 32#include "wx/log.h"
2bda0e17
KB
33#include "wx/generic/statusbr.h"
34#include "wx/msw/statbr95.h"
35
42e69d6b
VZ
36#include "wx/msw/private.h"
37#include <windowsx.h>
2bda0e17 38
65fd5cb0 39#if !defined(__GNUWIN32__) || defined(__TWIN32__) || defined(wxUSE_NORLANDER_HEADERS)
42e69d6b 40#include <commctrl.h>
ce3ed50d
JS
41#endif
42
ba681060 43#if wxUSE_NATIVE_STATUSBAR
2bda0e17
KB
44
45#if !USE_SHARED_LIBRARY
46 IMPLEMENT_DYNAMIC_CLASS(wxStatusBar95, wxStatusBar);
47
48 BEGIN_EVENT_TABLE(wxStatusBar95, wxStatusBar)
2bda0e17
KB
49 EVT_SIZE(wxStatusBar95::OnSize)
50 END_EVENT_TABLE()
51#endif //USE_SHARED_LIBRARY
52
53
54// ----------------------------------------------------------------------------
55// macros
56// ----------------------------------------------------------------------------
57
58// windowsx.h and commctrl.h don't define those, so we do it here
59#define StatusBar_SetParts(h, n, w) SendMessage(h, SB_SETPARTS, (WPARAM)n, (LPARAM)w)
837e5743 60#define StatusBar_SetText(h, n, t) SendMessage(h, SB_SETTEXT, (WPARAM)n, (LPARAM)(LPCTSTR)t)
2bda0e17 61#define StatusBar_GetTextLen(h, n) LOWORD(SendMessage(h, SB_GETTEXTLENGTH, (WPARAM)n, 0))
837e5743 62#define StatusBar_GetText(h, n, s) LOWORD(SendMessage(h, SB_GETTEXT, (WPARAM)n, (LPARAM)(LPTSTR)s))
2bda0e17
KB
63
64#define hwnd ((HWND)m_hWnd)
65
66// ============================================================================
67// implementation
68// ============================================================================
69
70// ----------------------------------------------------------------------------
71// wxStatusBar95 class
72// ----------------------------------------------------------------------------
73
74wxStatusBar95::wxStatusBar95()
75{
76 SetParent(NULL);
77 m_hWnd = 0;
78 m_windowId = 0;
79}
80
81wxStatusBar95::wxStatusBar95(wxWindow *parent, wxWindowID id, long style)
82{
83 Create(parent, id, style);
84}
85
86bool wxStatusBar95::Create(wxWindow *parent, wxWindowID id, long style)
87{
88 SetParent(parent);
89
8b9518ee
JS
90 if (id == -1)
91 m_windowId = NewControlId();
92 else
93 m_windowId = id;
2bda0e17
KB
94
95 DWORD wstyle = WS_CHILD | WS_VISIBLE;
1c089c47 96 if ( style & wxST_SIZEGRIP )
2bda0e17
KB
97 wstyle |= SBARS_SIZEGRIP;
98
99 m_hWnd = (WXHWND)CreateStatusWindow(wstyle,
223d09f6 100 wxT(""),
2bda0e17
KB
101 (HWND)parent->GetHWND(),
102 m_windowId);
103 if ( m_hWnd == 0 ) {
223d09f6 104 wxLogSysError(wxT("can't create status bar window"));
2bda0e17
KB
105 return FALSE;
106 }
107
108 // this doesn't work: display problems (white 1-2 pixel borders...)
109 // SubclassWin(m_hWnd);
110
111 return TRUE;
112}
113
8b9518ee 114void wxStatusBar95::CopyFieldsWidth(const int widths[])
2bda0e17
KB
115{
116 if (widths && !m_statusWidths)
117 m_statusWidths = new int[m_nFields];
118
119 if ( widths != NULL ) {
120 for ( int i = 0; i < m_nFields; i++ )
121 m_statusWidths[i] = widths[i];
122 }
123 else {
124 delete [] m_statusWidths;
125 m_statusWidths = NULL;
126 }
127}
128
8b9518ee 129void wxStatusBar95::SetFieldsCount(int nFields, const int widths[])
2bda0e17
KB
130{
131 wxASSERT( (nFields > 0) && (nFields < 255) );
132
133 m_nFields = nFields;
134
135 CopyFieldsWidth(widths);
136 SetFieldsWidth();
137}
138
8b9518ee 139void wxStatusBar95::SetStatusWidths(int n, const int widths[])
2bda0e17
KB
140{
141 // @@ I don't understand what this function is for...
142 wxASSERT( n == m_nFields );
143
144 CopyFieldsWidth(widths);
145 SetFieldsWidth();
146}
147
148void wxStatusBar95::SetFieldsWidth()
149{
3175c712
VZ
150 if ( !m_nFields )
151 return;
152
2bda0e17
KB
153 int *pWidths = new int[m_nFields];
154
155 int nWindowWidth, y;
156 GetClientSize(&nWindowWidth, &y);
157
158 if ( m_statusWidths == NULL ) {
159 // default: all fields have the same width
160 int nWidth = nWindowWidth / m_nFields;
161 for ( int i = 0; i < m_nFields; i++ )
c1e34828 162 pWidths[i] = (i + 1) * nWidth;
2bda0e17
KB
163 }
164 else {
165 // -1 doesn't mean the same thing for wxWindows and Win32, recalc
166 int nTotalWidth = 0,
167 nVarCount = 0,
168 i;
169 for ( i = 0; i < m_nFields; i++ ) {
170 if ( m_statusWidths[i] == -1 )
171 nVarCount++;
172 else
173 nTotalWidth += m_statusWidths[i];
174 }
175
176 if ( nVarCount == 0 ) {
177 // wrong! at least one field must be of variable width
178 wxFAIL;
179
180 nVarCount++;
181 }
182
183 int nVarWidth = (nWindowWidth - nTotalWidth) / nVarCount;
184
185 // do fill the array
186 int nCurPos = 0;
187 for ( i = 0; i < m_nFields; i++ ) {
188 if ( m_statusWidths[i] == -1 )
189 nCurPos += nVarWidth;
190 else
191 nCurPos += m_statusWidths[i];
192 pWidths[i] = nCurPos;
193 }
194 }
195
196 if ( !StatusBar_SetParts(hwnd, m_nFields, pWidths) ) {
223d09f6 197 wxLogLastError(wxT("StatusBar_SetParts"));
2bda0e17
KB
198 }
199
200 delete [] pWidths;
201}
202
debe6624 203void wxStatusBar95::SetStatusText(const wxString& strText, int nField)
2bda0e17
KB
204{
205 if ( !StatusBar_SetText(hwnd, nField, strText) ) {
223d09f6 206 wxLogLastError(wxT("StatusBar_SetText"));
2bda0e17
KB
207 }
208}
209
210wxString wxStatusBar95::GetStatusText(int nField) const
211{
b7346a70 212 wxASSERT( (nField > -1) && (nField < m_nFields) );
2bda0e17 213
223d09f6 214 wxString str(wxT(""));
b7346a70
JS
215 int len = StatusBar_GetTextLen(hwnd, nField);
216 if (len > 0)
217 {
218 StatusBar_GetText(hwnd, nField, str.GetWriteBuf(len));
8b9518ee 219 str.UngetWriteBuf();
b7346a70 220 }
2bda0e17
KB
221 return str;
222}
223
224void wxStatusBar95::OnSize(wxSizeEvent& event)
225{
226 FORWARD_WM_SIZE(hwnd, SIZE_RESTORED, event.GetSize().x, event.GetSize().y,
227 SendMessage);
228
229 // adjust fields widths to the new size
230 SetFieldsWidth();
231}
232
ba681060
VZ
233#endif // wxUSE_NATIVE_STATUSBAR
234
235#else
236 #error "wxStatusBar95 is only available under Windows 95 and later."
237#endif // __WIN95__
238