Displaying 2 results from an estimated 2 matches for "ttkscrollbar".
Did you mean:
tkscrollbar
2008 Nov 03
1
possible tcltk event loop problem
...window:
messagesFrame <- tkframe(.commander)
putRcmdr("messagesWindow", tktext(messagesFrame, bg="lightgray",
font=getRcmdr("logFont"), height=3, width=log.width, wrap="none"))
.messages <- MessagesWindow()
messagesXscroll <- ttkscrollbar(messagesFrame, orient="horizontal",
command=function(...) tkxview(.messages, ...))
messagesYscroll <- ttkscrollbar(messagesFrame,
command=function(...) tkyview(.messages, ...))
tkconfigure(.messages, xscrollcommand=function(...)
tkset(messagesXscroll, ...))...
2012 Dec 15
0
R CMD INSTALL warnings with conflicting imports
...2: replacing previous import ?tkfocus? when loading ?Rcmdr?
> 3: replacing previous import ?ttkentry? when loading ?Rcmdr?
> 4: replacing previous import ?ttkframe? when loading ?Rcmdr?
> 5: replacing previous import ?ttkradiobutton? when loading ?Rcmdr?
> 6: replacing previous import ?ttkscrollbar? when loading ?Rcmdr?
The solution we found is to use importFrom(tcltk, ...) to only import
tcltk fonctions that do not conflict with those exported by Rcmdr. This
works, but is slightly more painful than the old way, since a typical
plugin uses quite a few tcltk functions.
So I wonder what'...