Tickle Text 0.5 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Tickle Text 0.5 (Default branch)
# 1  
Old 02-26-2008
Tickle Text 0.5 (Default branch)

Image Tony's Tickle Text Editor, or TclText, is a fast, lightweight text editor written in Tcl/Tk. It will run on Windows and Mac OS, but some of its functions only work in Linux, including calling xterm and printing via lpr. Background color choices include seashell, tomato, orange, yellow, pale green, light blue, plum, and, white. It has an external program launcher, so you can launch a browser to check HTML files you are editing, open another terminal, launch kshisen and take a break, etc.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
XmTextSetSource(library call)											     XmTextSetSource(library call)

NAME
XmTextSetSource -- A Text function that sets the source of the widget SYNOPSIS
#include <Xm/Text.h> void XmTextSetSource( Widget widget, XmTextSource source, XmTextPosition top_character, XmTextPosition cursor_position); DESCRIPTION
XmTextSetSource sets the source of the Text widget. Text widgets can share sources of text so that editing in one widget is reflected in another. This function sets the source of one widget so that it can share the source of another widget. Setting a new text source destroys the old text source if no other Text widgets are using that source. To replace a text source but keep it for later use, create an unmanaged Text widget and set its source to the text source you want to keep. widget Specifies the Text widget ID. source Specifies the source with which the widget displays text. This can be a value returned by the XmTextGetSource(3) function. If no source is specified, the widget creates a default string source. top_character Specifies the position in the text to display at the top of the widget. This is an integer number of characters from the begin- ning of the text buffer. The first character position is 0 (zero). cursor_position Specifies the position in the text at which the insert cursor is located. This is an integer number of characters from the begin- ning of the text buffer. The first character position is 0 (zero). For a complete definition of Text and its associated resources, see XmText(3). RELATED
XmText(3). XmTextSetSource(library call)