PHP-GTK2 Newsletter

PHP-GTK2 Tips & Techniques
FREE Newsletter
by kksou



Sample Code 4: How to change the font and font size of GtkLabel?
Written by kksou   
Tuesday, 12 September 2006
Problem

You want to change the font and font size of GtkLabel as shown below:

How to change the font and font size of GtkLabel?


Solution

Use GtkWidget::modify_font()

$label->modify_font(new PangoFontDescription('Eras Demi ITC 48'));

Sample Code
1   
2   
3   
4   
5   
6   
7   
<?php
$window = new GtkWindow();
$window->set_size_request(480, 240);
$window->modify_bg(Gtk::STATE_NORMAL, GdkColor::parse("#FFFF00"));
$window->connect_simple('destroy', array('Gtk','main_quit'));
$label = new GtkLabel("hello world!");
$label->modify_font(new PangoFontDescription('Eras Demi ITC 48')); // set font style
  • Note that this is only 70% of the sample code. You have to be a registered member to see the entire sample code. Please login or register.
  • Registration is free and immediate.
  • Have some doubt about the registration? Please read this forum article.
Explanation
  • The line with modify_font() sets the font of the label to "Eras Demi ITC" and font size to 48.
  • You can just change the font size, without specifying the font name, e.g. modify_font(new PangoFontDescription('48'))
  • I'm using php-gtk2 on winXP. For windows, you can get the names of the fonts in the fonts directory (usually it's c:\windows\fonts). E.g. you can use 'Times New Roman', 'Times New Roman Italic', 'Tahoma', 'Trebuchet MS Bold', etc. Just use the font names as it appears in that folder.
  • I think it should be quite similar for Linux and Mac. If you're on this platform, maybe you could let me know if it works.

User reviews   Average user ratings:    4.5   (from 5 users)
  1. niQ from The Netherlands
    August 06, 2008 2:41pm

  2. jackywdx
    October 22, 2008 2:36am

  3. martti pitkanen
    March 06, 2009 3:21pm

  4. okazaki
    March 08, 2009 6:37pm

  5. Anthony Perfetti
    July 05, 2010 10:16am

Note: You have to be a registered member to leave a comment. Free registration here.

 
< Prev   Next >

Blog - Forum - Privacy Policy - Contact Us
Copyright © 2006-2009. kksou.com. All Rights Reserved