The gwidgetstcltk Package

Size: px
Start display at page:

Download "The gwidgetstcltk Package"

Transcription

1 The gwidgetstcltk Package September 21, 2007 Version Date Title Toolkit implementation of gwidgets for tcltk pacakge Author John Verzani Maintainer John Verzani Depends methods, gwidgets(>= ), tcltk Suggests Description Port of gwidgets API to the tcltk package License GPL version 2.1 or newer URL LazyLoad yes R topics documented: gwidgetstcltk-package gwidgetstcltk-undocumented Index 8 1

2 2 gwidgetstcltk-package gwidgetstcltk-package Toolkit implementation of gwidgets for tcltk Description Details Port of gwidgets API to tcltk. The gwidgets API is an abstract, lightweight means to interact with GUI toolkits. In this case, the tcltk toolkit. This file documents differences between gwidgetstcltk and the gwidgets API, which is documented both in the man pages for that package and in its vignette. The gwidgetstcltk package is not as complete as gwidgetsrgtk2. This is due to limitations in the base libraries implementing tcl/tk. This package was designed to work with the limited version that comes with the standard Windows installation of R. Notes on this implementation: The primary difference in this version is that each widget requires a container when being constructed. The container is given to the container argument. The value may be the logical TRUE indicating that a new window is constructed, or a container widget. This precludes the two-step process of creating a widget, then adding it to a container. As such, use the arguments to add in the construction of the widget. that is g = ggroup(cont=gwindow("an example")) b = gbutton("a button") add(g, b, expand=true) Would be combined, as in: g = ggroup(cont=gwindow("an example")) gbutton("a button", container=g, expand=true) The basic tcltk installation does not include several widgets that appear in other toolkits. For instance a grid widget, a notebook widget, etc. These are provided by extensions to the basic tcltk libraries. Rather than require users to install these libraries, the missing widgets are approximated, or hacked, as much as possible. Some are still unavailable. Suggestions as to how the hacks could be improved are welcome. Other differences are that tcltk does not seem to have a markup language like Pango for GTK or HTML for JAVA, as such the markup argument for several widgets that is used to format text is not available. The font<- method can substitute. Containers: gwindow() The visible= argument is ignored. The top-level window is always produced. The width= and height= arguments refer to the minimum window size, not the preferred default

3 gwidgetstcltk-package 3 size. ggroup() also has the expand= and anchor= arguments. If expand=true the widget takes up as much space as possible. The anchor= argument adjusts a widget left or right, up or down, within its space. Only one component works at a time for the anchor argument. In a horizontal box, only the y component can be used to move a value up or down. In a vertical box, only the x component can be used to move a value left or right. The default is c(-1,1) so that horizontal layouts are towards the top, and vertical layouts towards the left. The use.scrollwindows feature is lacking. gframe() no markup in title. Use font<- to give it markup. gexpandgroup() This is a hack, but works well. As with gframe, the markup= argument doesn t work, but the font for the label can be adjusted using font<-. gdfnotebook() Is a hack. There is no underlying notebook widget. The hack provides some of the functionality, but lacks the look of a true notebook widget. Primarily the tabs can grow without bounds in length (in other toolkits, gwidgetsrgtk2 for example, there is a mechanism to provide arrows for selecting among a subset of the tabs when there are too many). The tabs do not use the markup argument or have close buttons. The add method, which is used to add pages, is called when the notebook is given as a container during the construction of a widget. Hence, to add a page something like this is done: nb <- gnotebook(cont=gwindow("notebook example")) gbutton("page 1", cont=nb, label = "tab1") glabel("page 2", cont=nb, label = "tab2") gedit("page 3", cont=nb, label = "tab3") glayout() has two additional arguments: expand=true is like expand= for ggroup(), in that the attached widget expands to fill the possible space in the container. If this isn t given the anchor= argument can be used to adjust the location of the widget withing the cell. A value of c(-1,1) is the lower left, c(-1,1) the upper left (the default), c(1,-1) the lower right, and c(1,1) the upper right. The value 0 for either is also possible. Unlike gwidgetsrgtk2 the use of visible<- is not necessary, the widget is updated dynamically. gpanedgroup() The constructor is called with no widgets. To add a widget to the paned group the paned group is passed as a container, as in pg <- gpanedgroup(container=gwindow("example"), horizontal = FALSE) b1 = gbutton("button 1", container=pg) b2 = gbutton("button 2", container=pg) The paned window will need to be adjusted manually. The delete method can be used to delete a widget. It may be added back with the add method.

4 4 gwidgetstcltk-package The basic widgets or components: (These may also be known as controls) gbutton() mostly works. The button won t resize to take up all the possible space for a widget, even if expand=true is given. gcalendar() is not implemented, as there is no underlying calendar widget in the base tcltk. gcheckbox() works as advertised gcheckboxgroup() works as advertised gdf() is not implemented. There is no underlying grid widget in the base tcltk. gdroplist() This is a hack. It looks okay, but not great especially when editable=true. The extra argument width= controls the width of the text box, as this does not grow dynamically. gedit(), unlike the gwidgetsrgtk2 widget, has no type-ahead support via drop down boxes. The widget does not resize automatically. Set the width with width= at time of construction or with size<gfilebrowse() works. ggraphics() Not implemented. The tkrplot package could be used in some way, but this does not provide a fully embeddable graphics device. ghelp() Works as advertised. Uses a popup menu instead of a notebook, as gwidgetsrgtk2. gimage() Only works with gif and pnm files, as the underlying tcltk widget only uses these by default. glabel() No markup available. Use font<- instead. gmenu() adds only to the top window, not any container. This is a tcltk limitation. Use a popupmenu instead. gradio() has an extra argument coerce.with=, as otherwise it would treat everything as a character vector. It tries to guess when instantiated, if not explicitly given. gseparator() works as expected. gslider() in tcltk works with integer steps only. If the by= argument is less than 1 a gspinbutton() is used in place. gspinbutton() Works as expected. The change handler responds to clicks of the arrows or to the return key in the text area. gstatusbar() A hack. Just a ggroup() instance in disguise.

5 gwidgetstcltk-package 5 gtable() Uses the underling tklistbox which shows vectors of data. A hack creates a vector out of a matrix or data frame. The scrollbars are always present. There is no support for icons. Filtering by a column or by a function is implemented. When setting or retrieving values using svalue the index refers to the visible data set (if filtering), unlike with RGtk2. gtext() The widget does not get dynamically resized. The size<- method can be used to resize the widget. This method guesses at the converstion from pixels to characters (width) and lines of text (height) used by the underlying widget. gtoolbar() A hack. The buttons take up alot of screen real estate. gtree() Not implemented. Compound components: gcommandline() is implemented, but could definitely be improved. ghelpbrowser() just calls ghelp ggenericwidget() Some kinks need ironing out when the main variable is a formula. gdfnotebook() No gdf so no notebook ggraphicsnotebook() No ggraphics so no notebook. gvarbrowser() A hack. This seems to be best done with a tree widget, but none is available. One can drag variables from the list of variables. Dialogs: (These are modal, hence they have no methods.) gfile() works as advertised. gmessage() works. gconfirm() works. ginput() works. gdialog() Not implemented, as the widget needs to have a parent container. Handlers: Currently only one handler (the last one) for a signal is called. That is if you try to add to handlers for a click event, only the last will be called. As well, the removehandler function does not

6 gwidgetstcltk-package work except for the idle handler. adddroptarget(), adddropsource(), and adddropmotion work for tcltk widgets. The cursor changes to a funny looking cursor, but nothing resembling a drag and drop cursor. One was chosen from the standard cursors. Dragging from other applications is not supported. Note Author(s) John Verzani. Several code segments were inspired by the examples of Wettenhall and the Dalgaard article referenced below. The drag and drop code was modified from code at tcl.tk/41. Icons were "borrowed" from several places: the scigraphica project, KDE, and elsewhere. Maintainer: John Verzani <gwidgetsrgtk@gmail.com> References Peter Dalgaard s RNews article on the tcltk pagkage Rnews/Rnews_ pdf; Several examples on RTclTkExamples/; The PERL documentation was useful: ~ni-s/tk /, although this is for the most part a translation of the TK documentation. For a package somewhat similar in intent see Bowman, Crawford, Alexander, and Bowman s rpanel package: or the tkwidgets package of Zhang Examples ## Not run: ## options(guitoolkit="tcltk") ## select CRAN miror example setmirror = function(url) { repos = getoption("repos") repos["cran"] = gsub("/$", "", URL) options(repos = repos) } win = gwindow("select a CRAN mirror") tbl = gtable(utils:::getcranmirrors(), container=win, chosencol=4, handler = function(h,...) { URL = svalue(h$obj) setmirror(url) dispose(win) }) ##

7 gwidgetstcltk-undocumented 7 ## End(Not run) gwidgetstcltk-undocumented Undocumented functions in gwidgetstcltk Description The gwidgetstcltk package implements the gwidgets API. In gwidgets the primary constructors and methods are documented. The basic idea is that function in gwidgets calls.function in gwidgetstcltk. Hence the many functions here.

8 Index Topic interface gwidgetstcltk-undocumented, Topic package gwidgetstcltk-package, 1.add,gContainertcltk,guiWidgetsToolkittcltk,gGraphicstcltk-method.add,gContainertcltk,guiWidgetsToolkittcltk,gMenutcltk-method.add,gContainertcltk,guiWidgetsToolkittcltk,gWidgettcltk-method.add,gContainertcltk,guiWidgetsToolkittcltk,guiWidget-method.add,gDfNotebooktcltk,guiWidgetsToolkittcltk,ANY-method.add,gExpandgrouptcltk,guiWidgetsToolkittcltk,gWidgettcltk-method.add,gGrouptcltk,guiWidgetsToolkittcltk,gGraphicstcltk-method.add,gGrouptcltk,guiWidgetsToolkittcltk,tcltkObject-method.add,gHelpbrowsertcltk,guiWidgetsToolkittcltk,ANY-method.add,gHelptcltk,guiWidgetsToolkittcltk,ANY-method.add,gLayouttcltk,guiWidgetsToolkittcltk,gSeparatortcltk-method.add,gLayouttcltk,guiWidgetsToolkittcltk,gWidgettcltk-method.add,gMenutcltk,guiWidgetsToolkittcltk,gMenutcltk.add,gMenutcltk,guiWidgetsToolkittcltk,guiWidget-.add,gMenutcltk,guiWidgetsToolkittcltk,list-metho.add,gNotebooktcltk,guiWidgetsToolkittcltk,gWidge.add,gNotebooktcltk,guiWidgetsToolkittcltk,guiWid.add,gPanedgrouptcltk,guiWidgetsToolkittcltk,gWid.add,gTexttcltk,guiWidgetsToolkittcltk,character-.add,gTexttcltk,guiWidgetsToolkittcltk,gWidgettcl.add,gTexttcltk,guiWidgetsToolkittcltk,guiWidget-.add,gToolbartcltk,guiWidgetsToolkittcltk,list-me.add,gWidgettcltk,guiWidgetsToolkittcltk,try-erro.add,gWindowtcltk,guiWidgetsToolkittcltk,gMenutcl.add,gWindowtcltk,guiWidgetsToolkittcltk,gWidgett 8

9 INDEX 9.add,gWindowtcltk,guiWidgetsToolkittcltk,tcltkObject-method.add,guiWidget,guiWidgetsToolkittcltk,ANY-method.add,guiWidget,guiWidgetsToolkittcltk,guiWidgetORgWidgettcltkORtcltkObject-method.add-methods.add3rdmousepopupmenu,gLabeltcltk,guiWidgetsToolkittcltk-method.add3rdmousepopupmenu,gWidgettcltk,guiWidgetsToolkittcltk-method.add3rdmousepopupmenu,tcltkObject,guiWidgetsToolkittcltk-method.add3rdmousepopupmenu-methods.addSpace,gContainertcltk,guiWidgetsToolkittcltk-method.addSpace,gExpandgrouptcltk,guiWidgetsToolkittcltk-method.addSpace-methods.addSpring,gContainertcltk,guiWidgetsToolkittcltk-method.addSpring,gExpandgrouptcltk,guiWidgetsToolkittcltk-method.addSpring-methods.addStockIcons,guiWidgetsToolkittcltk-method.addStockIcons-methods.adddropmotion,gWidgettcltk,guiWidgetsToolkittclt.adddropmotion,tcltkObject,guiWidgetsToolkittcltk.adddropmotion-methods.adddropsource,gWidgettcltk,guiWidgetsToolkittclt.adddropsource,tcltkObject,guiWidgetsToolkittcltk.adddropsource-methods.adddroptarget,gImagetcltk,guiWidgetsToolkittcltk.adddroptarget,gLabeltcltk,guiWidgetsToolkittcltk.adddroptarget,gWidgettcltk,guiWidgetsToolkittclt.adddroptarget,tcltkObject,guiWidgetsToolkittcltk.adddroptarget-methods.addhandlerchanged,gButtontcltk,guiWidgetsToolkit.addhandlerchanged,gCalendartcltk,guiWidgetsToolk.addhandlerchanged,gCheckboxgrouptcltk,guiWidgets.addhandlerchanged,gCheckboxtcltk,guiWidgetsToolk.addhandlerchanged,gDroplisttcltk,guiWidgetsToolk

10 10 INDEX.addhandlerchanged,gEdittcltk,guiWidgetsToolkittcltk-method.addhandlerchanged,gExpandgrouptcltk,guiWidgetsToolkittcltk-method.addhandlerchanged,gGridtcltk,guiWidgetsToolkittcltk-method.addhandlerchanged,gImagetcltk,guiWidgetsToolkittcltk-method.addhandlerchanged,gLabeltcltk,guiWidgetsToolkittcltk-method.addhandlerchanged,gNotebooktcltk,guiWidgetsToolkittcltk-method.addhandlerchanged,gRadiotcltk,guiWidgetsToolkittcltk-method.addhandlerchanged,gSlidertcltk,guiWidgetsToolkittcltk-method.addhandlerchanged,gSpinbuttontcltk,guiWidgetsToolkittcltk-method.addhandlerchanged,gSubsetbytcltk,guiWidgetsToolkittcltk-method.addhandlerchanged,gTableWithFiltertcltk,guiWidgetsToolkittcltk-method.addhandlerchanged,gTabletcltk,guiWidgetsToolkittcltk-method.addhandlerchanged,gTexttcltk,guiWidgetsToolkittcltk-method.addhandlerchanged,gVarbrowsertcltk,guiWidgetsToolkittcltk-method.addhandlerchanged,gWidgettcltk,guiWidgetsToolkittcltk-method.addhandlerchanged-methods.addhandlerclicked,gButtontcltk,guiWidgetsToolkit.addhandlerclicked,gCheckboxtcltk,guiWidgetsToolk.addhandlerclicked,gDroplisttcltk,guiWidgetsToolk.addhandlerclicked,gGraphicstcltk,guiWidgetsToolk.addhandlerclicked,gGridtcltk,guiWidgetsToolkittc.addhandlerclicked,gImagetcltk,guiWidgetsToolkitt.addhandlerclicked,gLabeltcltk,guiWidgetsToolkitt.addhandlerclicked,gRadiotcltk,guiWidgetsToolkitt.addhandlerclicked,gSpinbuttontcltk,guiWidgetsToo.addhandlerclicked,gTableWithFiltertcltk,guiWidge.addhandlerclicked,gTabletcltk,guiWidgetsToolkitt.addhandlerclicked,gWidgettcltk,guiWidgetsToolkit.addhandlerclicked-methods.addhandlerdestroy,gWidgettcltk,guiWidgetsToolkit.addhandlerdestroy,gWindowtcltk,guiWidgetsToolkit.addhandlerdestroy-methods

11 INDEX 11.addhandlerdoubleclick,gGridtcltk,guiWidgetsToolkittcltk-method.addhandlerdoubleclick,gTableWithFiltertcltk,guiWidgetsToolkittcltk-method.addhandlerdoubleclick,gTabletcltk,guiWidgetsToolkittcltk-method.addhandlerdoubleclick,gTreetcltk,guiWidgetsToolkittcltk-method.addhandlerdoubleclick,gWidgettcltk,guiWidgetsToolkittcltk-method.addhandlerdoubleclick-methods.addhandlerexpose,gComponenttcltk,guiWidgetsToolkittcltk-method.addhandlerexpose,gGraphicstcltk,guiWidgetsToolkittcltk-method.addhandlerexpose,gNotebooktcltk,guiWidgetsToolkittcltk-method.addhandlerexpose,gWidgettcltk,guiWidgetsToolkittcltk-method.addhandlerexpose-methods.addhandleridle,gWidgettcltk,guiWidgetsToolkittcltk-method.addhandleridle-methods.addhandlerkeystroke,gEdittcltk,guiWidgetsToolkittcltk-method.addhandlerkeystroke,gSpinbuttontcltk,guiWidgetsToolkittcltk-method.addhandlerkeystroke,gTabletcltk,guiWidgetsToolkittcltk-method.addhandlerkeystroke,gTexttcltk,guiWidgetsToolkit.addhandlerkeystroke,gWidgettcltk,guiWidgetsToolk.addhandlerkeystroke-methods.addhandlerrightclick,gWidgettcltk,guiWidgetsTool.addhandlerrightclick-methods.addhandlerunrealize,gWidgettcltk,guiWidgetsToolk.addhandlerunrealize-methods.addpopupmenu,gButtontcltk,guiWidgetsToolkittcltk.addpopupmenu,gLabeltcltk,guiWidgetsToolkittcltk-.addpopupmenu,gWidgettcltk,guiWidgetsToolkittcltk.addpopupmenu-methods.delete,gContainertcltk,guiWidgetsToolkittcltk,gW.delete,gContainertcltk,guiWidgetsToolkittcltk,gu.delete,gMenutcltk,guiWidgetsToolkittcltk,gMenutc.delete,gMenutcltk,guiWidgetsToolkittcltk,gWidget.delete,gMenutcltk,guiWidgetsToolkittcltk,guiWidg

12 12 INDEX.delete,gMenutcltk,guiWidgetsToolkittcltk,list-method.delete,gNotebooktcltk,guiWidgetsToolkittcltk,ANY-method.delete,gNotebooktcltk,guiWidgetsToolkittcltk-method.delete,gPanedgrouptcltk,guiWidgetsToolkittcltk,gWidgettcltk-method.delete,gToolbartcltk,guiWidgetsToolkittcltk,ANY-method.delete,gToolbartcltk,guiWidgetsToolkittcltk-method.delete,gWidgettcltk,guiWidgetsToolkittcltk,tcltkObject-method.delete,tcltkObject,guiWidgetsToolkittcltk,gWidgettcltk-method.delete,tcltkObject,guiWidgetsToolkittcltk,guiWidget-method.delete,tcltkObject,guiWidgetsToolkittcltk,tcltkObject-method.delete-methods.dim,gGridtcltk,guiWidgetsToolkittcltk-method.dim,gTableWithFiltertcltk,guiWidgetsToolkittcltk-method.dim,gTabletcltk,guiWidgetsToolkittcltk-method.dim,gWidgettcltk,guiWidgetsToolkittcltk-method.dim-methods.dimnames,gGridtcltk,guiWidgetsToolkittcltk-metho.dimnames-methods.dimnames<-,gDftcltk,guiWidgetsToolkittcltk-metho.dimnames<-,gGridtcltk,guiWidgetsToolkittcltk-met.dimnames<-methods.dispose,gHelptcltk,guiWidgetsToolkittcltk-method.dispose,gNotebooktcltk,guiWidgetsToolkittcltk-me.dispose,gTexttcltk,guiWidgetsToolkittcltk-method.dispose,gWidgettcltk,guiWidgetsToolkittcltk-meth.dispose,gWindowtcltk,guiWidgetsToolkittcltk-meth.dispose-methods.enabled,gWidgettcltk,guiWidgetsToolkittcltk-meth.enabled-methods.enabled<-,gWidgettcltk,guiWidgetsToolkittcltk-me.enabled<-,tcltkObject,guiWidgetsToolkittcltk-met.enabled<-methods

13 INDEX 13.focus,gWidgettcltk,guiWidgetsToolkittcltk-method.focus-methods.focus<-,GtkWindow,guiWidgetsToolkittcltk-method.focus<-,gWidgettcltk,guiWidgetsToolkittcltk-method.focus<-,tcltkObject,guiWidgetsToolkittcltk-method.focus<-methods.font,GtkWindow,guiWidgetsToolkittcltk-method.font-methods.font<-,gExpandgrouptcltk,guiWidgetsToolkittcltk-method.font<-,gFrametcltk,guiWidgetsToolkittcltk-method.font<-,gTexttcltk,guiWidgetsToolkittcltk-method.font<-,gWidgettcltk,guiWidgetsToolkittcltk-method.font<-,tcltkObject,guiWidgetsToolkittcltk-method.font<-methods.gbasicdialog,guiWidgetsToolkittcltk-method.gbasicdialog-methods.gbutton,guiWidgetsToolkittcltk-method.gbutton-methods.gcalendar,guiWidgetsToolkittcltk-method.gcalendar-methods.gcheckbox,guiWidgetsToolkittcltk-method.gcheckbox-methods.gcheckboxgroup,guiWidgetsToolkittcltk-method.gcheckboxgroup-methods.gcommandline,guiWidgetsToolkittcltk-method.gcommandline-methods.gconfirm,guiWidgetsToolkittcltk-method.gconfirm-methods.gdf,guiWidgetsToolkittcltk-method.gdf-methods.gdfnotebook,guiWidgetsToolkittcltk-method.gdfnotebook-methods

14 14 INDEX.gdroplist,guiWidgetsToolkittcltk-method.gdroplist-methods.gedit,guiWidgetsToolkittcltk-method.gedit-methods.getStockIcons,guiWidgetsToolkittcltk-method.getStockIcons-methods.getToolkitWidget,gWidgettcltk,guiWidgetsToolkittcltk-method.gexpandgroup,guiWidgetsToolkittcltk-method.gexpandgroup-methods.gfile,guiWidgetsToolkittcltk-method.gfile-methods.gfilebrowse,guiWidgetsToolkittcltk-method.gfilebrowse-methods.gframe,guiWidgetsToolkittcltk-method.gframe-methods.ggenericwidget,guiWidgetsToolkittcltk-method.ggenericwidget-methods.ggraphics,guiWidgetsToolkittcltk-method.ggraphics-methods.ggraphicsnotebook,guiWidgetsToolkittcltk-method.ggraphicsnotebook-methods.ggroup,guiWidgetsToolkittcltk-method.ggroup-methods.ghelp,guiWidgetsToolkittcltk-method.ghelp-methods.ghelpbrowser,guiWidgetsToolkittcltk-method.ghelpbrowser-methods.gimage,guiWidgetsToolkittcltk-method.gimage-methods.ginput,guiWidgetsToolkittcltk-method.ginput-methods.glabel,guiWidgetsToolkittcltk-method

15 INDEX 15.glabel-methods.glayout,guiWidgetsToolkittcltk-method.glayout-methods.gmenu,guiWidgetsToolkittcltk-method.gmenu-methods.gmessage,guiWidgetsToolkittcltk-method.gmessage-methods.gnotebook,guiWidgetsToolkittcltk-method.gnotebook-methods.gpanedgroup,guiWidgetsToolkittcltk-method.gpanedgroup-methods.gradio,guiWidgetsToolkittcltk-method.gradio-methods.gseparator,guiWidgetsToolkittcltk-method.gseparator-methods.gslider,guiWidgetsToolkittcltk-method.gslider-methods.gspinbutton,guiWidgetsToolkittcltk-method.gspinbutton-methods.gstatusbar,guiWidgetsToolkittcltk-method.gstatusbar-methods.gtable,guiWidgetsToolkittcltk-method.gtable-methods.gtext,guiWidgetsToolkittcltk-method.gtext-methods.gtoolbar,guiWidgetsToolkittcltk-method.gtoolbar-methods.gtree,guiWidgetsToolkittcltk-method.gtree-methods.gvarbrowser,guiWidgetsToolkittcltk-method.gvarbrowser-methods.gwindow,guiWidgetsToolkittcltk-method

16 1 INDEX.gwindow-methods.id,gWidgettcltk,guiWidgetsToolkittcltk-method.id,tcltkObject,guiWidgetsToolkittcltk-method.id-methods.id<-,gWidgettcltk,guiWidgetsToolkittcltk-method.id<-methods.leftBracket,GtkTreeView,guiWidgetsToolkittcltk-method.leftBracket,gCheckboxgrouptcltk,guiWidgetsToolkittcltk-method.leftBracket,gCheckboxtcltk,guiWidgetsToolkittcltk-method.leftBracket,gCommandlinetcltk,guiWidgetsToolkittcltk-method.leftBracket,gDroplisttcltk,guiWidgetsToolkittcltk-method.leftBracket,gEdittcltk,guiWidgetsToolkittcltk-method.leftBracket,gGridtcltk,guiWidgetsToolkittcltk-method.leftBracket,gMenutcltk,guiWidgetsToolkittcltk-method.leftBracket,gNotebooktcltk,guiWidgetsToolkittcltk-method.leftBracket,gRadiotcltk,guiWidgetsToolkittcltk-method.leftBracket,gTableWithFiltertcltk,guiWidgetsTool.leftBracket,gTabletcltk,guiWidgetsToolkittcltk-m.leftBracket,gToolbartcltk,guiWidgetsToolkittcltk.leftBracket,gTreetcltk,guiWidgetsToolkittcltk-me.leftBracket,gVarbrowsertcltk,guiWidgetsToolkittc.leftBracket,tcltkDataFrame,guiWidgetsToolkittclt.leftBracket-methods.leftBracket<-,GtkTreeView,guiWidgetsToolkittcltk.leftBracket<-,gCheckboxgrouptcltk,guiWidgetsTool.leftBracket<-,gCheckboxtcltk,guiWidgetsToolkittc.leftBracket<-,gDroplisttcltk,guiWidgetsToolkittc.leftBracket<-,gEdittcltk,guiWidgetsToolkittcltk-.leftBracket<-,gGridtcltk,guiWidgetsToolkittcltk-.leftBracket<-,gLayouttcltk,guiWidgetsToolkittclt.leftBracket<-,gMenutcltk,guiWidgetsToolkittcltk-.leftBracket<-,gNotebooktcltk,guiWidgetsToolkittc

17 INDEX 17.leftBracket<-,gRadiotcltk,guiWidgetsToolkittcltk-method.leftBracket<-,gTableWithFiltertcltk,guiWidgetsToolkittcltk-method.leftBracket<-,gTabletcltk,guiWidgetsToolkittcltk-method.leftBracket<-,gToolbartcltk,guiWidgetsToolkittcltk-method.leftBracket<-methods.length,gDroplisttcltk,guiWidgetsToolkittcltk-method.length,gGridtcltk,guiWidgetsToolkittcltk-method.length,gHelptcltk,guiWidgetsToolkittcltk-method.length,gNotebooktcltk,guiWidgetsToolkittcltk-method.length,gRadiotcltk,guiWidgetsToolkittcltk-method.length,gTableWithFiltertcltk,guiWidgetsToolkittcltk-method.length,gTabletcltk,guiWidgetsToolkittcltk-method.length,gWidgettcltk,guiWidgetsToolkittcltk-method.length-methods.names,gGridtcltk,guiWidgetsToolkittcltk-method.names,gNotebooktcltk,guiWidgetsToolkittcltk-method.names-methods.names<-,gGridtcltk,guiWidgetsToolkittcltk-method.names<-,gNotebooktcltk,guiWidgetsToolkittcltk-me.names<-methods.removehandler,gWidgettcltk,guiWidgetsToolkittclt.removehandler,tcltkObject,guiWidgetsToolkittcltk.removehandler-methods.size,gWidgettcltk,guiWidgetsToolkittcltk-method.size,gWindowtcltk,guiWidgetsToolkittcltk-method.size-methods.size<-,gComponenttcltk,guiWidgetsToolkittcltk-me.size<-,gContainertcltk,guiWidgetsToolkittcltk-me.size<-,gEdittcltk,guiWidgetsToolkittcltk-method.size<-,gGridtcltk,guiWidgetsToolkittcltk-method.size<-,gImagetcltk,guiWidgetsToolkittcltk-method.size<-,gNotebooktcltk,guiWidgetsToolkittcltk-met

18 18 INDEX.size<-,gTableWithFiltertcltk,guiWidgetsToolkittcltk-method.size<-,gTabletcltk,guiWidgetsToolkittcltk-method.size<-,gVarbrowsertcltk,guiWidgetsToolkittcltk-method.size<-,gWidgettcltk,guiWidgetsToolkittcltk-method.size<-,gWindowtcltk,guiWidgetsToolkittcltk-method.size<-methods.stockIconFromClass,guiWidgetsToolkittcltk-method.stockIconFromClass-methods.stockIconFromObject,guiWidgetsToolkittcltk-method.stockIconFromObject-methods.svalue,ANY-method.svalue,GtkEntry,ANY,ANY,guiWidgetsToolkittcltk-method.svalue,GtkTreeView,ANY,ANY,guiWidgetsToolkittcltk-method.svalue,character,ANY,ANY,guiWidgetsToolkittcltk-method.svalue,gAddargtcltk,ANY,ANY,guiWidgetsToolkittcltk-method.svalue,gBivariatetcltk,ANY,ANY,guiWidgetsToolkittcltk-method.svalue,gButtontcltk,ANY,ANY,guiWidgetsToolkittcl.svalue,gCalendartcltk,ANY,ANY,guiWidgetsToolkitt.svalue,gCheckboxgrouptcltk,ANY,ANY,guiWidgetsToo.svalue,gCheckboxtcltk,ANY,ANY,guiWidgetsToolkitt.svalue,gCommandlinetcltk,ANY,ANY,guiWidgetsToolk.svalue,gDroplisttcltk,ANY,ANY,guiWidgetsToolkitt.svalue,gEdittcltk,ANY,ANY,guiWidgetsToolkittcltk.svalue,gExpandgrouptcltk,ANY,ANY,guiWidgetsToolk.svalue,gFileURLtcltk,ANY,ANY,guiWidgetsToolkittc.svalue,gGenericWidgettcltk,ANY,ANY,guiWidgetsToo.svalue,gGridtcltk,ANY,ANY,guiWidgetsToolkittcltk.svalue,gHelptcltk,ANY,ANY,guiWidgetsToolkittcltk.svalue,gImagetcltk,ANY,ANY,guiWidgetsToolkittclt.svalue,gLabeltcltk,ANY,ANY,guiWidgetsToolkittclt.svalue,gLmertcltk,ANY,ANY,guiWidgetsToolkittcltk.svalue,gMenutcltk,ANY,ANY,guiWidgetsToolkittcltk

19 INDEX 19.svalue,gModeltcltk,ANY,ANY,guiWidgetsToolkittcltk-method.svalue,gNotebooktcltk,ANY,ANY,guiWidgetsToolkittcltk-method.svalue,gRadiotcltk,ANY,ANY,guiWidgetsToolkittcltk-method.svalue,gSlidertcltk,ANY,ANY,guiWidgetsToolkittcltk-method.svalue,gSpinbuttontcltk,ANY,ANY,guiWidgetsToolkittcltk-method.svalue,gStatusbartcltk,ANY,ANY,guiWidgetsToolkittcltk-method.svalue,gTableWithFiltertcltk,ANY,ANY,guiWidgetsToolkittcltk-method.svalue,gTabletcltk,ANY,ANY,guiWidgetsToolkittcltk-method.svalue,gTexttcltk,ANY,ANY,guiWidgetsToolkittcltk-method.svalue,gToolbartcltk,ANY,ANY,guiWidgetsToolkittcltk-method.svalue,gTreetcltk,ANY,ANY,guiWidgetsToolkittcltk-method.svalue,gUnivariateTabletcltk,ANY,ANY,guiWidgetsToolkittcltk-method.svalue,gUnivariatetcltk,ANY,ANY,guiWidgetsToolkittcltk-method.svalue,gVarbrowsertcltk,ANY,ANY,guiWidgetsToolkittcltk-method.svalue,gWindowtcltk,ANY,ANY,guiWidgetsToolkittcltk-method.svalue-methods.svalue<-,GtkEntry,guiWidgetsToolkittcltk,ANY,ANY.svalue<-,gAddargtcltk,guiWidgetsToolkittcltk,ANY.svalue<-,gAddargtcltk,guiWidgetsToolkittcltk-met.svalue<-,gBivariatetcltk,guiWidgetsToolkittcltk,.svalue<-,gBivariatetcltk,guiWidgetsToolkittcltk-.svalue<-,gButtontcltk,guiWidgetsToolkittcltk,ANY.svalue<-,gCheckboxgrouptcltk,guiWidgetsToolkittc.svalue<-,gCheckboxtcltk,guiWidgetsToolkittcltk,A.svalue<-,gCommandlinetcltk,guiWidgetsToolkittclt.svalue<-,gDroplisttcltk,guiWidgetsToolkittcltk,A.svalue<-,gEdittcltk,guiWidgetsToolkittcltk,ANY,A.svalue<-,gExpandgrouptcltk,guiWidgetsToolkittclt.svalue<-,gFrametcltk,guiWidgetsToolkittcltk,ANY,.svalue<-,gGraphicstcltk,guiWidgetsToolkittcltk,A.svalue<-,gGridtcltk,guiWidgetsToolkittcltk,ANY,A.svalue<-,gGrouptcltk,guiWidgetsToolkittcltk,ANY,

20 20 INDEX.svalue<-,gImagetcltk,guiWidgetsToolkittcltk,ANY,ANY-method.svalue<-,gLabeltcltk,guiWidgetsToolkittcltk,ANY,ANY-method.svalue<-,gMenutcltk,guiWidgetsToolkittcltk,ANY,gMenutcltk-method.svalue<-,gMenutcltk,guiWidgetsToolkittcltk,ANY,guiWidget-method.svalue<-,gMenutcltk,guiWidgetsToolkittcltk,ANY,list-method.svalue<-,gModeltcltk,guiWidgetsToolkittcltk,ANY,ANY-method.svalue<-,gModeltcltk,guiWidgetsToolkittcltk-method.svalue<-,gNotebooktcltk,guiWidgetsToolkittcltk,ANY,ANY-method.svalue<-,gNotebooktcltk,guiWidgetsToolkittcltk-method.svalue<-,gRadiotcltk,guiWidgetsToolkittcltk,ANY,ANY-method.svalue<-,gRadiotcltk,guiWidgetsToolkittcltk-method.svalue<-,gSlidertcltk,guiWidgetsToolkittcltk,ANY,ANY-method.svalue<-,gSlidertcltk,guiWidgetsToolkittcltk-method.svalue<-,gSpinbuttontcltk,guiWidgetsToolkittcltk,ANY,ANY-method.svalue<-,gSpinbuttontcltk,guiWidgetsToolkittcltk-method.svalue<-,gStatusbartcltk,guiWidgetsToolkittcltk,ANY,ANY-method.svalue<-,gStatusbartcltk,guiWidgetsToolkittcltk-.svalue<-,gTableWithFiltertcltk,guiWidgetsToolkit.svalue<-,gTabletcltk,guiWidgetsToolkittcltk,ANY,.svalue<-,gTexttcltk,guiWidgetsToolkittcltk,ANY,A.svalue<-,gTexttcltk,guiWidgetsToolkittcltk-metho.svalue<-,gToolbartcltk,guiWidgetsToolkittcltk,AN.svalue<-,gToolbartcltk,guiWidgetsToolkittcltk-me.svalue<-,gWindowtcltk,guiWidgetsToolkittcltk,ANY.svalue<-,gWindowtcltk,guiWidgetsToolkittcltk-met.svalue<-methods.tag,gWidgettcltk,guiWidgetsToolkittcltk-method.tag,guiWidget,guiWidgetsToolkittcltk-method.tag,tcltkObject,guiWidgetsToolkittcltk-method.tag-methods.tag<-,gWidgettcltk,guiWidgetsToolkittcltk-method.tag<-,guiWidget,guiWidgetsToolkittcltk-method

21 INDEX 21.tag<-,tcltkObject,guiWidgetsToolkittcltk-method.tag<-methods.update,gComponenttcltk,guiWidgetsToolkittcltk-method.update,gVarbrowsertcltk,guiWidgetsToolkittcltk-method.update-methods.visible,gExpandgrouptcltk,guiWidgetsToolkittcltk-method.visible,gGridtcltk,guiWidgetsToolkittcltk-method.visible,gLayouttcltk,guiWidgetsToolkittcltk-method.visible,gWidgettcltk,guiWidgetsToolkittcltk-method.visible,tkwin,guiWidgetsToolkittcltk-method.visible-methods.visible<-,gExpandgrouptcltk,guiWidgetsToolkittcltk-method.visible<-,gGraphicstcltk,guiWidgetsToolkittcltk-method.visible<-,gGridtcltk,guiWidgetsToolkittcltk-method.visible<-,gLayouttcltk,guiWidgetsToolkittcltk-method.visible<-,gWidgettcltk,guiWidgetsToolkittcltk-method.visible<-,gWindowtcltk,guiWidgetsToolkittcltk-me.visible<-,tkwin,guiWidgetsToolkittcltk-method.visible<-methods [,GtkTreeView-method [,gcheckboxgrouptcltk-method [,gcheckboxtcltk-method [,gcommandlinetcltk-method [,gdroplisttcltk-method [,gedittcltk-method [,ggridtcltk-method [,gmenutcltk-method [,gnotebooktcltk-method [,gradiotcltk-method [,gtablewithfiltertcltk-method [,gtabletcltk-method [,gtoolbartcltk-method

22 22 INDEX [,gtreetcltk-method [,gvarbrowsertcltk-method [,gwidgettcltk-method [,tcltkdataframe-method [-methods [<-,GtkTreeView-method [<-,gcheckboxgrouptcltk-method [<-,gcheckboxtcltk-method [<-,gdroplisttcltk-method [<-,gedittcltk-method [<-,ggridtcltk-method [<-,glayouttcltk-method [<-,gmenutcltk-method [<-,gnotebooktcltk-method [<-,gradiotcltk-method [<-,gtablewithfiltertcltk-method [<-,gtabletcltk-method [<-,gtoolbartcltk-method [<-,gwidgettcltk-method add,guiwidget-method add,gwidgettcltk-method add-methods add3rdmousepopupmenu,guiwidget-method add3rdmousepopupmenu,gwidgettcltk-method add3rdmousepopupmenu,tcltkobject-method add3rdmousepopupmenu-methods adddropmotion,guiwidget-method adddropmotion,gwidgettcltk-method adddropmotion,tcltkobject-method adddropmotion-methods adddropsource,guiwidget-method adddropsource,gwidgettcltk-method

23 INDEX 23 adddropsource,tcltkobject-method adddropsource-methods adddroptarget,gimagetcltk,guiwidgetstoolkittcltk-method adddroptarget,guiwidget-method adddroptarget,gwidgettcltk-method adddroptarget,tcltkobject-method adddroptarget-methods addhandlerchanged,any-method addhandlerchanged,gsubsetbytcltk-method addhandlerchanged,guiwidget-method addhandlerchanged,gwidgettcltk-method addhandlerchanged,tcltkobject-method addhandlerchanged-methods addhandlerclicked,guiwidget-method addhandlerclicked,gwidgettcltk-method addhandlerclicked,tcltkobject-method addhandlerclicked-methods addhandlerdestroy,guiwidget-method addhandlerdestroy,gwidgettcltk-method addhandlerdestroy,tcltkobject-method addhandlerdestroy-methods addhandlerdoubleclick,guiwidget-method addhandlerdoubleclick,gwidgettcltk-method addhandlerdoubleclick,tcltkobject-method addhandlerdoubleclick-methods addhandlerexpose,guiwidget-method addhandlerexpose,gwidgettcltk-method addhandlerexpose,tcltkobject-method addhandlerexpose-methods addhandleridle,guiwidget-method addhandleridle,gwidgettcltk-method addhandleridle,tcltkobject-method

24 24 INDEX addhandleridle-methods addhandlerkeystroke,guiwidget-method addhandlerkeystroke,gwidgettcltk-method addhandlerkeystroke,tcltkobject-method addhandlerkeystroke-methods addhandlerrightclick,guiwidget-method addhandlerrightclick,gwidgettcltk-method addhandlerrightclick,tcltkobject-method addhandlerrightclick-methods addhandlerunrealize,guiwidget-method addhandlerunrealize,gwidgettcltk-method addhandlerunrealize,tcltkobject-method addhandlerunrealize-methods addpopupmenu,guiwidget-method addpopupmenu,gwidgettcltk-method addpopupmenu,tcltkobject-method addpopupmenu-methods addspace,guiwidget-method addspace,gwidgettcltk-method addspace-methods addspring,guiwidget-method addspring,gwidgettcltk-method addspring-methods delete,guiwidget-method delete,gwidgettcltk-method delete-methods dim,any-method dim,guiwidget-method dim,gwidgettcltk-method dim-methods dimnames,gwidgettcltk-method dimnames<-,gwidgettcltk-method

25 INDEX 25 dispose,gtexttcltk-method dispose,guiwidget-method dispose,gwidgettcltk-method dispose-methods enabled,guiwidget-method enabled,gwidgettcltk-method enabled-methods enabled<-,guiwidget-method enabled<-,gwidgettcltk-method enabled<-methods focus,guiwidget-method focus,gwidgettcltk-method focus-methods focus<-,guiwidget-method focus<-,gwidgettcltk-method focus<-methods font,guiwidget-method font,gwidgettcltk-method font-methods font<-,guiwidget-method font<-,gwidgettcltk-method font<-methods gwidgetstcltk (gwidgetstcltk-package), 1 gwidgetstcltk-package, 1 gwidgetstcltk-undocumented, id,any-method id,gtktreeviewcolumn-method id,guiwidget-method id,gwidgettcltk-method id,tcltkobject-method id-methods id<-,any-method

26 2 INDEX id<-,gtktreeviewcolumn-method id<-,guiwidget-method id<-,gwidgettcltk-method id<-,tcltkobject-method id<-methods length,gdroplisttcltk-method length,gsubsetbytcltk-method length,gwidgettcltk-method names,any-method names,guiwidget-method names,gwidgettcltk-method names-methods names<-,any-method names<-,guiwidget-method names<-,gwidgettcltk-method names<-methods removehandler,gtktreeviewcolumn-method removehandler,guiwidget-method removehandler,gwidgettcltk-method removehandler,tcltkobject-method removehandler-methods runhandlerfor size,guiwidget-method size,gwidgettcltk-method size-methods size<-,guiwidget-method size<-,gwidgettcltk-method size<-methods str2 svalue,any-method svalue,character-method

27 INDEX 27 svalue,gsubsetbytcltk-method svalue,gtkentry-method svalue,gtktreeviewcolumn-method svalue,guiwidget-method svalue,gwidgettcltk-method svalue-methods svalue<-,guiwidget-method svalue<-,gwidgettcltk-method svalue<-methods tag,guiwidget-method tag,gwidgettcltk-method tag,tcltkobject-method tag-methods tag<-,guiwidget-method tag<-,gwidgettcltk-method tag<-,tcltkobject-method tag<-methods update,any-method update,gsubsetbytcltk-method update,gtreetcltk-method update,guiwidget-method update,gwidgettcltk-method update-methods visible,guiwidget-method visible,gwidgettcltk-method visible-methods visible<-,guiwidget-method visible<-,gwidgettcltk-method visible<-methods

The gwidgets Package

The gwidgets Package The gwidgets Package October 27, 2007 Version 0.0-23 Date 2007-09-21 Title gwidgets API for building toolkit-independent, interactive GUIs Author John Verzani. Based on the iwidgets code of Simon Urbanek

More information

Package gwidgets2. June 1, 2016

Package gwidgets2. June 1, 2016 Type Package Package gwidgets2 June 1, 2016 Title Rewrite of gwidgets API for Simplified GUI Construction Version 1.0-7 Author John Verzani Maintainer John Verzani URL https://github.com/jverzani/gwidgets2

More information

Adding a toolkit to gwidgets

Adding a toolkit to gwidgets Adding a toolkit to gwidgets John Verzani, gwidgetsrgtk@gmail.com August 27, 2014 Abstract: [This package is now out of date. The gwidgetstcltk package has been written. This is here in case someone wants

More information

Package pmg. R topics documented: March 9, Version Title Poor Man s GUI. Author John Verzani with contributions by Yvonnick Noel

Package pmg. R topics documented: March 9, Version Title Poor Man s GUI. Author John Verzani with contributions by Yvonnick Noel Package pmg March 9, 2010 Version 0.9-42 Title Poor Man s GUI Author John Verzani with contributions by Yvonnick Noel Maintainer John Verzani Depends lattice, MASS, proto, foreign,

More information

Package gwidgetsrgtk2

Package gwidgetsrgtk2 Package gwidgetsrgtk2 March 1, 2018 Version 0.0-86 Title Toolkit Implementation of gwidgets for RGtk2 Author Michael Lawrence, John Verzani Maintainer John Verzani Depends methods,

More information

pmg John Verzani October 25, 2007

pmg John Verzani October 25, 2007 pmg John Verzani pmgrgui@gmail.com October 25, 2007 Abstract: The pmg package provides a simple GUI for R using the GTK2 toolkit. the pmg GUI is similar in intent to the more mature Rcmdr GUI which uses

More information

Programming Graphical

Programming Graphical Programming Graphical User Interfaces in R Michael F. Lawrence John Verzani CRC Press Taylorfii Francis Group Boca Raton London NewYork CRC Press Is an imprint of the Taylor & Francis Group an informs

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

Package ProgGUIinR. February 19, 2015

Package ProgGUIinR. February 19, 2015 Version 0.0-4 Package ProgGUIinR February 19, 2015 Title support package for ``Programming Graphical User Interfaces in R'' Author Michael Lawrence and John Verzani Maintainer John Verzani

More information

Statistical Cartoons. rpanel: simple interactive controls for R functions using the tcltk package

Statistical Cartoons. rpanel: simple interactive controls for R functions using the tcltk package Statistical Cartoons rpanel: simple interactive controls for R functions using the tcltk package Ewan Crawford, Adrian Bowman Department of Statistics, The University of Glasgow, UK Elementary example

More information

Package formatr. February 15, 2013

Package formatr. February 15, 2013 Type Package Title Format R Code Automatically Version 0.7 Date 2012-12-02 Author Yihui Xie Maintainer Yihui Xie Package formatr February 15, 2013 Description This package provides a function

More information

USER GUIDE. MADCAP FLARE 2017 r3. QR Codes

USER GUIDE. MADCAP FLARE 2017 r3. QR Codes USER GUIDE MADCAP FLARE 2017 r3 QR Codes Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is

More information

Beyond Statistics. Namrata Deshpande, Cytel. Barcelona, PhUSE 2016

Beyond Statistics. Namrata Deshpande, Cytel. Barcelona, PhUSE 2016 Beyond Statistics Namrata Deshpande, Cytel Barcelona, PhUSE 2016 Overview R strengths & challenges GUI with gwidgets Automation with ReporteRs Motivation Concluding remarks PhUSE 2016 2 Why R? Statistical

More information

Inserting Typed Comments Applies to Microsoft Word 2007

Inserting Typed Comments Applies to Microsoft Word 2007 Inserting Typed Comments You can insert a comment 1 inside balloons 2 that appear in the document margins. Type a comment 1. Select the text or item that you want to comment on, or click at the end of

More information

Word 2010 Tools. This tab is great for when you want to interact with others in a Word document: comments, editing, changing, and so on.

Word 2010 Tools. This tab is great for when you want to interact with others in a Word document: comments, editing, changing, and so on. Word 2010 Tools Review Tab This tab is great for when you want to interact with others in a Word document: comments, editing, changing, and so on. COMMENTS Insert a Comment 1. Select the text or item that

More information

Budget Exercise for Intermediate Excel

Budget Exercise for Intermediate Excel Budget Exercise for Intermediate Excel Follow the directions below to create a 12 month budget exercise. Read through each individual direction before performing it, like you are following recipe instructions.

More information

COMSC-031 Web Site Development- Part 2. Part-Time Instructor: Joenil Mistal

COMSC-031 Web Site Development- Part 2. Part-Time Instructor: Joenil Mistal COMSC-031 Web Site Development- Part 2 Part-Time Instructor: Joenil Mistal Chapter 9 9 Creating Pages with Frames You can divide the display area of a Web browser into multiple panes by creating frames.

More information

COMSC-031 Web Site Development- Part 2

COMSC-031 Web Site Development- Part 2 COMSC-031 Web Site Development- Part 2 Part-Time Instructor: Joenil Mistal December 5, 2013 Chapter 13 13 Designing a Web Site with CSS In addition to creating styles for text, you can use CSS to create

More information

About Freeway. Freeway s Tools and Palettes

About Freeway. Freeway s Tools and Palettes About Freeway The most important thing to appreciate before you start a site in Freeway is how the process works, especially if you have tried other Web publishing software before. Freeway is not an HTML

More information

Event Dispatch. Interactor Tree Lightweight vs. Heavyweight Positional Dispatch Focus Dispatch. Event Architecture. A pipeline: Event Capture

Event Dispatch. Interactor Tree Lightweight vs. Heavyweight Positional Dispatch Focus Dispatch. Event Architecture. A pipeline: Event Capture Event Dispatch Interactor Tree Lightweight vs. Heavyweight Positional Dispatch Focus Dispatch 2.4 Event Dispatch 1 Event Architecture A pipeline: - Capture and Queue low-level hardware events - Dispatch

More information

Event Dispatch. Interactor Tree Lightweight vs. Heavyweight Positional Dispatch Focus Dispatch. 2.4 Event Dispatch 1

Event Dispatch. Interactor Tree Lightweight vs. Heavyweight Positional Dispatch Focus Dispatch. 2.4 Event Dispatch 1 Event Dispatch Interactor Tree Lightweight vs. Heavyweight Positional Dispatch Focus Dispatch 2.4 Event Dispatch 1 Event Architecture A pipeline: - Capture and Queue low-level hardware events - Dispatch

More information

PROGRAMMING DESIGN USING JAVA (ITT 303) Unit 7

PROGRAMMING DESIGN USING JAVA (ITT 303) Unit 7 PROGRAMMING DESIGN USING JAVA (ITT 303) Graphical User Interface Unit 7 Learning Objectives At the end of this unit students should be able to: Build graphical user interfaces Create and manipulate buttons,

More information

Programming Training. This Week: Tkinter for GUI Interfaces. Some examples

Programming Training. This Week: Tkinter for GUI Interfaces. Some examples Programming Training This Week: Tkinter for GUI Interfaces Some examples Tkinter Overview Set of widgets designed by John K. Ousterhout, 1987 Tkinter == Tool Kit Interface Mean to be driven by Tcl (Toolkit

More information

GUI Components: Part 1

GUI Components: Part 1 1 2 11 GUI Components: Part 1 Do you think I can listen all day to such stuff? Lewis Carroll Even a minor event in the life of a child is an event of that child s world and thus a world event. Gaston Bachelard

More information

Rich Text Editor Quick Reference

Rich Text Editor Quick Reference Rich Text Editor Quick Reference Introduction Using the rich text editor is similar to using a word processing application such as Microsoft Word. After data is typed into the editing area it can be formatted

More information

Creating Fill-able Forms using Acrobat 7.0: Part 1

Creating Fill-able Forms using Acrobat 7.0: Part 1 Creating Fill-able Forms using Acrobat 7.0: Part 1 The first step in creating a fill-able form in Adobe Acrobat is to generate the form with all its formatting in a program such as Microsoft Word. Then

More information

HowTo use the widgetinvoke package

HowTo use the widgetinvoke package HowTo use the widgetinvoke package Jeff Gentry November 1, 2004 1 Overview The widgetinvoke package, available as part of Bioconductor, is designed to allow for the creation of user interfaces for arbitrary

More information

This Photoshop Tutorial 2011 Steve Patterson, Photoshop Essentials.com. Not To Be Reproduced Or Redistributed Without Permission.

This Photoshop Tutorial 2011 Steve Patterson, Photoshop Essentials.com. Not To Be Reproduced Or Redistributed Without Permission. Rotate, Flip & Scale Individual Letters In Text Photoshop makes it easy to rotate, flip and scale entire words or lines of text in a document, but what if we want to transform only a single letter in a

More information

At least one Charley File workbook for New Excel. This has an xlsx extension and is for PC Excel 2007, Mac Excel 2008, and after.

At least one Charley File workbook for New Excel. This has an xlsx extension and is for PC Excel 2007, Mac Excel 2008, and after. Getting Started By Charley Kyd Kyd@ExcelUser.com Welcome to Charley s Swipe Files! My personal collection of charts and tables clipped from magazines and newspapers is a valuable resource for me. I hope

More information

How to set up a local root folder and site structure

How to set up a local root folder and site structure Activity 2.1 guide How to set up a local root folder and site structure The first thing to do when creating a new website with Adobe Dreamweaver CS3 is to define a site and identify a root folder where

More information

XLCubed Version 9 QuickStart

XLCubed Version 9 QuickStart XLCubed Version 9 QuickStart 1 P a g e Contents Welcome... 3 Connecting to your data... 3 XLCubed for Pivot Table users... 3 Adding a Grid, and the Report Designer... 5 Working with Grids... 7 Grid Components...

More information

FirmSite Control. Tutorial

FirmSite Control. Tutorial FirmSite Control Tutorial 1 Last Updated June 26, 2007 by Melinda France Contents A. Logging on to the Administrative Control Center... 3 Using the Editor Overview:... 3 Inserting an Image... 7 Inserting

More information

Dreamweaver Basics Workshop

Dreamweaver Basics Workshop Dreamweaver Basics Workshop Robert Rector idesign Lab - Fall 2013 What is Dreamweaver? o Dreamweaver is a web development tool o Dreamweaver is an HTML and CSS editor o Dreamweaver features a WYSIWIG (What

More information

Creating a table of contents

Creating a table of contents Creating a table of contents Microsoft Word 007 MS Word creates a table of contents or index for your document. It is a list of the headings and it is essential to mark text that you wish to include in

More information

Microsoft Office Training Skills 2010

Microsoft Office Training Skills 2010 Microsoft Office Training Skills 2010 Lesson 5 Working with pages, Tables, Shapes and Securing Documents Adding Page color Add color to the background of one or several pages in the document. 1. Click

More information

QRG: Adding Images, Files and Links in the WYSIWYG Editor

QRG: Adding Images, Files and Links in the WYSIWYG Editor QRG: Adding Images, Files and Links in the WYSIWYG Editor QRG: Adding Images, Files and Links in the WYSIWYG Editor... 1 Image Optimisation for Web use:... 2 Add an Image... 2 Linking to a File... 4 Adding

More information

Lesson 5 Styles, Tables, and Frames

Lesson 5 Styles, Tables, and Frames In this lesson you will learn how to create a new document that imports the custom page and paragraph styles created in earlier lessons. You will also see how to add tables to your documents. If LibreOffice

More information

SharePoint SITE OWNER TRAINING

SharePoint SITE OWNER TRAINING SharePoint SITE OWNER TRAINING Contents Customizing Your Site... 3 Editing Links...4 Give the site a new look...5 Changing Title, Description, or Logo...6 Remove the Getting Started Icons...6 Adding Apps

More information

InDesign CS Basics. To learn the tools and features of InDesign CS to create publications efficiently and effectively.

InDesign CS Basics. To learn the tools and features of InDesign CS to create publications efficiently and effectively. InDesign CS Basics InDesign Basics Training Objective To learn the tools and features of InDesign CS to create publications efficiently and effectively. What you can expect to learn from this class: How

More information

InDesign UX Design Patterns. by Justin Putney

InDesign UX Design Patterns. by Justin Putney InDesign UX Design Patterns by Justin Putney InDesign UX Design Patterns Hi, I m Justin Putney, Owner of Ajar Productions. Thanks for downloading this guide! It s full of ways to create interactive user

More information

Nauticom NetEditor: A How-to Guide

Nauticom NetEditor: A How-to Guide Nauticom NetEditor: A How-to Guide Table of Contents 1. Getting Started 2. The Editor Full Screen Preview Search Check Spelling Clipboard: Cut, Copy, and Paste Undo / Redo Foreground Color Background Color

More information

Reviewing Hidden Content during Native Review

Reviewing Hidden Content during Native Review Reviewing Hidden Content during Native Review Introduction When conducting a native file review it is important to note that certain files can have hidden content. These are features of certain software

More information

Wolf. Responsive Website Designer. Mac Edition User Guide

Wolf. Responsive Website Designer. Mac Edition User Guide Wolf Responsive Website Designer Mac Edition User Guide Version 2.10.3 Table of Contents What is Wolf Website Designer? Editor overview Save and open website Create responsive layout How to create responsive

More information

Tips and Techniques for Designing the Perfect Layout with SAS Visual Analytics

Tips and Techniques for Designing the Perfect Layout with SAS Visual Analytics SAS2166-2018 Tips and Techniques for Designing the Perfect Layout with SAS Visual Analytics Ryan Norris and Brian Young, SAS Institute Inc., Cary, NC ABSTRACT Do you want to create better reports but find

More information

Introduction to Form Controls

Introduction to Form Controls Introduction to Form Controls What Are Form Controls? Form Controls are objects which you can place onto an Excel Worksheet which give you the functionality to interact with your models data. You can use

More information

SPARK. User Manual Ver ITLAQ Technologies

SPARK. User Manual Ver ITLAQ Technologies SPARK Forms Builder for Office 365 User Manual Ver. 3.5.50.102 0 ITLAQ Technologies www.itlaq.com Table of Contents 1 The Form Designer Workspace... 3 1.1 Form Toolbox... 3 1.1.1 Hiding/ Unhiding/ Minimizing

More information

A Student s Guide to Taking Notes Using Microsoft Word 2013

A Student s Guide to Taking Notes Using Microsoft Word 2013 A Student s Guide to Taking Notes Using Microsoft Word 2013 Erin Moreira UMass Amherst 2015 A Student s Guide to Taking Notes Using Microsoft Word 2013 Acknowledgements I would like to thank Professor

More information

Microsoft How to Series

Microsoft How to Series Microsoft How to Series Getting Started with EXCEL 2007 A B C D E F Tabs Introduction to the Excel 2007 Interface The Excel 2007 Interface is comprised of several elements, with four main parts: Office

More information

The purpose of this tutorial is to introduce you to the Construct 2 program. First, you will be told where the software is located on the computer

The purpose of this tutorial is to introduce you to the Construct 2 program. First, you will be told where the software is located on the computer Learning Targets: Students will be introduced to industry recognized game development software Students will learn how to navigate within the software Students will learn the basics on how to use Construct

More information

OZONE Widget Framework

OZONE Widget Framework OZONE Widget Framework October 8, 2012 Publication/Revision History Release Date Revised Document OWF 6.0.1 October 8, 2012 Initial Document OWF 6 September 28, 2012 Contents 1... 1 1.1 Installation Information...

More information

Our Hall of Fame or Shame candidate for today is the command ribbon, which was introduced in Microsoft Office The ribbon is a radically

Our Hall of Fame or Shame candidate for today is the command ribbon, which was introduced in Microsoft Office The ribbon is a radically 1 Our Hall of Fame or Shame candidate for today is the command ribbon, which was introduced in Microsoft Office 2007. The ribbon is a radically different user interface for Office, merging the menubar

More information

CS 4300 Computer Graphics

CS 4300 Computer Graphics CS 4300 Computer Graphics Prof. Harriet Fell Fall 2011 Lecture 8 September 22, 2011 GUIs GUIs in modern operating systems cross-platform GUI frameworks common GUI widgets event-driven programming Model-View-Controller

More information

CS 315 Software Design Homework 1 First Sip of Java Due: Sept. 10, 11:30 PM

CS 315 Software Design Homework 1 First Sip of Java Due: Sept. 10, 11:30 PM CS 315 Software Design Homework 1 First Sip of Java Due: Sept. 10, 11:30 PM Objectives The objectives of this assignment are: to get your first experience with Java to become familiar with Eclipse Java

More information

Joomla! Advanced Content Editing January 11, 2018

Joomla! Advanced Content Editing January 11, 2018 Joomla! Advanced Content Editing January 11, 2018 Instructor for this Workshop Web Development School of Arts and Sciences TABLE OF CONTENTS Welcome... 3 What is Joomla?... 3 Joomla Administrator Overview

More information

Imagine. Create. Discover. User Manual. TopLine Results Corporation

Imagine. Create. Discover. User Manual. TopLine Results Corporation Imagine. Create. Discover. User Manual TopLine Results Corporation 2008-2009 Created: Tuesday, March 17, 2009 Table of Contents 1 Welcome 1 Features 2 2 Installation 4 System Requirements 5 Obtaining Installation

More information

Want to add cool effects like rollovers and pop-up windows?

Want to add cool effects like rollovers and pop-up windows? Chapter 10 Adding Interactivity with Behaviors In This Chapter Adding behaviors to your Web page Creating image rollovers Using the Swap Image behavior Launching a new browser window Editing your behaviors

More information

Insert/Edit Image. Overview

Insert/Edit Image. Overview Overview The tool is available on the default toolbar for the WYSIWYG Editor. The Images Gadget may also be used to drop an image on a page and will automatically spawn the Insert/Edit Image modal. Classic

More information

Widgets. Overview. Widget. Widgets Widget toolkits Lightweight vs. heavyweight widgets Swing Widget Demo

Widgets. Overview. Widget. Widgets Widget toolkits Lightweight vs. heavyweight widgets Swing Widget Demo Widgets Overview Widgets Widget toolkits Lightweight vs. heavyweight widgets Swing Widget Demo Widget Widget is a generic name for parts of an interface that have their own behavior: buttons, progress

More information

Chapter 7 Inserting Spreadsheets, Charts, and Other Objects

Chapter 7 Inserting Spreadsheets, Charts, and Other Objects Impress Guide Chapter 7 Inserting Spreadsheets, Charts, and Other Objects OpenOffice.org Copyright This document is Copyright 2007 by its contributors as listed in the section titled Authors. You can distribute

More information

User Guide Product Design Version 1.7

User Guide Product Design Version 1.7 User Guide Product Design Version 1.7 1 INTRODUCTION 3 Guide 3 USING THE SYSTEM 4 Accessing the System 5 Logging In Using an Access Email 5 Normal Login 6 Resetting a Password 6 Logging Off 6 Home Page

More information

Getting Started with HCA and X10

Getting Started with HCA and X10 Getting Started with HCA and X10 This Getting Started Guide continues from the previous Getting Started with HCA Installation and Introduction which covers installing HCA and the basic operations available

More information

ProvideX. NOMADS Enhancements

ProvideX. NOMADS Enhancements ProvideX VERSION 8.0 NOMADS Enhancements Introduction 3 Panel Designer Enhancements 5 Properties Window 7 New Format Definition for Grids/List Boxes 12 Bulk Edit Utility 14 Drag and Drop Utility 16 Dependency

More information

Wordpress Training Manual

Wordpress Training Manual The Dashboard... 2 If this is your first time logging in:... 2 How do I change my password or email address?... 3 Search Engine Optimization (SEO)... 4 SEO for Pages... 4 SEO for Images... 5 Managing Pages...

More information

Clip Art and Graphics. Inserting Clip Art. Inserting Other Graphics. Creating Your Own Shapes. Formatting the Shape

Clip Art and Graphics. Inserting Clip Art. Inserting Other Graphics. Creating Your Own Shapes. Formatting the Shape 1 of 1 Clip Art and Graphics Inserting Clip Art Click where you want the picture to go (you can change its position later.) From the Insert tab, find the Illustrations Area and click on the Clip Art button

More information

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below.

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below. Graphing in Excel featuring Excel 2007 1 A spreadsheet can be a powerful tool for analyzing and graphing data, but it works completely differently from the graphing calculator that you re used to. If you

More information

PowerPoint Tips and Tricks

PowerPoint Tips and Tricks PowerPoint Tips and Tricks Viewing Your Presentation PowerPoint provides multiple ways to view your slide show presentation. You can access these options either through a toolbar on your screen or by pulling

More information

Cropping an Image for the Web

Cropping an Image for the Web Cropping an Image for the Web This guide covers how to use the Paint software included with Microsoft Windows to crop images for use on a web page. Opening Microsoft Paint (In Windows Accessories) On your

More information

Tcl/Tk lecture. What is the Wish Interpreter? CIS 410/510 User Interface Programming

Tcl/Tk lecture. What is the Wish Interpreter? CIS 410/510 User Interface Programming Tcl/Tk lecture CIS 410/510 User Interface Programming Tool Command Language TCL Scripting language for developing & using GUIs Allows generic programming variables, loops, procedures Embeddable into an

More information

Package widgettools. R topics documented: May 7, Title Creates an interactive tcltk widget Version Date Author Jianhua Zhang

Package widgettools. R topics documented: May 7, Title Creates an interactive tcltk widget Version Date Author Jianhua Zhang Title Creates an interactive tcltk widget Version 1.58.0 Date 2008-10-28 Author Jianhua Zhang Package widgettools May 7, 2018 Description This packages contains tools to support the construction of tcltk

More information

Guide to Completing Your Senior English and Government Portfolios

Guide to Completing Your Senior English and Government Portfolios Sheridan High School s Guide to Completing Your Senior English and Government Portfolios Written by: Dave Burkhart Updated: August 24, 2014 2 Clicking on a topic or a page number will automatically take

More information

VisualPST 2.4. Visual object report editor for PowerSchool. Copyright Park Bench Software, LLC All Rights Reserved

VisualPST 2.4. Visual object report editor for PowerSchool. Copyright Park Bench Software, LLC All Rights Reserved VisualPST 2.4 Visual object report editor for PowerSchool Copyright 2004-2015 Park Bench Software, LLC All Rights Reserved www.parkbenchsoftware.com This software is not free - if you use it, you must

More information

Week 5 Creating a Calendar. About Tables. Making a Calendar From a Table Template. Week 5 Word 2010

Week 5 Creating a Calendar. About Tables. Making a Calendar From a Table Template. Week 5 Word 2010 Week 5 Creating a Calendar About Tables Tables are a good way to organize information. They can consist of only a few cells, or many cells that cover several pages. You can arrange boxes or cells vertically

More information

Working with Confluence Pages

Working with Confluence Pages Working with Confluence Pages Contents Creating Content... 3 Creating a Page... 3 The Add Page Link... 3 Clicking on an Undefined Link... 4 Putting Content on the Page... 4 Wiki Markup... 4 Rich Text Editor...

More information

Designing the Layout of External Content Using the Widgets Tool

Designing the Layout of External Content Using the Widgets Tool Designing the Layout of External Content Using the Widgets Tool First Published: August 2, 2012 This module describes how to design the layout for display of the data that you have integrated and mapped

More information

Starting Excel application

Starting Excel application MICROSOFT EXCEL 1 2 Microsoft Excel: is a special office program used to apply mathematical operations according to reading a cell automatically, just click on it. It is called electronic tables Starting

More information

All Applications Release Bulletin January 2010

All Applications Release Bulletin January 2010 All Applications Release Bulletin January 2010 In this bulletin... Online Enrollment: HTML Forms for Contracts 2 System Administration: MBP Online User Accounts 11 About Release 91_6 This release includes

More information

Building a widget using widgettools

Building a widget using widgettools Building a widget using widgettools Jianhua Zhang October 30, 2017 $Id$ 2002 Bioconductor Contents 1 Introduction 1 2 Build a widget 2 1 Introduction The purpose of widgettools is to provide a simple interface

More information

Creating Interactive PDF Forms

Creating Interactive PDF Forms Creating Interactive PDF Forms Using Adobe Acrobat X Pro for the Mac University Information Technology Services Training, Outreach, Learning Technologies and Video Production Copyright 2012 KSU Department

More information

Easy interactive ggplots

Easy interactive ggplots Easy interactive ggplots by Richie Cotton www.hsl.gov.uk www.hsl.gov.uk An An Agency Agency of the of Health the Health and Safety and Executive Safety Executive bitly.com/jv1nbn air concentration pre/post

More information

Candy is Dandy Project (Project #12)

Candy is Dandy Project (Project #12) Candy is Dandy Project (Project #12) You have been hired to conduct some market research about M&M's. First, you had your team purchase 4 large bags and the results are given for the contents of those

More information

How to lay out a web page with CSS

How to lay out a web page with CSS How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS3 to create a simple page layout. However, a more powerful technique is to use Cascading Style Sheets (CSS).

More information

InDesign Part II. Create a Library by selecting File, New, Library. Save the library with a unique file name.

InDesign Part II. Create a Library by selecting File, New, Library. Save the library with a unique file name. InDesign Part II Library A library is a file and holds a collection of commonly used objects. A library is a file (extension.indl) and it is stored on disk. A library file can be open at any time while

More information

Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static

Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static Table of Contents Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static Series Chart with Dynamic Series Master-Detail

More information

ACADEMIC TECHNOLOGY SUPPORT

ACADEMIC TECHNOLOGY SUPPORT ACADEMIC TECHNOLOGY SUPPORT D2L : Introduction A Guide for Instructors ats@etsu.edu 439-8611 www.etsu.edu/ats Table of Contents Introduction...1 Objectives... 1 Logging In to D2L...1 My Home... 2 The Minibar...

More information

SmartArt Office 2007

SmartArt Office 2007 SmartArt Office 2007 This is not an official training handout of the, Davis School District SmartArt... 2 Inserting SmartArt... 2 Entering the Text... 2 Adding a Shape... 2 Deleting a Shape... 2 Adding

More information

Chapter 2 Welcome App

Chapter 2 Welcome App 2.8 Internationalizing Your App 1 Chapter 2 Welcome App 2.1 Introduction a. Android Studio s layout editor enables you to build GUIs using drag-and-drop techniques. b. You can edit the GUI s XML directly.

More information

Center for Faculty Development and Support Making Documents Accessible

Center for Faculty Development and Support Making Documents Accessible Center for Faculty Development and Support Making Documents Accessible in Word 2007 Tutorial CONTENTS Create a New Document and Set Up a Document Map... 3 Apply Styles... 4 Modify Styles... 5 Use Table

More information

SmartView. User Guide - Analysis. Version 2.0

SmartView. User Guide - Analysis. Version 2.0 SmartView User Guide - Analysis Version 2.0 Table of Contents Page i Table of Contents Table Of Contents I Introduction 1 Dashboard Layouts 2 Dashboard Mode 2 Story Mode 3 Dashboard Controls 4 Dashboards

More information

Working with Pages... 9 Edit a Page... 9 Add a Page... 9 Delete a Page Approve a Page... 10

Working with Pages... 9 Edit a Page... 9 Add a Page... 9 Delete a Page Approve a Page... 10 Land Information Access Association Community Center Software Community Center Editor Manual May 10, 2007 - DRAFT This document describes a series of procedures that you will typically use as an Editor

More information

Package ade4tkgui. R topics documented: November 9, Version Date Title 'ade4' Tcl/Tk Graphical User Interface

Package ade4tkgui. R topics documented: November 9, Version Date Title 'ade4' Tcl/Tk Graphical User Interface Version 0.2-9 Date 2015-11-09 Title 'ade4' Tcl/Tk Graphical User Interface Package ade4tkgui November 9, 2015 Author Jean Thioulouse , Stéphane Dray ,

More information

FrontPage 2000 Tutorial -- Advanced

FrontPage 2000 Tutorial -- Advanced FrontPage 2000 Tutorial -- Advanced Shared Borders Shared Borders are parts of the web page that share content with the other pages in the web. They are located at the top, bottom, left side, or right

More information

What is OneNote? The first time you start OneNote, it asks you to sign in. Sign in with your personal Microsoft account.

What is OneNote? The first time you start OneNote, it asks you to sign in. Sign in with your personal Microsoft account. OneNote What is OneNote? OneNote is a digital notebook. In OneNote, you can: Type notes or record audio at your laptop. Sketch or write ideas on your tablet. Add picture from your phone. Find notes instantly.

More information

RC Justified Gallery User guide for version 3.2.X. Last modified: 06/09/2016

RC Justified Gallery User guide for version 3.2.X. Last modified: 06/09/2016 RC Justified Gallery User guide for version 3.2.X. Last modified: 06/09/2016 This document may not be reproduced or redistributed without the permission of the copyright holder. It may not be posted on

More information

Adobe Acrobat Training

Adobe Acrobat Training Adobe Acrobat Training November 18 th, 2010 What Are PDFs For? Acrobat is not a word processor (Word) or a print layout program (Publisher). Acrobat creates Portable Document Format (PDF) files, which

More information

Display, Overflow, White Space, and Cursor Karl Kasischke WCC INP 150 Winter

Display, Overflow, White Space, and Cursor Karl Kasischke WCC INP 150 Winter Display, Overflow, White Space, and Cursor 2009 Karl Kasischke WCC INP 150 Winter 2009 1 display Property overflow Property Minimum and Maximum Widths and Heights white-space Property cursor Property 2009

More information

Basic Controls. Motif Programmer s Guide 1

Basic Controls. Motif Programmer s Guide 1 Basic Controls Controls are widgets and gadgets with which the user interacts directly. They form the leaves of the widget tree whose root is the application s top level shell. In most cases, controls

More information

GCSE CCEA GCSE EXCEL 2010 USER GUIDE. Business and Communication Systems

GCSE CCEA GCSE EXCEL 2010 USER GUIDE. Business and Communication Systems GCSE CCEA GCSE EXCEL 2010 USER GUIDE Business and Communication Systems For first teaching from September 2017 Contents Page Define the purpose and uses of a spreadsheet... 3 Define a column, row, and

More information

Adding Text and Images. IMCOM Enterprise Web CMS Tutorial 1 Version 2

Adding Text and Images. IMCOM Enterprise Web CMS Tutorial 1 Version 2 Adding Text and Images IMCOM Enterprise Web CMS Tutorial 1 Version 2 Contents and general instructions PAGE: 3. First steps: Open a page and a block to edit 4. Edit text / The menu bar 5. Link to sites,

More information

Correcting Grammar as You Type

Correcting Grammar as You Type PROCEDURES LESSON 11: CHECKING SPELLING AND GRAMMAR Selecting Spelling and Grammar Options 2 Click Options 3 In the Word Options dialog box, click Proofing 4 Check options as necessary under the When correcting

More information

NETZONE CMS User Guide Copyright Tomahawk

NETZONE CMS User Guide Copyright Tomahawk NETZONE CMS User Guide Copyright 2015. Tomahawk 1 Phone: + 64 9 522 2333 Email: getintouch@tomahawk.co.nz Tomahawk 2015 www.tomahawk.co.nz 2 NETZONE CMS USER GUIDE WHAT YOU LL FIND INSIDE LOGGING IN 4

More information