mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-01 03:37:15 -06:00
26 lines
390 B
Plaintext
26 lines
390 B
Plaintext
|
@startuml
|
||
|
|
||
|
class RiuGraphWindow {
|
||
|
menu : QMenu
|
||
|
toolbars : QToolbar
|
||
|
graphLayoutWindow : QMainWindow
|
||
|
Center widget with graphs
|
||
|
}
|
||
|
note left: Main window with toolbars and control widgets
|
||
|
|
||
|
class RimGraph {
|
||
|
QWT widget contained in a dockwidget
|
||
|
}
|
||
|
|
||
|
QwtPlot <|-- RimGraph
|
||
|
|
||
|
class RimCurve {
|
||
|
Base class for curves to be rendered in a Graph
|
||
|
Must notify Graph when data is changed
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
@enduml
|