The prolific though anonymous author of the PHP-GTK2 Cookbook just mentioned an early build of the latest Glade for Win32 : Glade v3.4.1 for windows!
After giving the 3.x versions a spin, I can only suggest PHP-GTK2 developers already using Glade try it too, as the single-window UI improvement definitely changes impressions regarding the usability of Glade.
2 years after begining, I'm happy to announce you the " Beta " release of the Gul 2.0 project, the XUL parser for PHP GTK (97% released). I have to do lot of things, but i think it looks like something.
You can find documentation on RedSofa.
Dear Php-Gtk user and believers,
Yesterday I found something out about php-gtk and object oriented stuff and I guess a lot of people will come to the same trouble : when you connect signals from your class you have to watch out e.g.
<?php
$treeview->connect('drag-data-received', array($this,'on_drop'));
?>$this without ' ' means the instance of the class '$this' so with quotes it means the class itself Sometimes I need to create a combobox to manage associative arrays. I need something which works like HTML comboboxes, where the value chosen by the user, is different from the one sent to the application.
Just like that:
<option value="Red">Apple</option>so I wrote a component which doesn't use a GtkTreeModel to manage data.
<?php
class GtkAssociativeComboBox {
private $data;
public $box;
public function __construct ()
{
$this->box = GtkCombobox::new_text();
$this->data = null;
}
/**
I wrote an application where the user clicks on a GtkImage, and I want to know *where* the user clicked. Here's a simple object extending GtkAlignment.
I was a RapidQ programmer. RapidQ was my "Paradise" for several reasons:
- I had not to pay to get/use development tools
- Executables were able to use external libraries
- GUI creation was *really* easy
- rudimental object-oriented programming
when I realized that RapidQ had no future, the doors of heaven closed. I've been searching for another good language for years.
Recent comments
47 weeks 3 days ago
48 weeks 2 days ago
48 weeks 6 days ago
51 weeks 2 days ago
1 year 19 weeks ago
1 year 23 weeks ago
1 year 27 weeks ago
1 year 27 weeks ago
1 year 27 weeks ago
1 year 44 weeks ago