Description
Gtk_ScrollingLabel is a class that creates a
pseudo-widget which makes scrolling text within a label easy. The text
within the label can be set to scroll from left to right, right to left, or
bounce within the boundries of the label. The speed of the scrolling text
can also be controlled. There are also built in methods to make the text
pause or stop when the user moves the mouse over the label and start up
again when the mouse leaves the label space.
Getting started with Gtk_ScrollingLabel is easy. All
you need to do is instantiate the class, add it to a window, and start the
scrolling. Take at look at the example below.
Example 39-1.
Simple Setup
<?php
// Create a Gtk_ScrollingLabel instance.
require_once 'Gtk/ScrollingLabel.php';
$sLabel =& new Gtk_ScrollingLabel('Scrolling Labels Rule!');
// Create a GtkWindow to put the label in.
$gWin =& new GtkWindow;
$gWin->connect_object('destroy', array('gtk', 'main_quit'));
$gWin->add($sLabel->getWidget());
// Show everything.
$gwin->show_all();
// Start the label and the main loop.
$sLabel->startScroll();
gtk::main();
?> |
|