Questions tagged [php-gtk]

PHP-GTK is a set of language bindings for PHP which allow GTK+ GUI applications to be written in PHP. PHP-GTK provides an object-oriented interface to GTK+ classes and functions.

PHP-GTK was originally conceived by Andrei Zmievski, who is also actively involved in the development of PHP and the Zend Engine. The idea was received well by the PHP community, and more people started to get involved with the project. James Moore and Steph Fox were among the first to join in, contributing a great deal to PHP-GTK through their documentation efforts, and Frank Kromann - also from the PHP development team - supplied Windows binaries for the project.

The first version of PHP-GTK was released in March 2001. More people began to get involved, and several extensions were contributed introducing new widgets, such as Scintilla and GtkHTML. PHP-GTK 1.0 was released in October 2003 alongside several extensions — including a wrapper for libglade, which allowed the cross-platform Glade UI builder to be used in creating PHP-GTK applications.

External links

24 questions
0
votes
1 answer

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…
JW.
  • 4,821
  • 5
  • 43
  • 60
0
votes
0 answers

php-gtk issues (combobox, beep and spinbutton)

I recently moved a complete application from PHP5.1 + GTK2.6 + Libglade to PHP5.6 + GTK2.24 + GTKBuilder. I rebuild all glade files for GTKBuilder and fixed some PHP issues. Application starts and all windows open as expected. But I am having some…
Nhz
  • 131
  • 1
  • 6
0
votes
1 answer

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

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.…
levhita
  • 2,161
  • 2
  • 21
  • 31
0
votes
1 answer

Having problems installing PHP GTK on a Mac running OS X 10.7.5

A colleague and I are attempting to install PHP GTK on a Mac running OS X 10.7.5. When we try to install phpize, which is necessary for PHP GTK to run, we get the following error message: lib-mug182:php-gtk vika$ sudo ./buildconf…
0
votes
1 answer

Getting "make: *** [ext/gtk+/php_gtk+.lo] Error 1" while installing php_gtk on Fedora 17

I want to install php_gtk on Fedora 17. I've downloaded php-gtk-2.0.1 and tried to install it. Then I've done this: ./buildconf ./configure make After the make command, the following error appeared: In file included from…
nikolashaD
  • 21
  • 6
0
votes
1 answer

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…
levhita
  • 2,161
  • 2
  • 21
  • 31
0
votes
3 answers

Run PHP-GTK Programs without Command Prompt

Suppose I have made a project on PHP-GTK. Now how can I run the PHP-GTK without opening the command prompt? Like in other software, we have a icon on the desktop, by click on that we can run the program, I want to do the same with my program made in…
kwaxy
  • 31
  • 1
0
votes
1 answer

Resize GtkMessageDialog in php

I need to resize a GtkMessageDialog in php to have enough space for long string (dont want a new line)! Create it: $dialog = new GtkMessageDialog($this->window, Gtk::DIALOG_MODAL, Gtk::MESSAGE_QUESTION, Gtk::BUTTONS_YES_NO, ""); Set the message…
leon22
  • 5,280
  • 19
  • 62
  • 100
-4
votes
1 answer

developing an app which capture video and marks time range on cross platform

i would like to develop an app. So when i finish to develop that, i would like to it works on cross platform (etc. Windows, IOS - iPad - ) This app must capture video from webcam or other video source and when it is capturing video i would like to…
Kerberos
  • 1,228
  • 6
  • 24
  • 48
1
2