search for: fxstatusbar

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

Did you mean: wxstatusbar
2004 Jul 18
1
FXStatusBar widget problem
In the RubyGems generated documentation for the FXRuby 1.2.1 mswin32 binary, the FXStatusBar widget has a property ''statusline''. In the docs it says ''statusline'' That doesn''t work. What works is ''statusLine''. ... thought you might want to know... ... maybe I''m doing something wrong... -Rich
2005 Dec 22
1
FxTopWindow problem
I have an fxRuby GUI app that I am having problems with. I want to bring up a help window from the main window when someone selects a help/help from the help menu. I have created a helpWindow that inherits from FXDialogBox. It has an FXMenuBar, FXStatusBar, and an FXtext which gets filled with help text from a file. When the help/help menu is selected from the main window, I make a new helpWindow, and call create on it. This all seems to work well, but I was unhappy with the look and feel of the FXDialog. I basically wanted something that looked like...
2005 Dec 01
1
Can''t add text to FXCanvas
...e colorDialog = FXColorDialog.new(self, "Color Dialog") # Create a font dialog for later use @fontDialog = FXFontDialog.new(self, "Axis Font Dialog") # Create a tooltip so we get tool tips for things in this window FXToolTip.new(self.getApp()) statusbar = FXStatusBar.new(self, LAYOUT_SIDE_BOTTOM|LAYOUT_FILL_X|STATUSBAR_WITH_DRAGCORNER) #BUTTONS @rightFrame = FXVerticalFrame.new(self, LAYOUT_SIDE_TOP|LAYOUT_SIDE_RIGHT|LAYOUT_FILL_Y) FXVerticalSeparator.new(self, LAYOUT_SIDE_RIGHT|LAYOUT_FILL_Y|SEPARATOR_GROOVE) colorButton = FXButton...