Login   Register  
PHP Classes
elePHPant
Icontem

File: demo.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of José Augusto Ferreira Franco  >  GTK warning messages  >  demo.php  >  Download  
File: demo.php
Role: Example script
Content type: text/plain
Description: this file shows how it can be used
Class: GTK warning messages
Manage GTK windows displaying warning messages
Author: By
Last change:
Date: 2005-08-07 17:20
Size: 1,622 bytes
 

Contents

Class file image Download
<?php

/*******************************************************************************
*@ pt           Classe geradora de janelas de aviso
*@ en            Warning messages generator class
*@ File          demo.php  - mostra como se utiliza || shows how to use it
*@ Author        José Augusto Ferreira Franco
*@ Nick          Guto Ferreira
*@ Pakage        warnings.class.php
*@ Version       1.0
*@ Created on    8 July 2005 15:52 GMT
*@ Web           http://onidesk.sytes.net
*@ Email         guto.onidesk@gmail.com
*@ Visit         http://onidesk.sytes.net/chat.php for live discussion
********************************************************************************/
########################### --> IMPORTANT NOTICE <-- #############################
// pt :: Para usar esta classe deve carregar sempre a livraria  do php-gtk
// en ::to use this class u always have to load the php-gtk dll


// pt ::  Carrega a livraria do php-gtk
// en :: Loads the php-gtk librarie
 
dl('php_gtk.dll');


// pt :: Carrega a classe GTKWarning
// en :: Loads the classe GTKWarning

 
require 'warnings.class.php';

// pt :: Instancia a classe e passa os valores pelos parâmetros da função
// en :: Instanciates the class and pass the values to function parameters

// pt :: A regra é usar apenas 5 espaços e palavras curtas
// en  the rule is to place a text with only five space and short words
$win = new GTKWarning('This will be shown on window',"./info.xpm");




 
// :: pt   entra em loop para mostrar a aplicação
 // :: en   gets in loop to show the application
 
Gtk::main();



?>