Separated out Win95 versions of gauge, slider; added wxTabCtrl::GetCurFocus
[wxWidgets.git] / src / msw / gauge95.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: gauge95.cpp
3 // Purpose: wxGauge95 class
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation "gauge95.h"
14 #endif
15
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/defs.h"
25 #endif
26
27 #if USE_GAUGE && defined(__WIN95__)
28
29 #include "wx/msw/gauge95.h"
30 #include "wx/msw/private.h"
31
32 #if defined(__WIN95__) && !defined(__GNUWIN32__)
33 #include <commctrl.h>
34 #endif
35
36 #if !USE_SHARED_LIBRARY
37 IMPLEMENT_DYNAMIC_CLASS(wxGauge95, wxControl)
38 #endif
39
40 bool wxGauge95::Create(wxWindow *parent, const wxWindowID id,
41 const int range,
42 const wxPoint& pos,
43 const wxSize& size,
44 const long style,
45 const wxValidator& validator,
46 const wxString& name)
47 {
48 SetName(name);
49 SetValidator(validator);
50
51 if (parent) parent->AddChild(this);
52 m_rangeMax = range;
53
54 SetBackgroundColour(parent->GetDefaultBackgroundColour()) ;
55 SetForegroundColour(parent->GetDefaultForegroundColour()) ;
56
57 m_windowStyle = style;
58
59 if ( id == -1 )
60 m_windowId = (int)NewControlId();
61 else
62 m_windowId = id;
63
64 int x = pos.x;
65 int y = pos.y;
66 int width = size.x;
67 int height = size.y;
68
69 long msFlags = WS_CHILD | WS_VISIBLE | WS_TABSTOP;
70
71 HWND wx_button =
72 CreateWindowEx(MakeExtendedStyle(m_windowStyle), PROGRESS_CLASS, NULL, msFlags,
73 0, 0, 0, 0, (HWND) parent->GetHWND(), (HMENU)m_windowId,
74 wxGetInstance(), NULL);
75
76 m_hWnd = (WXHWND)wx_button;
77
78 // Subclass again for purposes of dialog editing mode
79 SubclassWin((WXHWND) wx_button);
80
81 SendMessage((HWND) GetHWND(), PBM_SETRANGE, 0, MAKELPARAM(0, range));
82
83 SetFont(* parent->GetFont());
84
85 if (width == -1)
86 width = 50;
87 if (height == -1)
88 height = 50;
89 SetSize(x, y, width, height);
90
91 ShowWindow((HWND) GetHWND(), SW_SHOW);
92
93 return TRUE;
94 }
95
96 void wxGauge95::SetSize(const int x, const int y, const int width, const int height, const int sizeFlags)
97 {
98 int currentX, currentY;
99 GetPosition(&currentX, &currentY);
100 int x1 = x;
101 int y1 = y;
102 int w1 = width;
103 int h1 = height;
104
105 if (x == -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
106 x1 = currentX;
107 if (y == -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
108 y1 = currentY;
109
110 // If we're prepared to use the existing size, then...
111 if (width == -1 && height == -1 && ((sizeFlags & wxSIZE_AUTO) != wxSIZE_AUTO))
112 {
113 GetSize(&w1, &h1);
114 }
115
116 // Deal with default size (using -1 values)
117 if (w1<=0)
118 w1 = DEFAULT_ITEM_WIDTH;
119
120 if (h1<=0)
121 h1 = DEFAULT_ITEM_HEIGHT;
122
123 MoveWindow((HWND) GetHWND(), x1, y1, w1, h1, TRUE);
124
125 #if WXWIN_COMPATIBILITY
126 GetEventHandler()->OldOnSize(width, height);
127 #else
128 wxSizeEvent event(wxSize(width, height), m_windowId);
129 event.eventObject = this;
130 GetEventHandler()->ProcessEvent(event);
131 #endif
132 }
133
134 void wxGauge95::SetShadowWidth(const int w)
135 {
136 }
137
138 void wxGauge95::SetBezelFace(const int w)
139 {
140 }
141
142 void wxGauge95::SetRange(const int r)
143 {
144 m_rangeMax = r;
145
146 SendMessage((HWND) GetHWND(), PBM_SETRANGE, 0, MAKELPARAM(0, r));
147 }
148
149 void wxGauge95::SetValue(const int pos)
150 {
151 m_gaugePos = pos;
152
153 SendMessage((HWND) GetHWND(), PBM_SETPOS, pos, 0);
154 }
155
156 int wxGauge95::GetShadowWidth(void) const
157 {
158 return 0;
159 }
160
161 int wxGauge95::GetBezelFace(void) const
162 {
163 return 0;
164 }
165
166 int wxGauge95::GetRange(void) const
167 {
168 return m_rangeMax;
169 }
170
171 int wxGauge95::GetValue(void) const
172 {
173 return m_gaugePos;
174 }
175
176 void wxGauge95::SetForegroundColour(const wxColour& col)
177 {
178 m_foregroundColour = col ;
179 }
180
181 void wxGauge95::SetBackgroundColour(const wxColour& col)
182 {
183 m_backgroundColour = col ;
184 }
185
186 #endif // USE_GAUGE