| View previous topic :: View next topic |
| Author |
Message |
thomas-worm
Joined: 12 Jan 2006 Posts: 18 Location: Erlangen, Bavaria, Germany
|
Posted: Sun Feb 12, 2006 7:21 pm Post subject: GtkProgress depricated |
|
|
Hello,
| Code: | PHP Warning: GtkProgress::set_show_text() is deprecated: use GtkProgressBar in
D:\pear\Thomas Worm\phpOffice\phpOffice-0.0.1\phpOffice.php on line 74
Warning: GtkProgress::set_show_text() is deprecated: use GtkProgressBar in D:\pe
ar\Thomas Worm\phpOffice\phpOffice-0.0.1\phpOffice.php on line 74
PHP Warning: GtkProgress::set_text_alignment() is deprecated: use GtkProgressBa
r in D:\pear\Thomas Worm\phpOffice\phpOffice-0.0.1\phpOffice.php on line 75
Warning: GtkProgress::set_text_alignment() is deprecated: use GtkProgressBar in
D:\pear\Thomas Worm\phpOffice\phpOffice-0.0.1\phpOffice.php on line 75
PHP Warning: GtkProgress::set_format_string() is deprecated: use GtkProgressBar
in D:\pear\Thomas Worm\phpOffice\phpOffice-0.0.1\phpOffice.php on line 76
Warning: GtkProgress::set_format_string() is deprecated: use GtkProgressBar in D
:\pear\Thomas Worm\phpOffice\phpOffice-0.0.1\phpOffice.php on line 76
PHP Warning: GtkProgress::set_percentage() is deprecated: use GtkProgressBar in
D:\pear\Thomas Worm\phpOffice\phpOffice-0.0.1\phpOffice.php on line 94
Warning: GtkProgress::set_percentage() is deprecated: use GtkProgressBar in D:\p
ear\Thomas Worm\phpOffice\phpOffice-0.0.1\phpOffice.php on line 94
PHP Warning: GtkProgress::set_format_string() is deprecated: use GtkProgressBar
in D:\pear\Thomas Worm\phpOffice\phpOffice-0.0.1\phpOffice.php on line 88
Warning: GtkProgress::set_format_string() is deprecated: use GtkProgressBar in D
:\pear\Thomas Worm\phpOffice\phpOffice-0.0.1\phpOffice.php on line 88
PHP Warning: GtkProgress::set_percentage() is deprecated: use GtkProgressBar in
D:\pear\Thomas Worm\phpOffice\phpOffice-0.0.1\phpOffice.php on line 94
Warning: GtkProgress::set_percentage() is deprecated: use GtkProgressBar in D:\p
ear\Thomas Worm\phpOffice\phpOffice-0.0.1\phpOffice.php on line 94
PHP Warning: GtkProgress::set_format_string() is deprecated: use GtkProgressBar
in D:\pear\Thomas Worm\phpOffice\phpOffice-0.0.1\phpOffice.php on line 88
Warning: GtkProgress::set_format_string() is deprecated: use GtkProgressBar in D
:\pear\Thomas Worm\phpOffice\phpOffice-0.0.1\phpOffice.php on line 88
PHP Warning: GtkProgress::set_percentage() is deprecated: use GtkProgressBar in
D:\pear\Thomas Worm\phpOffice\phpOffice-0.0.1\phpOffice.php on line 94
Warning: GtkProgress::set_percentage() is deprecated: use GtkProgressBar in D:\p
ear\Thomas Worm\phpOffice\phpOffice-0.0.1\phpOffice.php on line 94 |
I used this functions on a GtkProgressBar object. But as PHP said they're depricated in PHP-GTK2. Which functions should be used instead? |
|
| Back to top |
|
 |
cweiske
Joined: 08 Dec 2005 Posts: 454 Location: Leipzig/Germany
|
Posted: Sun Feb 12, 2006 11:02 pm Post subject: Re: GtkProgress depricated |
|
|
| thomas-worm wrote: | | I used this functions on a GtkProgressBar object |
You are sure that you're not confusing "GtkProgress" and "GtkProgressBar" (without and with "bar")? |
|
| Back to top |
|
 |
thomas-worm
Joined: 12 Jan 2006 Posts: 18 Location: Erlangen, Bavaria, Germany
|
Posted: Sun Feb 12, 2006 11:26 pm Post subject: |
|
|
Yes...
My code is:
| Code: |
// ...
$this->progressbar = &new GtkProgressBar();
$this->progressbar->set_show_text(true);
$this->progressbar->set_text_alignment(0,0.5);
$this->progressbar->set_format_string('%p%%: Loading...');
// ...
|
This code produces the depricated-warning i posted above! |
|
| Back to top |
|
 |
|