summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-05-15 21:18:32 +0100
committerCarl Hetherington <cth@carlh.net>2019-05-15 21:18:32 +0100
commit7ceb67dae630ddefc10090be5a0a8dea9ac835ad (patch)
tree930d38e03625678c806a9d87767fc25b9a8be050 /src
parenta19daa1abebf1a8e9e942387d2319a778187c0d3 (diff)
Fix scrolling of audio channel group labels.
Diffstat (limited to 'src')
-rw-r--r--src/wx/audio_mapping_view.cc79
1 files changed, 47 insertions, 32 deletions
diff --git a/src/wx/audio_mapping_view.cc b/src/wx/audio_mapping_view.cc
index 5702d2ed6..9be6c9bb9 100644
--- a/src/wx/audio_mapping_view.cc
+++ b/src/wx/audio_mapping_view.cc
@@ -207,30 +207,6 @@ AudioMappingView::paint_column_lines (wxGraphicsContext* gc)
gc->StrokePath (lines);
}
-static
-void clip (wxDC& dc, wxGraphicsContext* gc, int x, int y, int w, int h)
-{
- dc.SetClippingRegion (x, y, w, h);
- gc->Clip (x, y, w, h);
-}
-
-static
-void translate (wxDC& dc, wxGraphicsContext* gc, int x, int y)
-{
- gc->PushState ();
- gc->Translate (-x, -y);
- dc.SetLogicalOrigin (x, y);
-}
-
-static
-void restore (wxDC& dc, wxGraphicsContext* gc)
-{
- dc.SetLogicalOrigin (0, 0);
- gc->PopState ();
- dc.DestroyClippingRegion ();
- gc->ResetClip ();
-}
-
void
AudioMappingView::paint_row_labels (wxDC& dc, wxGraphicsContext* gc)
{
@@ -263,14 +239,29 @@ AudioMappingView::paint_row_labels (wxDC& dc, wxGraphicsContext* gc)
if (label_width > height) {
label_width = height - 8;
}
- clip (dc, gc, GRID_SPACING, y + 4, GRID_SPACING, height - 4);
- dc.DrawRotatedText (
- std_to_wx(i.name),
- GRID_SPACING + (GRID_SPACING - label_height) / 2,
- y + (height + label_width) / 2,
- 90
- );
- restore (dc, gc);
+
+ {
+ int yp = y;
+ if ((yp - 2 * GRID_SPACING) < dc.GetLogicalOrigin().y) {
+ yp += dc.GetLogicalOrigin().y;
+ }
+
+ wxCoord old_x, old_y, old_width, old_height;
+ dc.GetClippingBox (&old_x, &old_y, &old_width, &old_height);
+ dc.DestroyClippingRegion ();
+ dc.SetClippingRegion (GRID_SPACING, yp + 4, GRID_SPACING, height - 8);
+
+ dc.DrawRotatedText (
+ std_to_wx(i.name),
+ GRID_SPACING + (GRID_SPACING - label_height) / 2,
+ y + (height + label_width) / 2,
+ 90
+ );
+
+ dc.DestroyClippingRegion ();
+ dc.SetClippingRegion (old_x, old_y, old_width, old_height);
+ }
+
lines.MoveToPoint (GRID_SPACING, y);
lines.AddLineToPoint (GRID_SPACING * 2, y);
y += height;
@@ -332,6 +323,30 @@ AudioMappingView::paint_indicators (wxDC& dc)
}
}
+static
+void clip (wxDC& dc, wxGraphicsContext* gc, int x, int y, int w, int h)
+{
+ dc.SetClippingRegion (x, y, w, h);
+ gc->Clip (x, y, w, h);
+}
+
+static
+void translate (wxDC& dc, wxGraphicsContext* gc, int x, int y)
+{
+ gc->PushState ();
+ gc->Translate (-x, -y);
+ dc.SetLogicalOrigin (x, y);
+}
+
+static
+void restore (wxDC& dc, wxGraphicsContext* gc)
+{
+ dc.SetLogicalOrigin (0, 0);
+ gc->PopState ();
+ dc.DestroyClippingRegion ();
+ gc->ResetClip ();
+}
+
void
AudioMappingView::paint ()
{