Audacity 3.2.0
LabelDialog.cpp
Go to the documentation of this file.
1/**********************************************************************
2
3 Audacity: A Digital Audio Editor
4
5 LabelDialog.cpp
6
7 Dominic Mazzoni
8
9*******************************************************************//*******************************************************************/
15
16
17#include "LabelDialog.h"
18
19#include <wx/defs.h>
20#include <wx/choice.h>
21#include <wx/dc.h>
22#include <wx/grid.h>
23#include <wx/scrolbar.h>
24#include <wx/settings.h>
25#include <wx/stattext.h>
26#include <wx/textdlg.h>
27
28#include "ShuttleGui.h"
29#include "LabelTrack.h"
30#include "Prefs.h"
31#include "Project.h"
32#include "SelectFile.h"
33#include "ViewInfo.h"
34#include "Viewport.h"
36#include "AudacityMessageBox.h"
38#include "widgets/Grid.h"
39#include "HelpSystem.h"
41
42#include "FileNames.h"
43#include <limits>
44
46{
54};
55
56
57
59{
60 public:
61 RowData(int index_, const wxString &title_, const SelectedRegion &selectedRegion_)
62 : index(index_), title(title_), selectedRegion(selectedRegion_)
63 {}
64
65 int index;
66 wxString title;
68};
69
70enum {
71 ID_INSERTA = 11000,
76};
77
78BEGIN_EVENT_TABLE(LabelDialog, wxDialogWrapper)
79 EVT_GRID_SELECT_CELL(LabelDialog::OnSelectCell)
80 EVT_GRID_CELL_CHANGED(LabelDialog::OnCellChange)
88 EVT_COMMAND(wxID_ANY, EVT_TIMETEXTCTRL_UPDATED, LabelDialog::OnUpdate)
89 EVT_COMMAND(wxID_ANY, EVT_FREQUENCYTEXTCTRL_UPDATED,
90 LabelDialog::OnFreqUpdate)
91 EVT_BUTTON(wxID_HELP, LabelDialog::OnHelp)
93
94LabelDialog::LabelDialog(wxWindow *parent,
97 LabelTrack *selectedTrack,
98 int index,
99 ViewInfo &viewinfo,
100 const NumericFormatID & format,
101 const NumericFormatID &freqFormat)
102: wxDialogWrapper(parent,
103 wxID_ANY,
104 XO("Edit Labels"),
105 wxDefaultPosition,
106 wxSize(800, 600),
107 wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
108 , mProject{ project }
109 , mTracks(tracks)
110 , mSelectedTrack(selectedTrack)
111 , mIndex(index)
112 , mViewInfo(&viewinfo)
113 , mFormat(format)
114 , mFreqFormat(freqFormat)
115{
116 SetName();
117 Populate();
118}
119
121{
122}
123
125{
126 // Build the initial (empty) grid
127 mGrid->CreateGrid(0, Col_Max, wxGrid::wxGridSelectRows);
128 mGrid->SetDefaultCellAlignment(wxALIGN_LEFT, wxALIGN_CENTER);
129 mGrid->SetRowLabelSize(0);
130
131 size_t ii = 0;
132 for ( const auto &label : {
133 /* i18n-hint: (noun). A track contains waves, audio etc.*/
134 XO("Track"),
135 /* i18n-hint: (noun)*/
136 XO("Label"),
137 /* i18n-hint: (noun) of a label*/
138 XO("Start Time"),
139 /* i18n-hint: (noun) of a label*/
140 XO("End Time"),
141 /* i18n-hint: (noun) of a label*/
142 XO("Low Frequency"),
143 /* i18n-hint: (noun) of a label*/
144 XO("High Frequency"),
145 })
146 mGrid->SetColLabelValue( ii++, label.Translation() );
147
148 // Create and remember editors. No need to DELETE these as the wxGrid will
149 // do it for us. (The DecRef() that is needed after GetDefaultEditorForType
150 // becomes the duty of the wxGridCellAttr objects after we set them in the grid.)
151 mChoiceEditor = (ChoiceEditor *) mGrid->GetDefaultEditorForType(GRID_VALUE_CHOICE);
152 mTimeEditor = static_cast<NumericEditor*>
153 (mGrid->GetDefaultEditorForType(GRID_VALUE_TIME));
154 mFrequencyEditor = static_cast<NumericEditor *>
155 (mGrid->GetDefaultEditorForType(GRID_VALUE_FREQUENCY));
156
157 // Initialize and set the track name column attributes
158 wxGridCellAttr *attr;
159 mGrid->SetColAttr(Col_Track, (attr = safenew wxGridCellAttr));
160 attr->SetEditor(mChoiceEditor);
161 mTrackNames.push_back(_("New..."));
162
163 // Initialize and set the time column attributes
164 mGrid->SetColAttr(Col_Stime, (attr = safenew wxGridCellAttr));
165 // Don't need DecRef() after this GetDefaultRendererForType.
166 attr->SetRenderer(mGrid->GetDefaultRendererForType(GRID_VALUE_TIME));
167 attr->SetEditor(mTimeEditor);
168 attr->SetAlignment(wxALIGN_CENTER, wxALIGN_CENTER);
169
170 mGrid->SetColAttr(Col_Etime, attr->Clone());
171
172 // Initialize and set the frequency column attributes
173 mGrid->SetColAttr(Col_Lfreq, (attr = safenew wxGridCellAttr));
174 // Don't need DecRef() after this GetDefaultRendererForType.
175 attr->SetRenderer(mGrid->GetDefaultRendererForType(GRID_VALUE_FREQUENCY));
176 attr->SetEditor(mFrequencyEditor);
177 attr->SetAlignment(wxALIGN_CENTER, wxALIGN_CENTER);
178
179 mGrid->SetColAttr(Col_Hfreq, attr->Clone());
180
181 // Seems there's a bug in wxGrid. Adding only 1 row does not
182 // allow SetCellSize() to work properly and you will not get
183 // the expected 1 row by 4 column cell.
184 //
185 // So, we set the minimum row height to 0 and basically hide
186 // the extra row by setting its height to 0. And not allowing the
187 // rows to be manually resized prevents the user from ever seeing
188 // the extra row.
189 mGrid->SetRowMinimalAcceptableHeight(0);
190 mGrid->EnableDragRowSize(false);
191
192 // Locate all labels in current track list
194
195 // Populate the grid
197
198 // Resize the label name column and ensure it doesn't go below an
199 // arbitrary width.
200 //
201 // This should not be in TransferDataToWindow() since a user might
202 // resize the column and we'd resize it back to the minimum.
203 mGrid->AutoSizeColumn(Col_Label, false );
204 mGrid->SetColSize(Col_Label, wxMax(150, mGrid->GetColSize(Col_Label)));
205 mGrid->SetColMinimalWidth(Col_Label, mGrid->GetColSize(Col_Label));
206
207}
208
209
212{
213
214 //------------------------- Main section --------------------
215 ShuttleGui S(this, eIsCreating);
217 // ----------------------- End of main section --------------
218
219 // Go populate the macros list.
221
222 // Layout the works
223 Layout();
224 //Fit();
225
226 // Resize width based on width of columns and the vertical scrollbar
227 wxRect r = mGrid->GetGridColLabelWindow()->GetRect();
228 wxScrollBar sb(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxSB_VERTICAL);
229 r.width += sb.GetSize().GetWidth() + 6;
230
231 // Add the size of the right column of buttons too...
232 wxWindow * w = FindWindowById( ID_IMPORT, this );
233 wxASSERT( w );
234 if( w )
235 r.width += w->GetSize().GetWidth();
236
237 SetClientSize(r.width, 300);
238
239 // Make sure it doesn't go below this size
240 r = GetRect();
241 SetSizeHints(r.GetWidth(), r.GetHeight());
242
243 // Bug 1465
244 // There might be a saved size, in which case use that.
245 ReadSize();
246
247 // Center on display
248 Center();
249}
250
252{
253 S.AddFixedText(XO("Press F2 or double click to edit cell contents."));
254 S.StartHorizontalLay(wxEXPAND,1);
255 {
256 S.StartVerticalLay(wxEXPAND,1);
257 {
260 wxID_ANY);
261 S.Prop(1).AddWindow(mGrid);
262 }
263 S.EndVerticalLay();
264 S.StartVerticalLay(0);
265 {
266 //S.Id(ID_INSERTA).AddButton(XO("&Insert"), wxALIGN_LEFT);
267 S.Id(ID_INSERTB).AddButton(XXO("&Insert"), wxALIGN_LEFT);
268 //S.Id(EditButtonID).AddButton(XO("&Edit"), wxALIGN_LEFT);
269 S.Id(ID_REMOVE).AddButton(XXO("De&lete"), wxALIGN_LEFT);
270 S.Id(ID_IMPORT).AddButton(XXO("I&mport..."), wxALIGN_LEFT);
271 S.Id(ID_EXPORT).AddButton(XXO("&Export..."), wxALIGN_LEFT);
272 }
273 S.EndVerticalLay();
274 }
275 S.EndHorizontalLay();
276
277 S.StartHorizontalLay(wxALIGN_RIGHT, false);
278 {
279 S.AddStandardButtons( eOkButton | eCancelButton | eHelpButton);
280 }
281 S.EndHorizontalLay();
282}
283
284void LabelDialog::OnHelp(wxCommandEvent & WXUNUSED(event))
285{
286 const auto &page = GetHelpPageName();
287 HelpSystem::ShowHelp(this, page, true);
288}
289
290
292{
293 int cnt = mData.size();
294 int i;
295
296 // Set the editor parameters. Do this each time since they may change
297 // due to NEW tracks and change in NumericTextCtrl format.
301
302 // Disable redrawing until we're done
303 mGrid->BeginBatch();
304
305 // Delete all rows
306 if (mGrid->GetNumberRows()) {
307 mGrid->DeleteRows(0, mGrid->GetNumberRows());
308 }
309
310 // Add the exact number that we'll need
311 mGrid->InsertRows(0, cnt);
312
313 // Populate the rows
314 for (i = 0; i < cnt; i++) {
315 RowData &rd = mData[i];
316
317 // Set the cell contents
318 mGrid->SetCellValue(i, Col_Track, TrackName(rd.index));
319 mGrid->SetCellValue(i, Col_Label, rd.title);
320 mGrid->SetCellValue(i, Col_Stime,
321 wxString::Format(wxT("%g"), rd.selectedRegion.t0()));
322 mGrid->SetCellValue(i, Col_Etime,
323 wxString::Format(wxT("%g"), rd.selectedRegion.t1()));
324 mGrid->SetCellValue(i, Col_Lfreq,
325 wxString::Format(wxT("%g"), rd.selectedRegion.f0()));
326 mGrid->SetCellValue(i, Col_Hfreq,
327 wxString::Format(wxT("%g"), rd.selectedRegion.f1()));
328 }
329
330 // Autosize all the rows
331 mGrid->AutoSizeRows(true);
332
333 // Resize the track name column. Use a wxChoice to determine the maximum
334 // width needed.
335 wxChoice tc(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, mTrackNames);
336 mGrid->SetColSize(Col_Track, tc.GetSize().x);
337 mGrid->SetColMinimalWidth(Col_Track, tc.GetSize().x);
338
339 // Autosize the time columns and set their minimal widths
340 mGrid->AutoSizeColumn(Col_Stime);
341 mGrid->AutoSizeColumn(Col_Etime);
342 mGrid->AutoSizeColumn(Col_Lfreq);
343 mGrid->AutoSizeColumn(Col_Hfreq);
344
345 // We're done, so allow the grid to redraw
346 mGrid->EndBatch();
347
348 return true;
349}
350
351bool LabelDialog::Show(bool show)
352{
353 bool ret = wxDialogWrapper::Show(show);
354
355#if defined(__WXMAC__) || defined(__WXGTK__)
356 if (show) {
357 mGrid->SetFocus(); // Required for Linux and Mac.
358 }
359#endif
360
361 // Set initial row
362 // (This will not work until the grid is actually displayed)
363 if (show && mInitialRow != -1) {
364 mGrid->GoToCell(mInitialRow, Col_Label);
365 }
366
367 return ret;
368}
369
371{
372 int cnt = mData.size();
373 int i;
374 int tndx = 0;
375
376 // Clear label tracks of labels
377 for (auto lt : mTracks->Any<LabelTrack>()) {
378 ++tndx;
379 if (!mSelectedTrack) {
380 for (i = lt->GetNumLabels() - 1; i >= 0 ; i--) {
381 lt->DeleteLabel(i);
382 }
383 }
384 else if (mSelectedTrack == lt && mIndex > -1) {
385 lt->DeleteLabel(mIndex);
386 }
387 else
388 // Do nothing to the nonselected tracks
389 ;
390 }
391
392 // Create any added tracks
393 while (tndx < (int)mTrackNames.size() - 1) {
394
395 // Extract the name
396 wxString name = mTrackNames[tndx + 1].AfterFirst(wxT('-')).Mid(1);
397
398 // Create the NEW track and add to track list
399 auto newTrack = std::make_shared<LabelTrack>();
400 newTrack->SetName(name);
401 mTracks->Add( newTrack );
402 tndx++;
403 }
404
405 // Repopulate with updated labels
406 for (i = 0; i < cnt; i++) {
407 RowData &rd = mData[i];
408
409 // Look for track with matching index
410 tndx = 1;
411 LabelTrack *lt{};
412 for (auto t : mTracks->Any<LabelTrack>()) {
413 lt = t;
414 if (rd.index == tndx++) {
415 break;
416 }
417 }
418 wxASSERT(lt);
419 if (!lt)
420 return false;
421
422 // Add the label to it
423 lt->AddLabel(rd.selectedRegion, rd.title);
425 }
426
427 return true;
428}
429
431{
432 if (mGrid->IsCellEditControlShown()) {
433 mGrid->HideCellEditControl();
434 mGrid->SaveEditControlValue();
435 }
436
437 return true;
438}
439
440wxString LabelDialog::TrackName(int & index, const wxString &dflt)
441{
442 // Generate a NEW track name if the passed index is out of range
443 if (index < 1 || index >= (int)mTrackNames.size()) {
444 index = mTrackNames.size();
445 mTrackNames.push_back(wxString::Format(wxT("%d - %s"), index, dflt));
446 }
447
448 // Return the track name
449 return mTrackNames[index];
450}
451
453{
454 // Add labels from all label tracks
455 for (auto lt : mTracks->Any<const LabelTrack>()) {
456 AddLabels(lt);
457 }
458
460
461 if (mData.size() == 0) {
462 wxCommandEvent e;
463 OnInsert(e);
464 }
465}
466
468{
469 wxString lab;
470 int tndx = 0;
471 int i;
472
473 // Add a NEW track name
474 TrackName(tndx, t->GetName());
475
476 // If editor was invoked for one label, add that one only, else add all.
477 if (!mSelectedTrack || mSelectedTrack == t) {
478 for (i = 0; i < t->GetNumLabels(); i++) {
479 const LabelStruct *ls = t->GetLabel(i);
480
481 if (mIndex < 0 || mIndex == i)
482 mData.push_back(RowData(tndx, ls->title, ls->selectedRegion));
483 }
484 }
485}
486
488{
489 int cnt = mData.size();
490 mInitialRow = -1;
491
492 if (cnt == 0)
493 return;
494
495 // find closest previous label
496
497 double distMin = std::numeric_limits<double>::max();
498 double dist;
499 double t0 = mViewInfo->selectedRegion.t0();
500 int i;
501 for (i = 0; i < cnt; i++)
502 {
503 dist = t0 - mData[i].selectedRegion.t0();
504 if (dist >= 0.0 && dist < distMin)
505 {
506 mInitialRow = i;
507 distMin = dist;
508 }
509 }
510
511 // if no previous label was found, find first label
512
513 if (mInitialRow == -1)
514 {
515 double t0Min = std::numeric_limits<double>::max();
516 for (i = 0; i < cnt; i++)
517 {
518 if (mData[i].selectedRegion.t0() < t0Min)
519 {
520 mInitialRow = i;
521 t0Min = mData[i].selectedRegion.t0();
522 }
523 }
524 }
525}
526
527void LabelDialog::OnUpdate(wxCommandEvent &event)
528{
529 // Remember the NEW format and repopulate grid
532 NumericConverterType_TIME(), event.GetString()).Internal();
534
535 event.Skip(false);
536}
537
538void LabelDialog::OnFreqUpdate(wxCommandEvent &event)
539{
540 // Remember the NEW format and repopulate grid
543 NumericConverterType_FREQUENCY(), event.GetString()).Internal();
545
546 event.Skip(false);
547}
548
549void LabelDialog::OnInsert(wxCommandEvent &event)
550{
551 int cnt = mData.size();
552 int row = 0;
553 int index = 0;
554
555 // Make sure the edit control isn't active before inserting any rows
556 if (mGrid->IsCellEditControlShown()) {
557 mGrid->HideCellEditControl();
558 }
559
560 // Attempt to guess which track the label should reside on
561 if (cnt > 0) {
562 row = mGrid->GetGridCursorRow();
563 if (row > 0 && row >= cnt) {
565 .index( mGrid->GetCellValue(row - 1, Col_Track) );
566 }
567 else {
569 .index( mGrid->GetCellValue(row, Col_Track) );
570 }
571 }
572
573 // Insert NEW label before or after the current row
574 if (event.GetId() == ID_INSERTA && row < cnt) {
575 row++;
576 }
577 mData.insert(mData.begin() + row, RowData(index, wxT(""), SelectedRegion()));
578
579 // Repopulate the grid
581
582 // Reposition cursor to NEW row/col and put user into edit mode to
583 // set the label name
584 mGrid->SetGridCursor(row, Col_Label);
585 mGrid->EnableCellEditControl(true);
586 mGrid->ShowCellEditControl();
587}
588
589void LabelDialog::OnRemove(wxCommandEvent & WXUNUSED(event))
590{
591 int row = mGrid->GetGridCursorRow();
592 int col = mGrid->GetGridCursorCol();
593 int cnt = mData.size();
594
595 // Don't try to remove if no labels exist
596 if (cnt == 0) {
597 return;
598 }
599
600 // Make sure the edit control isn't active before removing rows
601 if (mGrid->IsCellEditControlShown()) {
602 mGrid->HideCellEditControl();
603 }
604
605 // Remove the row
606 //RowData &rd = mData[row];
607 mData.erase(mData.begin() + row);
608
609 // Repopulate the grid
611
612 // Reposition the cursor
613 if (row > 0 && row >= --cnt) {
614 row--;
615 }
616 mGrid->SetGridCursor(row, col);
617
618 // Make sure focus isn't lost
619 if (mData.size() == 0 && wxWindow::FindFocus() == mGrid->GetGridWindow()) {
620 wxWindow *ok = wxWindow::FindWindowById( wxID_OK, this);
621 if (ok) {
622 ok->SetFocus();
623 }
624 }
625}
626
627void LabelDialog::OnImport(wxCommandEvent & WXUNUSED(event))
628{
629 // Ask user for a filename
630 wxString fileName =
631 SelectFile(FileNames::Operation::Open,
632 XO("Select a text file containing labels"),
633 wxEmptyString, // Path
634 wxT(""), // Name
635 wxT("txt"), // Extension
637 wxRESIZE_BORDER, // Flags
638 this); // Parent
639
640 // They gave us one...
641 if (!fileName.empty()) {
643
644 wxTextFile f;
645
646 // Get at the data
647 f.Open(fileName);
648 if (!f.IsOpened()) {
650 XO("Could not open file: %s").Format( fileName ) );
651 }
652 else {
653 // Create a temporary label track and load the labels
654 // into it
655 auto lt = std::make_shared<LabelTrack>();
656 lt->Import(f, format);
657
658 // Add the labels to our collection
659 AddLabels(lt.get());
660
661 // Done with the temporary track
662 }
663
664 // Repopulate the grid
666 }
667}
668
669void LabelDialog::OnExport(wxCommandEvent & WXUNUSED(event))
670{
671 int cnt = mData.size();
672
673 // Silly user (could just disable the button, but that's a hassle ;-))
674 if (cnt == 0) {
675 AudacityMessageBox( XO("No labels to export.") );
676 return;
677 }
678
679 // Extract the actual name.
680 wxString fName = mTrackNames[mTrackNames.size() - 1].AfterFirst(wxT('-')).Mid(1);
681
682 fName = SelectFile(FileNames::Operation::Export,
683 XO("Export Labels As:"),
684 wxEmptyString,
685 fName,
686 wxT("txt"),
688 wxFD_SAVE | wxFD_OVERWRITE_PROMPT | wxRESIZE_BORDER,
689 this);
690
691 if (fName.empty())
692 return;
693
695
696 // Move existing files out of the way. Otherwise wxTextFile will
697 // append to (rather than replace) the current file.
698
699 if (wxFileExists(fName)) {
700#ifdef __WXGTK__
701 wxString safetyFileName = fName + wxT("~");
702#else
703 wxString safetyFileName = fName + wxT(".bak");
704#endif
705
706 if (wxFileExists(safetyFileName))
707 wxRemoveFile(safetyFileName);
708
709 wxRename(fName, safetyFileName);
710 }
711
712 wxTextFile f(fName);
713#ifdef __WXMAC__
714 wxFile{}.Create(fName);
715#else
716 f.Create();
717#endif
718 f.Open();
719 if (!f.IsOpened()) {
721 XO("Couldn't write to file: %s").Format( fName ) );
722 return;
723 }
724
725 // Transfer our collection to a temporary label track
726 auto lt = std::make_shared<LabelTrack>();
727 int i;
728
729 for (i = 0; i < cnt; i++) {
730 RowData &rd = mData[i];
731
732 lt->AddLabel(rd.selectedRegion, rd.title);
733 }
734
735 // Export them and clean
736 lt->Export(f, format);
737
738#ifdef __WXMAC__
739 f.Write(wxTextFileType_Mac);
740#else
741 f.Write();
742#endif
743 f.Close();
744}
745
746void LabelDialog::OnSelectCell(wxGridEvent &event)
747{
748 for (auto t: *mTracks)
749 t->SetSelected( true );
750
751 if (!mData.empty())
752 {
753 RowData &rd = mData[event.GetRow()];
755
757 }
758
759 event.Skip();
760}
761
762void LabelDialog::OnCellChange(wxGridEvent &event)
763{
764 static bool guard = false;
765 int row = event.GetRow();
766
767 // Guard against recursion which can happen when a change to the "NEW label" row
768 // is made. When InsertRow() is done in TransferDataToWindow(), checks are made
769 // within wxGrid to see if the edit control is active and since it hasn't yet
770 // been marked inactive on the first time through here, we get entered again.
771 // Sort of a double change. I think this is probably a bug in wxGrid.
772 if (guard) {
773 return;
774 }
775 guard = true;
776
777 // The change was to an existing label, so go process it based
778 // on which column was changed.
779 RowData *rd = &mData[row];
780 switch (event.GetCol())
781 {
782 case Col_Track:
783 OnChangeTrack(event, row, rd);
784 break;
785
786 case Col_Label:
787 OnChangeLabel(event, row, rd);
788 break;
789
790 case Col_Stime:
791 OnChangeStime(event, row, rd);
792 break;
793
794 case Col_Etime:
795 OnChangeEtime(event, row, rd);
796 break;
797
798 case Col_Lfreq:
799 OnChangeLfreq(event, row, rd);
800 break;
801
802 case Col_Hfreq:
803 OnChangeHfreq(event, row, rd);
804 break;
805 }
806
807 // Done...no need for protection anymore
808 guard = false;
809
810 return;
811}
812
813void LabelDialog::OnChangeTrack(wxGridEvent & WXUNUSED(event), int row, RowData *rd)
814{
815 wxString val = mGrid->GetCellValue(row, Col_Track);
816
817 // User selected the "New..." choice so ask for a NEW name
818 if ( make_iterator_range( mTrackNames ).index( val ) == 0 ) {
820 XO("New Label Track"),
821 XO("Enter track name"),
822 /* i18n-hint: (noun) it's the name of a kind of track.*/
823 XO("Label Track").Translation());
824
825 // User canceled so repopulating the grid will set the track
826 // name to the original value
827 if (d.ShowModal() == wxID_CANCEL) {
829 return;
830 }
831
832 // Force generation of a NEW track name
833 rd->index = 0;
834 TrackName(rd->index, d.GetValue());
835 }
836 else {
837 // Remember the tracks index
838 rd->index = make_iterator_range( mTrackNames ).index( val );
839 }
840
841 // Repopulate the grid
843
844 return;
845}
846
847void LabelDialog::OnChangeLabel(wxGridEvent & WXUNUSED(event), int row, RowData *rd)
848{
849 // Remember the value...no need to repopulate
850 rd->title = mGrid->GetCellValue(row, Col_Label);
851
852 return;
853}
854
855void LabelDialog::OnChangeStime(wxGridEvent & WXUNUSED(event), int row, RowData *rd)
856{
857 // Remember the value...no need to repopulate
858 double t {};
859 mGrid->GetCellValue(row, Col_Stime).ToDouble(&t);
860 rd->selectedRegion.setT0(t, false);
861 mGrid->SetCellValue(row, Col_Etime, wxString::Format(wxT("%g"),
862 rd->selectedRegion.t1()));
863
864 return;
865}
866
867void LabelDialog::OnChangeEtime(wxGridEvent & WXUNUSED(event), int row, RowData *rd)
868{
869 // Remember the value...no need to repopulate
870 double t {};
871 mGrid->GetCellValue(row, Col_Etime).ToDouble(&t);
872 rd->selectedRegion.setT1(t, false);
873 mGrid->SetCellValue(row, Col_Stime, wxString::Format(wxT("%g"),
874 rd->selectedRegion.t0()));
875
876 return;
877}
878
879void LabelDialog::OnChangeLfreq(wxGridEvent & WXUNUSED(event), int row, RowData *rd)
880{
881 // Remember the value...no need to repopulate
882 double f;
883 mGrid->GetCellValue(row, Col_Lfreq).ToDouble(&f);
884 rd->selectedRegion.setF0(f, false);
885 mGrid->SetCellValue(row, Col_Hfreq, wxString::Format(wxT("%g"),
886 rd->selectedRegion.f1()));
887
888 return;
889}
890
891void LabelDialog::OnChangeHfreq(wxGridEvent & WXUNUSED(event), int row, RowData *rd)
892{
893 // Remember the value...no need to repopulate
894 double f;
895 mGrid->GetCellValue(row, Col_Hfreq).ToDouble(&f);
896 rd->selectedRegion.setF1(f, false);
897 mGrid->SetCellValue(row, Col_Lfreq, wxString::Format(wxT("%g"),
898 rd->selectedRegion.f0()));
899
900 return;
901}
902
904 wxSize sz = GetSize();
905 int prefWidth, prefHeight;
906 gPrefs->Read(wxT("/LabelEditor/Width"), &prefWidth, sz.x);
907 gPrefs->Read(wxT("/LabelEditor/Height"), &prefHeight, sz.y);
908
909 wxRect screenRect(wxGetClientDisplayRect());
910 wxSize prefSize = wxSize(prefWidth, prefHeight);
911 prefSize.DecTo(screenRect.GetSize());
912 SetSize(prefSize);
913}
914
916 wxSize sz = GetSize();
917 gPrefs->Write(wxT("/LabelEditor/Width"), sz.x);
918 gPrefs->Write(wxT("/LabelEditor/Height"), sz.y);
919 gPrefs->Flush();
920}
921
922void LabelDialog::OnOK(wxCommandEvent & WXUNUSED(event))
923{
924 if (mGrid->IsCellEditControlShown()) {
925 mGrid->SaveEditControlValue();
926 mGrid->HideCellEditControl();
927 return;
928 }
929
930 // Standard handling
931 if (Validate() && TransferDataFromWindow()) {
932 WriteSize();
933 EndModal(wxID_OK);
934 }
935
936 return;
937}
938
939void LabelDialog::OnCancel(wxCommandEvent & WXUNUSED(event))
940{
941 if (mGrid->IsCellEditControlShown()) {
942 auto editor = mGrid->GetCellEditor(mGrid->GetGridCursorRow(),
943 mGrid->GetGridCursorCol());
944 editor->Reset();
945 // To avoid memory leak, don't forget DecRef()!
946 editor->DecRef();
947 mGrid->HideCellEditControl();
948 return;
949 }
950
951 WriteSize();
952 // Standard handling
953 EndModal(wxID_CANCEL);
954
955 return;
956}
wxT("CloseDown"))
int AudacityMessageBox(const TranslatableString &message, const TranslatableString &caption, long style, wxWindow *parent, int x, int y)
END_EVENT_TABLE()
EVT_BUTTON(wxID_NO, DependencyDialog::OnNo) EVT_BUTTON(wxID_YES
const TranslatableString name
Definition: Distortion.cpp:76
XO("Cut/Copy/Paste")
XXO("&Cut/Copy/Paste Toolbar")
#define GRID_VALUE_TIME
Definition: Grid.h:36
#define GRID_VALUE_FREQUENCY
Definition: Grid.h:37
#define GRID_VALUE_CHOICE
Definition: Grid.h:123
#define _(s)
Definition: Internat.h:73
IteratorRange< Iterator > make_iterator_range(const Iterator &i1, const Iterator &i2)
Definition: IteratorX.h:210
@ ID_INSERTB
Definition: LabelDialog.cpp:72
@ ID_IMPORT
Definition: LabelDialog.cpp:74
@ ID_INSERTA
Definition: LabelDialog.cpp:71
@ ID_REMOVE
Definition: LabelDialog.cpp:73
@ ID_EXPORT
Definition: LabelDialog.cpp:75
EVT_COMMAND(wxID_ANY, EVT_FREQUENCYTEXTCTRL_UPDATED, LabelDialog::OnFreqUpdate) LabelDialog
Definition: LabelDialog.cpp:89
Column
Definition: LabelDialog.cpp:46
@ Col_Track
Definition: LabelDialog.cpp:47
@ Col_Label
Definition: LabelDialog.cpp:48
@ Col_Stime
Definition: LabelDialog.cpp:49
@ Col_Hfreq
Definition: LabelDialog.cpp:52
@ Col_Lfreq
Definition: LabelDialog.cpp:51
@ Col_Etime
Definition: LabelDialog.cpp:50
@ Col_Max
Definition: LabelDialog.cpp:53
LabelFormat
Definition: LabelTrack.h:30
#define safenew
Definition: MemoryX.h:9
const NumericConverterType & NumericConverterType_FREQUENCY()
const NumericConverterType & NumericConverterType_TIME()
audacity::BasicSettings * gPrefs
Definition: Prefs.cpp:68
FilePath SelectFile(FileNames::Operation op, const TranslatableString &message, const FilePath &default_path, const FilePath &default_filename, const FileExtension &default_extension, const FileTypes &fileTypes, int flags, wxWindow *parent)
Definition: SelectFile.cpp:17
@ eIsCreating
Definition: ShuttleGui.h:37
@ eOkButton
Definition: ShuttleGui.h:609
@ eCancelButton
Definition: ShuttleGui.h:610
@ eHelpButton
Definition: ShuttleGui.h:613
TranslatableString label
Definition: TagsEditor.cpp:165
const auto tracks
const auto project
#define S(N)
Definition: ToChars.cpp:64
The top-level handle to an Audacity project. It serves as a source of events that other objects can b...
Definition: Project.h:90
Wrap wxTextEntryDialog so that caption IS translatable.
Modified version of wxGridChoiceEditor using wxChoice instead of wxComboBox.
Definition: Grid.h:127
void SetChoices(const wxArrayString &choices)
Definition: Grid.cpp:442
const wxString & Internal() const
FILES_API const FileType AllFiles
Definition: FileNames.h:70
FILES_API const FileType TextFiles
Definition: FileNames.h:73
Abstract base class used in importing a file.
static FormatterContext ProjectContext(const AudacityProject &project)
Supplies an accessible grid based on wxGrid.
Definition: Grid.h:190
static void ShowHelp(wxWindow *parent, const FilePath &localFileName, const URLString &remoteURL, bool bModal=false, bool alwaysDefaultBrowser=false)
Definition: HelpSystem.cpp:231
Dialog for editing labels.
Definition: LabelDialog.h:36
void OnChangeEtime(wxGridEvent &event, int row, RowData *rd)
bool Validate() override
void PopulateLabels()
void OnFreqUpdate(wxCommandEvent &event)
void OnChangeTrack(wxGridEvent &event, int row, RowData *rd)
void OnRemove(wxCommandEvent &event)
wxString TrackName(int &index, const wxString &dflt=_("Label Track"))
ChoiceEditor * mChoiceEditor
Definition: LabelDialog.h:98
bool TransferDataToWindow() override
void AddLabels(const LabelTrack *t)
void OnSelectCell(wxGridEvent &event)
void FindInitialRow()
void WriteSize()
ViewInfo * mViewInfo
Definition: LabelDialog.h:107
LabelTrack * mSelectedTrack
Definition: LabelDialog.h:105
void OnHelp(wxCommandEvent &event)
void OnOK(wxCommandEvent &event)
void OnCellChange(wxGridEvent &event)
NumericFormatID mFormat
Definition: LabelDialog.h:109
Grid * mGrid
Definition: LabelDialog.h:97
TrackList * mTracks
Definition: LabelDialog.h:104
void OnChangeLabel(wxGridEvent &event, int row, RowData *rd)
void OnInsert(wxCommandEvent &event)
void OnChangeLfreq(wxGridEvent &event, int row, RowData *rd)
NumericFormatID mFreqFormat
Definition: LabelDialog.h:109
void FindAllLabels()
NumericEditor * mFrequencyEditor
Definition: LabelDialog.h:100
wxArrayString mTrackNames
Definition: LabelDialog.h:108
RowDataArray mData
Definition: LabelDialog.h:102
void OnCancel(wxCommandEvent &event)
ManualPageID GetHelpPageName()
Definition: LabelDialog.h:63
AudacityProject & mProject
Definition: LabelDialog.h:95
bool TransferDataFromWindow() override
void OnExport(wxCommandEvent &event)
void OnChangeStime(wxGridEvent &event, int row, RowData *rd)
void PopulateOrExchange(ShuttleGui &S)
void OnImport(wxCommandEvent &event)
void OnUpdate(wxCommandEvent &event)
NumericEditor * mTimeEditor
Definition: LabelDialog.h:99
bool Show(bool show=true) override
void OnChangeHfreq(wxGridEvent &event, int row, RowData *rd)
void ReadSize()
void Populate()
Creates the dialog and its contents.
A LabelStruct holds information for ONE label in a LabelTrack.
Definition: LabelTrack.h:37
wxString title
Definition: LabelTrack.h:78
SelectedRegion selectedRegion
Definition: LabelTrack.h:77
A LabelTrack is a Track that holds labels (LabelStruct).
Definition: LabelTrack.h:95
int GetNumLabels() const
static const FileNames::FileType WebVTTFiles
Definition: LabelTrack.h:128
const LabelStruct * GetLabel(int index) const
static const FileNames::FileType SubripFiles
Definition: LabelTrack.h:127
static LabelFormat FormatForFileName(const wxString &fileName)
Definition: LabelTrack.cpp:704
static LabelTrackView & Get(LabelTrack &)
double t0() const
Definition: ViewInfo.h:35
wxGridCellEditor for the NumericTextCtrl.
Definition: Grid.h:40
void SetFormat(const NumericFormatID &format)
Definition: Grid.cpp:231
SelectedRegion selectedRegion
Definition: LabelDialog.cpp:67
RowData(int index_, const wxString &title_, const SelectedRegion &selectedRegion_)
Definition: LabelDialog.cpp:61
wxString title
Definition: LabelDialog.cpp:66
Defines a selected portion of a project.
double t1() const
double f0() const
bool setF0(double f, bool maySwap=true)
bool setF1(double f, bool maySwap=true)
double t0() const
bool setT0(double t, bool maySwap=true)
double f1() const
bool setT1(double t, bool maySwap=true)
Derived from ShuttleGuiBase, an Audacity specific class for shuttling data to and from GUI.
Definition: ShuttleGui.h:640
const wxString & GetName() const
Name is always the same for all channels of a group.
Definition: Track.cpp:64
A flat linked list of tracks supporting Add, Remove, Clear, and Contains, serialization of the list o...
Definition: Track.h:850
auto Any() -> TrackIterRange< TrackType >
Definition: Track.h:950
TrackKind * Add(const std::shared_ptr< TrackKind > &t, bool assignIds=true)
Definition: Track.h:1048
wxString Translation() const
NotifyingSelectedRegion selectedRegion
Definition: ViewInfo.h:215
void Redraw()
Definition: Viewport.cpp:749
static Viewport & Get(AudacityProject &project)
Definition: Viewport.cpp:33
virtual bool Flush() noexcept=0
virtual bool Write(const wxString &key, bool value)=0
virtual bool Read(const wxString &key, bool *value) const =0
std::unique_ptr< WindowPlacement > FindFocus()
Find the window that is accepting keyboard input, if any.
Definition: BasicUI.h:375
IMPORT_EXPORT_API ExportResult Show(ExportTask exportTask)
NUMERIC_FORMATS_API NumericFormatSymbol Lookup(const FormatterContext &context, const NumericConverterType &type, const NumericFormatID &formatIdentifier)
Looks up the format, returns Default for the type if the format is not registered.