data(-orientation): no such element in array called from tixPanedWindow::GetNaturalSizes, line6 called from TixPanedWindow::Repack, line 6
-scrollbar
auto
' is seems to work well but with '-scrollbar
x
' and '-scrollbar y
' are swapped.
With either 'x' 'y' or 'both' it doesn't show the contents of the
window until I click on one of the scroll bars. (This was intended behavior, not changed): Also if I have a vertical scrollbar only and I resize the window to be smaller than some long entry widgets then the widgets aren't shortened to fit within the new window but instead go past the end where I can't see them and because I don't have a horizontal scrollbar (because I don't want one, I want the entry widgets to get shorter and then for me to scroll within a widget) I can't see what is past the end.
Changes after Tix4.0a6 released
I think this was caused by a memory allocation problem in tixHList.c. It was fixed.All I am doing is building a directory tree and then clicking on a file I open a dialog with the Scrolled text widget displaying the file. When I run my application on my workstation ( Sun Sparc IPC, running SunOS4.1.3 ) everything is fine, when i run it on a Viper X-terminal it is fine. But When I run it on a NCD X-terminal (those supposed to be fast babies ), it crashes , at the point where I open the file to display in the Scrolled text widget..the message is insufficient resources: Bad Alloc XCreatePixmap...blah blah Basically the server is NOT able to allocate the resources?? could you enlighten me as to what is going wrong..please Thanks,
Balloon widget 1. If I specified an invalid option name to tixBalloon, it failed to tidy up on exit. E.g. % tixBalloon .bal -statusBar .c unknown option "-statusBar" % tixBalloon .bal -statusbar .c window name "bal" already exists in parent I think I saw this on several other widgets. 2. An invalid value for the "-state" option was accepted without error. E.g. %.bal configure -state fred 3. The Widget option "-state" description does not describe "balloon", "both" and "status" states, just "normal" and "disabled".
BUG: tixHList: entrycget widget command rejects -text as possible option e.g. #!/bin/sh # \ exec tixwish -file $0 ${1+"$@"} tixHList .list -itemtype text set entryPath [.list addchild {} -text "hello"] set entryText1 [lindex [.list entryconfigure $entryPath -text] 4] set entryText2 [.list entrycget $entryPath -text] Last line in this script gives error unknown option "-text" while executing ".list entrycget $entryPath -text" ... but using entryconfigure to get the value of the text works.Back to the Tix Documentation Master Index