Darwin Neuroevolution Framework
canvas.h
1 // Copyright 2018 The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <QFrame>
18 #include <QPointF>
19 #include <QRectF>
20 #include <QTransform>
21 
22 namespace core_ui {
23 
36 class Canvas : public QFrame {
37  public:
39  explicit Canvas(QWidget* parent);
40 
42  int borderSize() const { return border_size_; }
43 
45  void setBorderSize(int border_size);
46 
48  const QRectF& viewport() const { return viewport_rect_; }
49 
65  void setViewport(const QRectF& viewport_rect);
66 
69  void setViewport(const QPointF& top_left, const QPointF& bottom_right);
70 
72  const QTransform& transformFromViewport() const;
73 
75  const QTransform& transformToViewport() const;
76 
78  double scale() const;
79 
80  protected:
81  void resizeEvent(QResizeEvent* event) override;
82 
83  private:
84  void updateTransformations() const;
85 
86  private:
87  // fixed border around the viewport, in pixels
88  int border_size_ = 0;
89 
90  // logical viewport coordinates
91  QRectF viewport_rect_{ 0, 0, 1, 1 };
92 
93  // cached, lazy evaluated transformations
94  mutable bool valid_transformations_ = false;
95  mutable QTransform transform_from_viewport_;
96  mutable QTransform transform_to_viewport_;
97  mutable double scale_ = 0;
98 };
99 
100 } // namespace core_ui
const QTransform & transformToViewport() const
Client window coordinates to logical viewport coordinates.
Definition: canvas.cpp:48
const QRectF & viewport() const
Current viewport rectangle (in logical coordinates)
Definition: canvas.h:48
A reusable canvas with support for logical coordinates and auto-scalling the content.
Definition: canvas.h:36
Reusable components for building UIs.
Definition: canvas.cpp:21
int borderSize() const
Border size value (in pixels)
Definition: canvas.h:42
const QTransform & transformFromViewport() const
Logical viewport coordinates to client window coordinates.
Definition: canvas.cpp:43
void setViewport(const QRectF &viewport_rect)
Sets the viewport rectangle (logical coordinates)
Definition: canvas.cpp:31
double scale() const
Returns the current scale factor.
Definition: canvas.cpp:53
void setBorderSize(int border_size)
Sets a new border size (pixels)
Definition: canvas.cpp:25
Canvas(QWidget *parent)
Creates a new Canvas.
Definition: canvas.cpp:23