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.
...
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 ...
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 ...
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(...
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 ...
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...
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...
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.
...
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...