fix: clipboard, support excel xml spreadsheet (#9252)
Signed-off-by: fufesou <linlong1266@gmail.com>
This commit is contained in:
parent
29e12b84a9
commit
dbbbd08934
2 changed files with 34 additions and 3 deletions
|
|
@ -326,6 +326,7 @@ enum ClipboardFormat {
|
|||
ImageRgba = 21;
|
||||
ImagePng = 22;
|
||||
ImageSvg = 23;
|
||||
Special = 31;
|
||||
}
|
||||
|
||||
message Clipboard {
|
||||
|
|
@ -334,6 +335,8 @@ message Clipboard {
|
|||
int32 width = 3;
|
||||
int32 height = 4;
|
||||
ClipboardFormat format = 5;
|
||||
// Special format name, only used when format is Special.
|
||||
string special_name = 6;
|
||||
}
|
||||
|
||||
message MultiClipboards { repeated Clipboard clipboards = 1; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue