mirror of https://github.com/adamdruppe/arsd.git
stubs of new functions
This commit is contained in:
parent
ca2e63fd30
commit
1fe03cc9fb
28
terminal.d
28
terminal.d
|
@ -833,6 +833,34 @@ struct Terminal {
|
|||
|
||||
uint tcaps;
|
||||
|
||||
bool inlineImagesSupported() {
|
||||
return (tcaps & TerminalCapabilities.arsdImage) ? true : false;
|
||||
}
|
||||
bool clipboardSupported() {
|
||||
return (tcaps & TerminalCapabilities.arsdImage) ? true : false;
|
||||
}
|
||||
|
||||
// stubs that are dependent on tcaps
|
||||
void displayInlineImage(ubyte[] imageData) {
|
||||
|
||||
}
|
||||
|
||||
void requestCopyToClipboard(string data) {
|
||||
|
||||
}
|
||||
|
||||
void requestPasteFromClipboard() {
|
||||
|
||||
}
|
||||
|
||||
void requestCopyToPrimary(string data) {
|
||||
|
||||
}
|
||||
|
||||
void requestPasteFromPrimary() {
|
||||
|
||||
}
|
||||
|
||||
version(Posix)
|
||||
/**
|
||||
* Constructs an instance of Terminal representing the capabilities of
|
||||
|
|
Loading…
Reference in New Issue