ruby-****@lists*****
ruby-****@lists*****
2003年 5月 26日 (月) 16:08:43 JST
------------------------- REMOTE_ADDR = 61.204.181.66 REMOTE_HOST = URL = http://ruby-gnome2.sourceforge.jp/?Gtk%3A%3AFontSelectionDialog ------------------------- ------------------------- = class Gtk::FontSelectionDialog The Gtk::FontSelectionDialog widget is a dialog box for selecting a font. To set the font which is initially selected, use Gtk::FontSelectionDialog#font_name=. To get the selected font use Gtk::FontSelectionDialog#font_name. To change the text which is shown in the preview area, use Gtk::FontSelectionDialog#preview_text=. == super class * ((<Gtk::Dialog>)) == class methods --- Gtk::FontSelectionDialog.new Creates a new Gtk::FontSelectionDialog. * Returns: a new Gtk::FontSelectionDialog. == public instance methods --- font_name Gets the currently-selected font name. * Returns: the currently-selected font name, or nil if no font is selected. --- font_name=(fontname) Sets the currently-selected font. * fontname : a fontname. (String) * Returns: fontname. --- set_font_name(fontname) Same as font_name=. ((*Notice*)): This method returns true or false not self. * fontname : a fontname. (String) * Returns : true if the font was found. --- preview_text Gets the text displayed in the preview area. * Returns: the text displayed in the preview area. --- preview_text=(text) Sets the text displayed in the preview area. * text: the text to display in the preview area. (String) * Returns: text --- set_preview_text(text) Same as preview_text=. * text: the text to display in the preview area. (String) * Returns: text --- apply_button Gets the apply button. * Returns: the apply button(Gtk::Button) --- cancel_button Gets the cancel button. * Returns: the cancel button(Gtk::Button) --- ok_button Gets the ok button. * Returns: the ok button(Gtk::Button) --- font_selection Gets the font_selection. * Returns: the font_selection(Gtk::FontSelection) == See Also Gtk::FontSelection - the underlying widget for selecting fonts. - ((<Masao>))