File: ex-gedit-gtext.R

package info (click to toggle)
r-cran-gwidgets 0.0-54.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 2,360 kB
  • sloc: sh: 13; makefile: 2
file content (37 lines) | stat: -rw-r--r-- 623 bytes parent folder | download
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
w <- gwindow("edit, text", visible=FALSE)
g <- ggroup(cont = w, horizontal=FALSE)

## gedit

e <- gedit("edit", cont = g)

# svalue
print(svalue(e))

# svalue<-
svalue(e) <- "new text"

# handler
addHandlerChanged(e, function(h,...) print("changed"))
addHandlerKeystroke(e, function(h,...) print(h$key))
##?? others

## gtext
t <- gtext("edit", cont = g)

#svalue
print(svalue(t))

# svalue<-
svalue(t) <- "new text"

# insert
insert(t, "more new text") # ?\n?
insert(t, "even more with font.attr", font.attr = c("color"="red"))

# handler
addHandlerKeystroke(t, handler=function(h,...) print(h$key))



visible(w) <- TRUE