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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
|
/**********************************************************************
Audacity: A Digital Audio Editor
AStatus.cpp
Dominic Mazzoni
**********************************************************************/
#include <wx/dcclient.h>
#include <wx/dcmemory.h>
#include <wx/image.h>
#include <wx/menu.h>
#include <wx/msgdlg.h>
#include <wx/textdlg.h>
#include "AColor.h"
#include "AStatus.h"
int GetStatusHeight()
{
return 55;
}
enum {
AStatusFirstID = 2700,
OnRate8ID,
OnRate11ID,
OnRate16ID,
OnRate22ID,
OnRate44ID,
OnRate48ID,
OnRateOtherID
};
BEGIN_EVENT_TABLE(AStatus, wxWindow)
EVT_MOUSE_EVENTS(AStatus::OnMouseEvent)
EVT_PAINT(AStatus::OnPaint)
EVT_MENU(OnRate8ID, AStatus::OnRate8)
EVT_MENU(OnRate11ID, AStatus::OnRate11)
EVT_MENU(OnRate16ID, AStatus::OnRate16)
EVT_MENU(OnRate22ID, AStatus::OnRate22)
EVT_MENU(OnRate44ID, AStatus::OnRate44)
EVT_MENU(OnRate48ID, AStatus::OnRate48)
EVT_MENU(OnRateOtherID, AStatus::OnRateOther)
END_EVENT_TABLE()
AStatus::AStatus(wxWindow * parent, wxWindowID id,
const wxPoint & pos,
const wxSize & size,
double rate,
AStatusListener * listener):wxWindow(parent, id, pos,
size),
mListener(listener), mRate(rate), mBitmap(NULL)
{
GetSize(&mWidth, &mHeight);
mRateMenu = new wxMenu();
mRateMenu->Append(OnRate8ID, "8000 Hz");
mRateMenu->Append(OnRate11ID, "11025 Hz");
mRateMenu->Append(OnRate16ID, "16000 Hz");
mRateMenu->Append(OnRate22ID, "22050 Hz");
mRateMenu->Append(OnRate44ID, "44100 Hz");
mRateMenu->Append(OnRate48ID, "48000 Hz");
mRateMenu->Append(OnRateOtherID, "Other...");
mRateField.x = 0;
mRateField.y = 0;
mRateField.width = 0;
mRateField.height = 0;
}
AStatus::~AStatus()
{
if (mBitmap)
delete mBitmap;
delete mRateMenu;
}
void AStatus::SetField(const char *msg, int fieldNum)
{
if (fieldNum < 0 || fieldNum >= 10)
return;
if (mField[fieldNum] != msg) {
mField[fieldNum] = msg;
Refresh(false);
}
}
void AStatus::SetRate(double rate)
{
if (rate != mRate) {
mRate = rate;
Refresh(false);
}
}
void AStatus::OnPaint(wxPaintEvent & event)
{
wxPaintDC dc(this);
int width, height;
GetSize(&width, &height);
if (width != mWidth || height != mHeight) {
mWidth = width;
mHeight = height;
delete mBitmap;
mBitmap = NULL;
}
if (!mBitmap)
mBitmap = new wxBitmap(mWidth, mHeight);
wxMemoryDC memDC;
memDC.SelectObject(*mBitmap);
AColor::Medium(&memDC, false);
memDC.DrawRectangle(0, 0, mWidth, mHeight);
int fontSize = 10;
#ifdef __WXMSW__
fontSize = 8;
#endif
memDC.SetPen(*wxBLACK_PEN);
memDC.DrawLine(0, 0, mWidth, 0);
wxRect outline;
outline.x = 0;
outline.y = 1;
outline.width = mWidth - 1;
outline.height = mHeight - 2;
AColor::Bevel(memDC, true, outline);
wxFont statusFont(fontSize, wxSWISS, wxNORMAL, wxNORMAL);
memDC.SetFont(statusFont);
wxRect msgField;
msgField.x = 4;
msgField.y = 6;
msgField.width = mWidth - 8;
msgField.height = 17;
AColor::Bevel(memDC, false, msgField);
wxString msg = mField[0];
long textWidth, textHeight;
memDC.GetTextExtent(msg, &textWidth, &textHeight);
while (msg != "" && textWidth > msgField.width) {
msg = msg.Left(msg.Length() - 1);
memDC.GetTextExtent(msg, &textWidth, &textHeight);
}
memDC.DrawText(msg, msgField.x + 3, msgField.y + 2);
wxRect cursorField;
cursorField.x = 140;
cursorField.y = 29;
cursorField.width = mWidth - 144;
cursorField.height = 17;
#ifdef __WXMAC__
cursorField.width -= 15;
#endif
AColor::Bevel(memDC, false, cursorField);
msg = mField[1];
memDC.GetTextExtent(msg, &textWidth, &textHeight);
while (msg != "" && textWidth > cursorField.width) {
msg = msg.Left(msg.Length() - 1);
memDC.GetTextExtent(msg, &textWidth, &textHeight);
}
memDC.DrawText(msg, cursorField.x + 3, cursorField.y + 2);
mRateField.x = 80;
mRateField.y = 29;
mRateField.width = 50;
mRateField.height = 17;
AColor::Bevel(memDC, true, mRateField);
memDC.DrawText("Project rate:", 3, mRateField.y + 2);
memDC.DrawText(wxString::Format("%d", int (mRate + 0.5)),
mRateField.x + 3, mRateField.y + 2);
dc.Blit(0, 0, mWidth, mHeight, &memDC, 0, 0, wxCOPY, FALSE);
}
void AStatus::OnMouseEvent(wxMouseEvent & event)
{
if (event.ButtonDown() && mRateField.Inside(event.m_x, event.m_y)) {
{
wxClientDC dc(this);
AColor::Bevel(dc, false, mRateField);
}
PopupMenu(mRateMenu, mRateField.x, mRateField.y + mRateField.height);
{
wxClientDC dc(this);
AColor::Bevel(dc, true, mRateField);
}
}
}
void AStatus::OnRate8()
{
mRate = 8000.0;
mListener->AS_SetRate(mRate);
Refresh(false);
}
void AStatus::OnRate11()
{
mRate = 11025.0;
mListener->AS_SetRate(mRate);
Refresh(false);
}
void AStatus::OnRate16()
{
mRate = 16000.0;
mListener->AS_SetRate(mRate);
Refresh(false);
}
void AStatus::OnRate22()
{
mRate = 22050.0;
mListener->AS_SetRate(mRate);
Refresh(false);
}
void AStatus::OnRate44()
{
mRate = 44100.0;
mListener->AS_SetRate(mRate);
Refresh(false);
}
void AStatus::OnRate48()
{
mRate = 48000.0;
mListener->AS_SetRate(mRate);
Refresh(false);
}
void AStatus::OnRateOther()
{
wxString defaultStr;
defaultStr.Printf("%d", (int) (mRate + 0.5));
wxString rateStr =
wxGetTextFromUser("Enter a rate in Hz (samples per second):",
"Set Rate",
defaultStr);
if (rateStr != "") {
double theRate;
if (rateStr.ToDouble(&theRate) && theRate >= 1 && theRate <= 100000) {
mRate = theRate;
mListener->AS_SetRate(mRate);
Refresh(false);
} else
wxMessageBox("Invalid rate.");
}
}
|