-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSessionView.h
46 lines (39 loc) · 1021 Bytes
/
SessionView.h
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef _SESSIONVIEW_H_
#define _SESSIONVIEW_H_
#include <Box.h>
#include <Button.h>
#include <Catalog.h>
#include <LayoutBuilder.h>
#include <RadioButton.h>
#include <StringView.h>
#include <View.h>
class Session;
class SessionView : public BView {
friend class Session;
public:
SessionView(const char* name);
~SessionView();
virtual void AttachedToWindow();
virtual void MessageReceived(BMessage* message);
private:
LatexListScrollView* fDemonstration;
BBox* fModeBox;
BBox* fExpandNotationsBox;
BBox* fExpandCallsBox;
BBox* fCompileBox;
BRadioButton* fMode_prop;
BRadioButton* fMode_first_order;
BRadioButton* fKeep_Notations;
BRadioButton* fExpand_Notations;
BRadioButton* fKeep_Calls;
BRadioButton* fExpand_Calls;
BRadioButton* fCompile;
BRadioButton* fInterprete;
BBox* fDemonstrationBox;
BTextView* fInputView;
BListView* fOutputView;
BString* fStatusText;
BButton* fButton;
Session* fSession;
};
#endif // _SESSIONVIEW_H_