Use wxDC for all drawing of the audio mapping view, removing
authorCarl Hetherington <cth@carlh.net>
Sun, 24 May 2020 12:20:43 +0000 (14:20 +0200)
committerCarl Hetherington <cth@carlh.net>
Sun, 24 May 2020 15:33:30 +0000 (17:33 +0200)
use of wxGraphicsContext.  This seems to fix strange rendering
problems on Windows.

src/wx/audio_mapping_view.cc
src/wx/audio_mapping_view.h

index 9002992986b55e4548ffa6a7eef6e46284805365..9e3ff787d93e7cf4b9c455c0fe99d1638815d59f 100644 (file)
@@ -159,9 +159,8 @@ AudioMappingView::scroll ()
 }
 
 void
 }
 
 void
-AudioMappingView::paint_static (wxDC& dc, wxGraphicsContext* gc)
+AudioMappingView::paint_static (wxDC& dc)
 {
 {
-       gc->SetAntialiasMode (wxANTIALIAS_DEFAULT);
        dc.SetFont (wxSWISS_FONT->Bold());
        wxCoord label_width;
        wxCoord label_height;
        dc.SetFont (wxSWISS_FONT->Bold());
        wxCoord label_width;
        wxCoord label_height;
@@ -178,11 +177,10 @@ AudioMappingView::paint_static (wxDC& dc, wxGraphicsContext* gc)
                );
 
        dc.SetFont (*wxSWISS_FONT);
                );
 
        dc.SetFont (*wxSWISS_FONT);
-       gc->SetPen (*wxBLACK_PEN);
 }
 
 void
 }
 
 void
-AudioMappingView::paint_column_labels (wxDC& dc, wxGraphicsContext* gc)
+AudioMappingView::paint_column_labels (wxDC& dc)
 {
        wxCoord label_width;
        wxCoord label_height;
 {
        wxCoord label_width;
        wxCoord label_height;
@@ -193,33 +191,31 @@ AudioMappingView::paint_column_labels (wxDC& dc, wxGraphicsContext* gc)
                ++N;
        }
 
                ++N;
        }
 
-       wxGraphicsPath lines = gc->CreatePath ();
-       lines.MoveToPoint (LEFT_WIDTH, GRID_SPACING);
-       lines.AddLineToPoint (LEFT_WIDTH + _output_channels.size() * GRID_SPACING, GRID_SPACING);
-       lines.MoveToPoint (LEFT_WIDTH, GRID_SPACING * 2);
-       lines.AddLineToPoint (LEFT_WIDTH + _output_channels.size() * GRID_SPACING, GRID_SPACING * 2);
-       gc->StrokePath (lines);
+       dc.DrawLine(wxPoint(LEFT_WIDTH, GRID_SPACING), wxPoint(LEFT_WIDTH + _output_channels.size() * GRID_SPACING, GRID_SPACING));
+       dc.DrawLine(wxPoint(LEFT_WIDTH, GRID_SPACING * 2), wxPoint(LEFT_WIDTH + _output_channels.size() * GRID_SPACING, GRID_SPACING * 2));
 }
 
 void
 }
 
 void
-AudioMappingView::paint_column_lines (wxGraphicsContext* gc)
+AudioMappingView::paint_column_lines (wxDC& dc)
 {
 {
-       wxGraphicsPath lines = gc->CreatePath ();
        for (size_t i = 0; i < _output_channels.size(); ++i) {
        for (size_t i = 0; i < _output_channels.size(); ++i) {
-               lines.MoveToPoint    (LEFT_WIDTH + GRID_SPACING * i, GRID_SPACING);
-               lines.AddLineToPoint (LEFT_WIDTH + GRID_SPACING * i, TOP_HEIGHT + _input_channels.size() * GRID_SPACING);
+               dc.DrawLine (
+                       wxPoint(LEFT_WIDTH + GRID_SPACING * i, GRID_SPACING),
+                       wxPoint(LEFT_WIDTH + GRID_SPACING * i, TOP_HEIGHT + _input_channels.size() * GRID_SPACING)
+                       );
        }
        }
-       lines.MoveToPoint    (LEFT_WIDTH + GRID_SPACING * _output_channels.size(), GRID_SPACING);
-       lines.AddLineToPoint (LEFT_WIDTH + GRID_SPACING * _output_channels.size(), TOP_HEIGHT + _input_channels.size() * GRID_SPACING);
-       gc->StrokePath (lines);
+
+       dc.DrawLine (
+               wxPoint(LEFT_WIDTH + GRID_SPACING * _output_channels.size(), GRID_SPACING),
+               wxPoint(LEFT_WIDTH + GRID_SPACING * _output_channels.size(), TOP_HEIGHT + _input_channels.size() * GRID_SPACING)
+               );
 }
 
 void
 }
 
 void
-AudioMappingView::paint_row_labels (wxDC& dc, wxGraphicsContext* gc)
+AudioMappingView::paint_row_labels (wxDC& dc)
 {
        wxCoord label_width;
        wxCoord label_height;
 {
        wxCoord label_width;
        wxCoord label_height;
-       wxGraphicsPath lines = gc->CreatePath ();
 
        /* Row channel labels */
 
 
        /* Row channel labels */
 
@@ -233,8 +229,10 @@ AudioMappingView::paint_row_labels (wxDC& dc, wxGraphicsContext* gc)
        /* Vertical lines on the left */
 
        for (int i = 1; i < 3; ++i) {
        /* Vertical lines on the left */
 
        for (int i = 1; i < 3; ++i) {
-               lines.MoveToPoint    (GRID_SPACING * i, TOP_HEIGHT);
-               lines.AddLineToPoint (GRID_SPACING * i, TOP_HEIGHT + _input_channels.size() * GRID_SPACING);
+               dc.DrawLine (
+                       wxPoint(GRID_SPACING * i, TOP_HEIGHT),
+                       wxPoint(GRID_SPACING * i, TOP_HEIGHT + _input_channels.size() * GRID_SPACING)
+                       );
        }
 
        /* Group labels and lines */
        }
 
        /* Group labels and lines */
@@ -261,28 +259,26 @@ AudioMappingView::paint_row_labels (wxDC& dc, wxGraphicsContext* gc)
                                );
                }
 
                                );
                }
 
-               lines.MoveToPoint    (GRID_SPACING,     y);
-               lines.AddLineToPoint (GRID_SPACING * 2, y);
+               dc.DrawLine (wxPoint(GRID_SPACING, y), wxPoint(GRID_SPACING * 2, y));
                y += height;
        }
 
                y += height;
        }
 
-       lines.MoveToPoint    (GRID_SPACING,     y);
-       lines.AddLineToPoint (GRID_SPACING * 2, y);
-
-       gc->StrokePath (lines);
-}
+       dc.DrawLine (wxPoint(GRID_SPACING, y), wxPoint(GRID_SPACING * 2, y));
+       }
 
 void
 
 void
-AudioMappingView::paint_row_lines (wxGraphicsContext* gc)
+AudioMappingView::paint_row_lines (wxDC& dc)
 {
 {
-       wxGraphicsPath lines = gc->CreatePath ();
        for (size_t i = 0; i < _input_channels.size(); ++i) {
        for (size_t i = 0; i < _input_channels.size(); ++i) {
-               lines.MoveToPoint (GRID_SPACING * 2, TOP_HEIGHT + GRID_SPACING * i);
-               lines.AddLineToPoint (LEFT_WIDTH + _output_channels.size() * GRID_SPACING, TOP_HEIGHT + GRID_SPACING * i);
+               dc.DrawLine (
+                       wxPoint(GRID_SPACING * 2, TOP_HEIGHT + GRID_SPACING * i),
+                       wxPoint(LEFT_WIDTH + _output_channels.size() * GRID_SPACING, TOP_HEIGHT + GRID_SPACING * i)
+                       );
        }
        }
-       lines.MoveToPoint (GRID_SPACING * 2, TOP_HEIGHT + GRID_SPACING * _input_channels.size());
-       lines.AddLineToPoint (LEFT_WIDTH + _output_channels.size() * GRID_SPACING, TOP_HEIGHT + GRID_SPACING * _input_channels.size());
-       gc->StrokePath (lines);
+       dc.DrawLine (
+               wxPoint(GRID_SPACING * 2, TOP_HEIGHT + GRID_SPACING * _input_channels.size()),
+               wxPoint(LEFT_WIDTH + _output_channels.size() * GRID_SPACING, TOP_HEIGHT + GRID_SPACING * _input_channels.size())
+               );
 }
 
 void
 }
 
 void
@@ -324,27 +320,22 @@ AudioMappingView::paint_indicators (wxDC& dc)
 }
 
 static
 }
 
 static
-void clip (wxDC& dc, wxGraphicsContext* gc, int x, int y, int w, int h)
+void clip (wxDC& dc, int x, int y, int w, int h)
 {
        dc.SetClippingRegion (x, y, w, h);
 {
        dc.SetClippingRegion (x, y, w, h);
-       gc->Clip (x, y, w, h);
 }
 
 static
 }
 
 static
-void translate (wxDC& dc, wxGraphicsContext* gc, int x, int y)
+void translate (wxDC& dc, int x, int y)
 {
 {
-       gc->PushState ();
-       gc->Translate (-x, -y);
        dc.SetLogicalOrigin (x, y);
 }
 
 static
        dc.SetLogicalOrigin (x, y);
 }
 
 static
-void restore (wxDC& dc, wxGraphicsContext* gc)
+void restore (wxDC& dc)
 {
        dc.SetLogicalOrigin (0, 0);
 {
        dc.SetLogicalOrigin (0, 0);
-       gc->PopState ();
        dc.DestroyClippingRegion ();
        dc.DestroyClippingRegion ();
-       gc->ResetClip ();
 }
 
 void
 }
 
 void
@@ -352,72 +343,65 @@ AudioMappingView::paint ()
 {
        wxPaintDC dc (_body);
 
 {
        wxPaintDC dc (_body);
 
-       wxGraphicsContext* gc = wxGraphicsContext::Create (dc);
-       if (!gc) {
-               return;
-       }
-
        int const hs = _horizontal_scroll->GetThumbPosition ();
        int const vs = _vertical_scroll->GetThumbPosition ();
 
        int const hs = _horizontal_scroll->GetThumbPosition ();
        int const vs = _vertical_scroll->GetThumbPosition ();
 
-       paint_static (dc, gc);
+       paint_static (dc);
 
        clip (
 
        clip (
-               dc, gc,
+               dc,
                LEFT_WIDTH,
                0,
                GRID_SPACING * _output_channels.size(),
                GRID_SPACING * (2 + _input_channels.size())
             );
                LEFT_WIDTH,
                0,
                GRID_SPACING * _output_channels.size(),
                GRID_SPACING * (2 + _input_channels.size())
             );
-       translate (dc, gc, hs, 0);
-       paint_column_labels (dc, gc);
-       restore (dc, gc);
+       translate (dc, hs, 0);
+       paint_column_labels (dc);
+       restore (dc);
 
        clip (
 
        clip (
-               dc, gc,
+               dc,
                0,
                TOP_HEIGHT,
                GRID_SPACING * 3,
                min(int(GRID_SPACING * _input_channels.size()), GetSize().GetHeight() - TOP_HEIGHT)
             );
                0,
                TOP_HEIGHT,
                GRID_SPACING * 3,
                min(int(GRID_SPACING * _input_channels.size()), GetSize().GetHeight() - TOP_HEIGHT)
             );
-       translate (dc, gc, 0, vs);
-       paint_row_labels (dc, gc);
-       restore (dc, gc);
+       translate (dc, 0, vs);
+       paint_row_labels (dc);
+       restore (dc);
 
        clip (
 
        clip (
-               dc, gc,
+               dc,
                GRID_SPACING * 2,
                TOP_HEIGHT,
                GRID_SPACING * (1 + _output_channels.size()),
                min(int(GRID_SPACING * (2 + _input_channels.size())), GetSize().GetHeight() - TOP_HEIGHT)
             );
                GRID_SPACING * 2,
                TOP_HEIGHT,
                GRID_SPACING * (1 + _output_channels.size()),
                min(int(GRID_SPACING * (2 + _input_channels.size())), GetSize().GetHeight() - TOP_HEIGHT)
             );
-       translate (dc, gc, hs, vs);
-       paint_row_lines (gc);
-       restore (dc, gc);
+       translate (dc, hs, vs);
+       paint_row_lines (dc);
+       restore (dc);
 
        clip (
 
        clip (
-               dc, gc,
+               dc,
                LEFT_WIDTH,
                GRID_SPACING,
                GRID_SPACING * (1 + _output_channels.size()),
                min(int(GRID_SPACING * (1 + _input_channels.size())), GetSize().GetHeight() - GRID_SPACING)
             );
                LEFT_WIDTH,
                GRID_SPACING,
                GRID_SPACING * (1 + _output_channels.size()),
                min(int(GRID_SPACING * (1 + _input_channels.size())), GetSize().GetHeight() - GRID_SPACING)
             );
-       translate (dc, gc, hs, vs);
-       paint_column_lines (gc);
-       restore (dc, gc);
+       translate (dc, hs, vs);
+       paint_column_lines (dc);
+       restore (dc);
 
        clip (
 
        clip (
-               dc, gc,
+               dc,
                LEFT_WIDTH,
                TOP_HEIGHT,
                GRID_SPACING * _output_channels.size(),
                min(int(GRID_SPACING * _input_channels.size()), GetSize().GetHeight() - TOP_HEIGHT)
             );
                LEFT_WIDTH,
                TOP_HEIGHT,
                GRID_SPACING * _output_channels.size(),
                min(int(GRID_SPACING * _input_channels.size()), GetSize().GetHeight() - TOP_HEIGHT)
             );
-       translate (dc, gc, hs, vs);
+       translate (dc, hs, vs);
        paint_indicators (dc);
        paint_indicators (dc);
-       restore (dc, gc);
-
-       delete gc;
+       restore (dc);
 }
 
 optional<pair<int, int> >
 }
 
 optional<pair<int, int> >
index 88060e461817b4bd147d9e0907b40d417547be76..3057416b29c623e1ad7b7c8fc06b223e89ccf221 100644 (file)
@@ -75,11 +75,11 @@ private:
        void map_values_changed ();
        void setup_sizes ();
        void paint ();
        void map_values_changed ();
        void setup_sizes ();
        void paint ();
-       void paint_static (wxDC& dc, wxGraphicsContext* gc);
-       void paint_column_labels (wxDC& dc, wxGraphicsContext* gc);
-       void paint_column_lines (wxGraphicsContext* gc);
-       void paint_row_labels (wxDC& dc, wxGraphicsContext* gc);
-       void paint_row_lines (wxGraphicsContext* gc);
+       void paint_static (wxDC& dc);
+       void paint_column_labels (wxDC& dc);
+       void paint_column_lines (wxDC& dc);
+       void paint_row_labels (wxDC& dc);
+       void paint_row_lines (wxDC& dc);
        void paint_indicators (wxDC& dc);
        void size (wxSizeEvent &);
        void scroll ();
        void paint_indicators (wxDC& dc);
        void size (wxSizeEvent &);
        void scroll ();