In R, is it possible set the title of a Cairo window? -


i'm outputting several plots via cairo package in r. having 5 windows titled "cairo graphics" makes hard find right 1 in taskbar.

is there anyway change text in title bar?

these did not work:

  • cairowin(title="hello")
  • windows.options(title="hello"); cairowin()

unfortunately, window title hard-coded in cairo source code (in w32-backend.c):

window gawin = newwindow("cairo graphics", rect(20,20,width,height),                          document|standardwindow); 

so answer no, unless want patch , recompile package.


Comments

Popular posts from this blog

c++ - llvm function pass ReplaceInstWithInst malloc -

java.lang.NoClassDefFoundError When Creating New Android Project -

Decoding a Python 2 `tempfile` with python-future -