php-gtk

How to install php-gtk in the Acer Aspire One?

I have an application that works pretty well in Ubuntu, Windows and the Xandros that come with the Asus EeePC. Now we are moving to the Acer Aspire One but I'm having a lot of trouble making php-gtk to compile under the Fedora-like (Linpus Linux Lite) Linux that come with it. ...

Interactive SVG - Learning Resources?

Has anyone any reources for learning how to implement SVG with php/mysql (and possibly with php-gtk)? I am thinking of making a top-down garden designer, with drag and drop predefined elements (such as trees/bushes) and definable areas of planting (circles/squares). Gardeners could then track over time how well planting did in a certain ...

how to add a simple message to a php-gtk statusbar?

I have a simple GtkStatusBar created with glade,and want to add a simple message with the date of the last update of the database (just a simple and plain date). I don't want to use the whole stacks, context and all the other things that gtk developers put on the statusbar code. (I could simply use a label but I would like to keep the ...

How to change the function called when I click in the close button on php-gtk?

Hi, I load a single instance of a window on php-gtk, I have a button named "Cancel" that hide(); the window, so when the window is needed again I just show();. But when I click on the close button instead of the cancel button the window is destroyed. Even when I redirect the event (I'm not sure if i'm doing it right) it calls the first(...

Does anyone here uses PHP-GTK? Is there a better alternative?

I had made some questions regarding php-gtk(there are only 4 php-gtk tagged questions and 3 are mine) and I end up answering myself because no one answer them. I know is a strange language selection but I was attracted to it because it runs on several OS's and the fact that I can reuse some of my code (also the apps end up looking good ...

Gnope (PHP-GTK) - How to Drop a later version of php into the Gnope directory

I have installed the latest version of Gnope onto my PC See: http://www.gnope.org/download.php (Release 1.5.1) Gnope installs its own copy of PHP ( 5.1.4 CLI version). However, PHP version 5.1 is sooo old. I'd like to use a later version with gnope. I'm considering dropping a later version of PHP into that folder - but I am not sur...

Why does the add() method in PHP-GTK cause 2 parent-set signals to be emmitted?

I am going through the book PHP-GTK and trying out listing 4-1 One thing I notice is that with the following code some odd output occurs: <?php //listing4-1b.php function setParentFunction($widget) { //get the widgets parent $parent = $widget->get_parent(); //echo a mssg about the widget echo 'The ' . get_class($wi...

GUI Application becomes unresponsive while http request is being done

I have just made my first proper little desktop GUI application that basically wraps a GUI (php-gtk) interface around a SimpleTest Web Test case to make it act as a remote testing client. Each time the local The Web Test case runs, it sends an HTTP request to another SimpleTest case (that has an XHTML interface) sitting on my server. ...

PHP-GTK problem with GtkBuilder

Hello guys I am using Glade 3.6.7 with PHP-GTK on Ubuntu lucid lynx to create some application. During experimenting I got an error when I use GtkBuilder as Project file format in glade when i tried to execute a very simple php script to make sure it works. <?php $glade = new GladeXML("test.glade"); Gtk::main(); ?> I got the following...