-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclipboard.go
More file actions
106 lines (89 loc) · 2.56 KB
/
clipboard.go
File metadata and controls
106 lines (89 loc) · 2.56 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// Copyright (c) 2023 The Go-Curses Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package cdk
const TypeClipboard CTypeTag = "cdk-clipboard"
func init() {
_ = TypesManager.AddType(TypeClipboard, func() interface{} { return nil })
}
// Clipboard Hierarchy:
//
// Object
// +- Clipboard
type Clipboard interface {
Object
GetText() (text string)
SetText(text string)
Copy(text string)
Paste(text string)
}
var _ Clipboard = (*CClipboard)(nil)
type CClipboard struct {
CObject
screen Screen
}
func newClipboard(screen Screen) (clipboard *CClipboard) {
clipboard = new(CClipboard)
clipboard.screen = screen
clipboard.Init()
return
}
func (c *CClipboard) Init() (already bool) {
if c.InitTypeItem(TypeClipboard, c) {
return true
}
c.CObject.Init()
_ = c.InstallProperty(PropertyText, StringProperty, true, "")
return false
}
// SetText updates the clipboard's cache of pasted content
func (c *CClipboard) SetText(text string) {
if err := c.SetStringProperty(PropertyText, text); err != nil {
c.LogErr(err)
}
}
// GetText retrieves the clipboard's cache of pasted content
func (c *CClipboard) GetText() (text string) {
if c.screen.HostClipboardEnabled() {
if v, ok := c.screen.PasteFromClipboard(); ok {
c.LogDebug("updated from host clipboard value: \"%v\"", v)
c.SetText(v)
text = v
return
}
}
var err error
if text, err = c.GetStringProperty(PropertyText); err != nil {
c.LogErr(err)
}
return
}
// Copy updates the clipboard's cache of pasted content and passes the copy
// event to the underlying operating system (if supported) using OSC52 terminal
// sequences
func (c *CClipboard) Copy(text string) {
c.SetText(text)
c.Emit(SignalCopy, c, text)
c.LogDebug("text: \"%v\"", text)
c.screen.CopyToClipboard(text)
}
// Paste updates the clipboard's cache of pasted content and emits a "Paste"
// event itself
func (c *CClipboard) Paste(text string) {
c.SetText(text)
c.Emit(SignalPaste, c, text)
c.LogDebug("text: \"%v\"", text)
}
const SignalCopy Signal = "copy"
const SignalPaste Signal = "paste"
const PropertyText Property = "text"