PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

GtkLabel Constructor | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

GtkLabel Constructor

GtkLabel ([string label_text ]);

例 20. Aligning the text in a GtkLabel

<?php
if( !extension_loaded('gtk')) {	
	dl( 'php_gtk.' . PHP_SHLIB_SUFFIX); 
}

$window = &new GtkWindow();
$window->set_default_size(300, 70);
$window->connect_object('destroy', array('gtk', 'main_quit'));

$label = &new GtkLabel("This is my label");
//move it to the lower right
$label->set_alignment(1.0, 1.0);

//give it a nice font and color
$style = $label->get_style();
$style->font = gdk::font_load( '-*-Arial-bold-r-normal-*-24-*-*-*-*-*-*-*');
$orange = &new GdkColor( '#FF8000');;
$style->fg[GTK_STATE_NORMAL] = $orange;
$label->set_style( $style);

//you can't set the background color of a label, use the parent widget instead
$wstyle = $window->get_style();
$wstyle->bg[GTK_STATE_NORMAL] = $wstyle->black;
$window->set_style( $wstyle);

$window->add($label);
$window->show_all();

gtk::main();
?>

The set_alignment() method is inherited from GtkMisc.

忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「GtkLabel Constructor」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | GtkLabel Constructor」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: