search for: fxtext

Displaying 10 results from an estimated 10 matches for "fxtext".

Did you mean: fmtext
2007 Aug 24
2
setting the font in FXText
I have subclassed a FXDialogBox and put a FXText in it for displaying a hex dump in my application. I want to change the font to a courier type font since it''s a hex dump. When do the following it works as expected: # A little dialog box to use in our tests class FXTextDialog < FXDialogBox def initialize(owner) # Invoke base c...
2004 Sep 22
1
FXText with colored lines or text
Im using an FXText and want to change the color or background color of individual lines. Is there a way to do it? I see methods called xxxxStyledText but cant find anything about them. THis is fx from the 1.8.1 build 11 windows installer Thanks Paul
2013 Jan 03
0
FXText syled text bug
Please go here: https://github.com/larskanis/fxruby/issues/2 I''ve created that issue in the FXRuby bug tracker, Lars Kanis, then maintainer says: "This is actually a bug in the fox toolkit. If you set the FXText to styled=true, then the memory needed for getStyle is allocated. If not libfox crashes.May you open a bug report on fox-toolkit? I''m a bit busy currently." -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/f...
2006 Mar 29
2
intercepting messages from FXScrollBar toFXScrollArea
Hello Lyle, the Task, I want to accomplish: I''ve created a little app that is used on a PC with a touch screen. To ease hitting the keys, the keys and the scrollbars are really big (45 pixels). So the ScrollCorner is also really big and I just wanted to use this space by moving the ScrollDown Botton down to the position of the ScrollCorner (like the attachment shows) The code looks like
2008 May 18
8
FXTable::fitColumnsToContents
...om FOX; but it also checks the width of the column header items to see if they''re wider. > I have another question: > > Many FXRuby objects have a "height" parameter. However, it seems to > be ignored in at least some cases. For example, if you create an > FXText object without "LAYOUT_FILL" or "LAYOUT_FILL_Y" then the text > window is something like 3 lines high. If I add a height parameter, > the object height does not change. True. For those cases you''d need to specify the LAYOUT_FIX_HEIGHT layout width to get i...
2008 May 06
1
Wrap text inside an FXTable cell?
Hi, Is it possible to wrap text inside an FXTable cell, just like it is possible with an FXText object? I''d like to display and edit multi-line text inside an FXTable cell. Thanks! Philippe
2010 Jul 28
6
FXTextField.connect(SEL_CHANGED)
When I do an assignment to the text in a FXTextField, SEL_CHANGED is not raised. The text is changed on the screen. How do I detect that the text has been changed and/or ... how do I raise SEL_CHANGED? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/fxruby-users/attachments/201...
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 a real window,...
2010 Jul 19
0
HTML widget?
From FXRuby Create Lean and Mean GUIs with Ruby - - - A serious shortcoming of FOX and FXRuby is the lack of a widget that can display HTML or rich text. The FXText widget is definitely not that kind of widget, although it provides some minimal support for ?styled? text. - - - Does such a widget exist yet? I did a Google search and the last time I could find the question asked and answered was in August of ''09.
2006 Sep 22
1
A problem about updating an FXRuby program layout recursively
Dear all, I have a design question: assume we have an FXText field containing a sentence The <best> Ruby version is the current one. with "best" highlighted, and there is a choice of words | most wonderful |, | cutest |, | most effective | to replace "best". To do the replacement, I want to just click on any of three buttons. I...