summaryrefslogtreecommitdiff
path: root/src/wx
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-12-23 00:07:25 +0100
committerCarl Hetherington <cth@carlh.net>2025-12-23 00:07:25 +0100
commitd2b7059dae5a440f0a44f2ad8e7b1f0e834a7a9e (patch)
tree4c9c18102e6daa020429a9c70b99f8a9a2e9554d /src/wx
parent79a262837eb94facf447c6dd77fb0ff9db658d8a (diff)
Display markers in the player (#2793).
The space above the position slider was already reserved, but nothing would be shown there.
Diffstat (limited to 'src/wx')
-rw-r--r--src/wx/controls.cc2
-rw-r--r--src/wx/markers_panel.cc7
-rw-r--r--src/wx/markers_panel.h3
3 files changed, 9 insertions, 3 deletions
diff --git a/src/wx/controls.cc b/src/wx/controls.cc
index 57adeb34b..fce3fd7eb 100644
--- a/src/wx/controls.cc
+++ b/src/wx/controls.cc
@@ -67,7 +67,7 @@ using namespace dcpomatic;
Controls::Controls(wxWindow* parent, FilmViewer& viewer, bool editor_controls)
: wxPanel(parent)
- , _markers(new MarkersPanel(this, viewer))
+ , _markers(new MarkersPanel(this, viewer, editor_controls))
, _slider(new wxSlider(this, wxID_ANY, 0, 0, 4096))
, _viewer(viewer)
, _rewind_button(new Button(this, char_to_wx("|<")))
diff --git a/src/wx/markers_panel.cc b/src/wx/markers_panel.cc
index e01d3bc28..021128ddf 100644
--- a/src/wx/markers_panel.cc
+++ b/src/wx/markers_panel.cc
@@ -55,9 +55,10 @@ enum {
};
-MarkersPanel::MarkersPanel(wxWindow* parent, FilmViewer& viewer)
+MarkersPanel::MarkersPanel(wxWindow* parent, FilmViewer& viewer, bool allow_editing)
: wxPanel(parent, wxID_ANY, wxDefaultPosition, wxSize(-1, 40))
, _viewer(viewer)
+ , _allow_editing(allow_editing)
{
Bind(wxEVT_PAINT, boost::bind(&MarkersPanel::paint, this));
Bind(wxEVT_MOTION, boost::bind(&MarkersPanel::mouse_moved, this, _1));
@@ -267,6 +268,10 @@ MarkersPanel::mouse_left_down()
void
MarkersPanel::mouse_right_down(wxMouseEvent& ev)
{
+ if (!_allow_editing) {
+ return;
+ }
+
wxMenu menu;
if (_over) {
DCPOMATIC_ASSERT(_over->marker);
diff --git a/src/wx/markers_panel.h b/src/wx/markers_panel.h
index 760df23ac..4c5fd63cf 100644
--- a/src/wx/markers_panel.h
+++ b/src/wx/markers_panel.h
@@ -35,7 +35,7 @@ class wxTipWindow;
class MarkersPanel : public wxPanel
{
public:
- MarkersPanel(wxWindow* parent, FilmViewer& viewer);
+ MarkersPanel(wxWindow* parent, FilmViewer& viewer, bool allow_editing);
void set_film(std::weak_ptr<Film> film);
@@ -58,5 +58,6 @@ private:
MarkerLayoutComponent const* _over = nullptr;
FilmViewer& _viewer;
MarkerLayoutComponent const* _menu_marker = nullptr;
+ bool _allow_editing;
};