Important alert: (current site time 7/15/2013 11:23:55 AM EDT)
 

VB icon

PHP-GTK Window Code

Email
Submitted on: 11/21/2001 2:06:26 AM
By: Bogomil Shopov  
Level: Intermediate
User Rating: By 5 Users
Compatibility: PHP 4.0
Views: 15091
author picture
(About the author)
 
     Simple explanation of PHP-GTK framework...!
 
code:
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
 
Terms of Agreement:   
By using this code, you agree to the following terms...   
  1. You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.
  2. You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
  3. You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
  4. You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.
				
//**************************************
// Name: PHP-GTK Window Code
// Description:Simple explanation of PHP-GTK framework...!
// By: Bogomil Shopov
//
//This code is copyrighted and has// limited warranties.Please see http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=462&lngWId=8//for details.//**************************************

<?PHP
//import the php-gtk library file (dll (win))
dl('php_gtk.dll');
// define variables
// window
$window =&new GtkWindow();
$window->set_title("Messenger");
//button
$bt=&new GtkButton("Send value");
$bt2=&new GtkButton("Kill Me!");
 //layout
$adj=&new GtkAdjustment(0,0,400,400,400,400);
$lt=&new GtkLayout($adj,$adj);
// TextField
global $fld;
$fld= &new GtkEntry();
//functions
function get_value($bt,$window){
 global $fld;
 $str=$fld->get_text();
 echo"Your input:$str";
}
//element properties
$bt->connect("clicked","get_value", $window);
$bt2->connect_object('clicked', array('gtk', 'main_quit'));
//Layout positon
$lt->put($fld,1,1);
$lt->put($bt,50,50);
$lt->put($bt2,50,100);
//window show
$window->add($lt);
$window->show_all();
Gtk::Main();
?>


Other 13 submission(s) by this author

 


Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this code (in the Intermediate category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments
3/15/2002 2:41:31 PMJosh Sherman

why did you make the code exclusive to windows?

if you change the line:
dl('php_gtk.dll');

to:
if (!class_exists('gtk')) {
if (strtoupper(substr(PHP_OS, 0, 3)) == 'WIN')
dl('php_gtk.dll');
else
dl('php_gtk.so');
}

it will check to see that the libraries are there, and import the library based on the OS (windows and linux). making it cross platform compliant.
(If this comment was disrespectful, please report it.)

 
5/27/2003 9:58:11 PMbobock

i wonder if i donno what a gtk is should i be curious about it?
(If this comment was disrespectful, please report it.)

 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular code, please click here instead.)
 

To post feedback, first please login.