search for: tabbook

Displaying 3 results from an estimated 3 matches for "tabbook".

2005 Mar 20
2
[Q] Scrolling a tabbook?
I am using the Tabbook widget to manage multiple files in an editor. One problem is when there too many files loaded the new tabs get created on the far right of the Tabbook and cannot be accessed. Any hint, tip or work aorund for this? (using FOX 1.2) Thanks! Laurent
2007 Dec 14
3
FXTabBook / FXTabItem / FXTabBar
Lyle and Henon; thanks for helping out with ''clearing'' the frames. It''s working. I end up using; parent.removeChild(righttopframe) righttopframe = nil Am afraid I stumbled on another question. I managed to put my application in a tabbook. I am looking to catch the event ''click on tabitem''. I tried SEL_COMMAND on TabItem but that seems not to work. I also would appreciate some text to explain the difference between Tabbar and Tabbook. Thanks, Ernst T.
2005 Aug 05
3
Popup menu attached to a FXTreeItem
Hi, I''m using FXRuby 1.0 on Windows. I''d like to display a popup menu after a right click on a tree item, I cannot make it work : #-------------------- root = FXTreeList.new(parent, 1, self, 0) pop = FXMenuPane.new(parent) expandCmd = FXMenuCommand.new(pop, "Expand", nil, app) expandCmd.connect(SEL_COMMAND) { root.currentItem.expanded=(true) }