forked from osoumen/C700
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRecordingSettingsGUI.h
More file actions
51 lines (38 loc) · 1.22 KB
/
RecordingSettingsGUI.h
File metadata and controls
51 lines (38 loc) · 1.22 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//
// RecordingSettingsGUI.h
// C700
//
// Created by osoumen on 2017/02/03.
//
//
#ifndef __C700__RecordingSettingsGUI__
#define __C700__RecordingSettingsGUI__
#include "vstgui.h"
#include "C700defines.h"
#include "GUIUtils.h"
#include "EfxAccess.h"
#include "TextKickButton.h"
#include "UrlLinkBox.h"
#include <map>
class RecordingSettingsGUI : public CViewContainer, public CControlListener
{
public:
RecordingSettingsGUI(const CRect &size, CFrame *pParent, CBitmap *pBackground = 0);
~RecordingSettingsGUI();
CControl* FindControlByTag( long tag );
void SetEfxAccess(EfxAccess* efxacc);
// CViewより
virtual void valueChanged(CControl* control);
bool attached(CView* view);
bool removed(CView* parent);
CMessageResult notify(CBaseObject* sender, const char* message);
bool loadCode(const char *path);
CLASS_METHODS(RecordingSettingsGUI, CViewContainer)
private:
EfxAccess *efxAcc;
std::map<long, CControl*> mCntl;
CUrlLinkBox *cUrlLinkBox;
bool getLoadFile( char *path, int maxLen, const char *title );
bool getFolder( char *path, int maxLen, const char *title );
};
#endif /* defined(__C700__RecordingSettingsGUI__) */