-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPyConcretePropertiesGraphViewController.h
More file actions
33 lines (24 loc) · 1.2 KB
/
PyConcretePropertiesGraphViewController.h
File metadata and controls
33 lines (24 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#pragma once
#include "PyViewControllerBase.h"
#include <EAF\EAFViewController.h>
#include <Graphs\ConcretePropertiesGraphViewController.h>
class CPyConcretePropertiesGraphViewController : public CPyViewControllerBase
{
public:
void Init(IConcretePropertiesGraphViewController* pViewController);
void SetGraphType(IConcretePropertiesGraphViewController::GraphType type);
IConcretePropertiesGraphViewController::GraphType GetGraphType() const;
void SetElementType(IConcretePropertiesGraphViewController::ElementType type);
IConcretePropertiesGraphViewController::ElementType GetElementType() const;
void SetXAxisType(IConcretePropertiesGraphViewController::XAxisType type);
IConcretePropertiesGraphViewController::XAxisType GetXAxisType() const;
void SetSegment(const CSegmentKey& segmentKey);
const CSegmentKey& GetSegment() const;
void SetClosureJoint(const CClosureKey& closureKey);
const CClosureKey& GetClosureJoint() const;
void SetShowGrid(bool bShow);
bool GetShowGrid() const;
static CPyConcretePropertiesGraphViewController* GetGraphController(CPyViewControllerBase* pController);
private:
CComPtr<IConcretePropertiesGraphViewController> m_pMyViewController;
};