summaryrefslogtreecommitdiff
path: root/src/wx/timing_panel.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/timing_panel.cc')
-rw-r--r--src/wx/timing_panel.cc34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/wx/timing_panel.cc b/src/wx/timing_panel.cc
index 716a27b66..ab98a5094 100644
--- a/src/wx/timing_panel.cc
+++ b/src/wx/timing_panel.cc
@@ -40,6 +40,40 @@ TimingPanel::TimingPanel (ContentPanel* p)
wxFlexGridSizer* grid = new wxFlexGridSizer (2, 4, 4);
_sizer->Add (grid, 0, wxALL, 8);
+ wxSize size = TimecodeBase::size (this);
+
+ wxSizer* labels = new wxBoxSizer (wxHORIZONTAL);
+ //// TRANSLATORS: this is an abbreviation for "hours"
+ wxStaticText* t = new wxStaticText (this, wxID_ANY, _("h"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
+#ifdef DCPOMATIC_LINUX
+ /* Hack to work around failure to centre text on GTK */
+ gtk_label_set_line_wrap (GTK_LABEL (t->GetHandle()), FALSE);
+#endif
+ labels->Add (t, 1, wxEXPAND);
+ add_label_to_sizer (labels, this, wxT (":"), false);
+ //// TRANSLATORS: this is an abbreviation for "minutes"
+ t = new wxStaticText (this, wxID_ANY, _("m"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
+#ifdef DCPOMATIC_LINUX
+ gtk_label_set_line_wrap (GTK_LABEL (t->GetHandle()), FALSE);
+#endif
+ labels->Add (t, 1, wxEXPAND);
+ add_label_to_sizer (labels, this, wxT (":"), false);
+ //// TRANSLATORS: this is an abbreviation for "seconds"
+ t = new wxStaticText (this, wxID_ANY, _("s"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
+#ifdef DCPOMATIC_LINUX
+ gtk_label_set_line_wrap (GTK_LABEL (t->GetHandle()), FALSE);
+#endif
+ labels->Add (t, 1, wxEXPAND);
+ add_label_to_sizer (labels, this, wxT (":"), false);
+ //// TRANSLATORS: this is an abbreviation for "frames"
+ t = new wxStaticText (this, wxID_ANY, _("f"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
+#ifdef DCPOMATIC_LINUX
+ gtk_label_set_line_wrap (GTK_LABEL (t->GetHandle()), FALSE);
+#endif
+ labels->Add (t, 1, wxEXPAND);
+ grid->Add (new wxStaticText (this, wxID_ANY, wxT ("")));
+ grid->Add (labels);
+
add_label_to_sizer (grid, this, _("Position"), true);
_position = new Timecode<DCPTime> (this);
grid->Add (_position);