aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/vst/src/VstHost.h
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/vst/src/VstHost.h')
-rw-r--r--externals/grill/vst/src/VstHost.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/externals/grill/vst/src/VstHost.h b/externals/grill/vst/src/VstHost.h
index 00b5164f..6fa2008b 100644
--- a/externals/grill/vst/src/VstHost.h
+++ b/externals/grill/vst/src/VstHost.h
@@ -130,6 +130,10 @@ public:
void SetY(int y,bool upd = true) { SetPos(posx,y,upd); }
int GetX() const { return posx; }
int GetY() const { return posy; }
+ void SetCaption(bool b);
+ bool GetCaption() const { return caption; }
+ void SetTitle(const char *t);
+ const char *GetTitle() const { return title.c_str(); }
protected:
@@ -175,7 +179,9 @@ protected:
void SendMidi();
char _midichannel;
- int posx,posy;
+ int posx,posy; // Window position
+ bool caption; // Window border
+ std::string title; // Window title
};
#endif