summaryrefslogtreecommitdiffstats
path: root/tkhtml1/doc/notes1.txt
diff options
context:
space:
mode:
Diffstat (limited to 'tkhtml1/doc/notes1.txt')
-rw-r--r--tkhtml1/doc/notes1.txt52
1 files changed, 52 insertions, 0 deletions
diff --git a/tkhtml1/doc/notes1.txt b/tkhtml1/doc/notes1.txt
new file mode 100644
index 0000000..120f33f
--- /dev/null
+++ b/tkhtml1/doc/notes1.txt
@@ -0,0 +1,52 @@
+The HTML widget uses lots of TCL callback routines. But a TCL
+callback can do nasty things. For example, a TCL callback
+could delete the HTML widget that invoked the callback. Or
+it could delete the TCL interpreter in which the HTML widget
+is running. So we have to call HtmlLock() before invoking
+a TCL callback and check to make sure the widget was not
+deleted before using any fields in the widget structure after
+the callback runs.
+
+The following routines can call TCL callbacks, either directly
+or indirectly:
+
+ HtmlTokenizerAppend()
+ HtmlParseCmd()
+ HtmlWidgetCommand()
+ HtmlGetImage()
+ HtmlAddStyle()
+ HtmlParseCmd()...
+ HtmlSizer()
+ HtmlLayout()
+ HtmlRedrawCallback()
+ GetLinkColor()
+ HtmlAddStyle()...
+ HtmlCallResolver()
+ HtmlGetImage()...
+ HtmlResolveCmd()
+ HtmlWidgetCommand()
+ HtmlRedrawCallback()...
+ HtmlGetFont()
+ DrawSelectionBackground()
+ HtmlBlockDraw()...
+ HtmlBlockDraw()
+ HtmlRedrawCallback()
+ FindIndexInBlock()
+ DecodeBaseIndex()
+ HtmlGetIndex()
+ HtmlIndexCmd()
+ HtmlWidgetCommand()...
+ HtmlSelectionSetCmd()
+ HtmlWidgetCommand()...
+ HtmlInsertCmd()
+ HtmlWidgetCommand()...
+ Paragraph()
+ DoBreakMarkup()
+ HtmlLayoutBlock()
+ HtmlLayout()...
+ HtmlTableLayout()
+ DoBreakMarkup()...
+ HtmlDeleteControls()
+ HtmlClear()
+ HtmlWidgetCommand()...
+ HtmlDestroyWidget()