wxToolBar API changes; now frames manage their toolbar & statusbar properly;
[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, wxWindowID id,
41 int range,
42 const wxPoint& pos,
43 const wxSize& size,
44 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(int x, int y, int width, int height, 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 AdjustForParentClientOrigin(x1, y1, sizeFlags);
111
112 // If we're prepared to use the existing size, then...
113 if (width == -1 && height == -1 && ((sizeFlags & wxSIZE_AUTO) != wxSIZE_AUTO))
114 {
115 GetSize(&w1, &h1);
116 }
117
118 // Deal with default size (using -1 values)
119 if (w1<=0)
120 w1 = DEFAULT_ITEM_WIDTH;
121
122 if (h1<=0)
123 h1 = DEFAULT_ITEM_HEIGHT;
124
125 MoveWindow((HWND) GetHWND(), x1, y1, w1, h1, TRUE);
126 }
127
128 void wxGauge95::SetShadowWidth(int w)
129 {
130 }
131
132 void wxGauge95::SetBezelFace(int w)
133 {
134 }
135
136 void wxGauge95::SetRange(int r)
137 {
138 m_rangeMax = r;
139
140 SendMessage((HWND) GetHWND(), PBM_SETRANGE, 0, MAKELPARAM(0, r));
141 }
142
143 void wxGauge95::SetValue(int pos)
144 {
145 m_gaugePos = pos;
146
147 SendMessage((HWND) GetHWND(), PBM_SETPOS, pos, 0);
148 }
149
150 int wxGauge95::GetShadowWidth(void) const
151 {
152 return 0;
153 }
154
155 int wxGauge95::GetBezelFace(void) const
156 {
157 return 0;
158 }
159
160 int wxGauge95::GetRange(void) const
161 {
162 return m_rangeMax;
163 }
164
165 int wxGauge95::GetValue(void) const
166 {
167 return m_gaugePos;
168 }
169
170 void wxGauge95::SetForegroundColour(const wxColour& col)
171 {
172 m_foregroundColour = col ;
173 }
174
175 void wxGauge95::SetBackgroundColour(const wxColour& col)
176 {
177 m_backgroundColour = col ;
178 }
179
180 #endif // USE_GAUGE