欧美特黄不卡,涩涩视频在线,成人国产精品一区二区网站,亚洲一区二区三区欧美

當(dāng)前位置:雨林木風(fēng)下載站 > 技術(shù)開(kāi)發(fā)教程 > 詳細(xì)頁(yè)面

用PHP開(kāi)發(fā)GUI(一個(gè)容易的例子)

用PHP開(kāi)發(fā)GUI(一個(gè)容易的例子)

更新時(shí)間:2019-06-30 文章作者:未知 信息來(lái)源:網(wǎng)絡(luò) 閱讀次數(shù):

環(huán)境:W2k+php4.3.1+php/gtk0.5.2
一個(gè)簡(jiǎn)單的記事本(只可以打開(kāi)文件進(jìn)行修改)
<?php
set_time_limit (0); // 設(shè)置運(yùn)行時(shí)間

if (!class_exists ("gtk")) // 判斷是否有GTK模塊
if (strtoupper (substr ($_SERVER["OS"], 0, 3)) == "WIN")
dl ("php_gtk.dll");
else
dl ("php_gtk.so");

$window = &new GtkWindow ();// 建一個(gè)窗口
$window->set_uposition (100, 100);//窗口出現(xiàn)位置
$window->set_usize ((gdk::screen_width()-200), (gdk::screen_height()-150));// 窗口大小
$window->set_title ("WINDOWS"); // 設(shè)置窗口標(biāo)題
$window->connect_object ('destroy', array ('gtk', 'main_quit')); // 注冊(cè)窗口的事件

$vbox = &new GtkVBox (); 
$hbox = &new GtkHBox (); 
$window->add ($vbox);


$menuBar = &new GtkMenuBar (); // 創(chuàng)建菜單
$vbox->pack_start ($menuBar, false, false, 0);

$file = &new GtkMenuItem ("File");
$menuBar->append ($file);

$fileMenu = &new GtkMenu ();
$open = &new GtkMenuItem ("Open");
$save = &new GtkMenuItem ("Save");
$line = &new GtkMenuItem ();
$line->set_sensitive (true);
$exit = &new GtkMenuItem ("Exit");
$fileMenu->append ($open);
$open->connect_object ('activate', 'showFileSelection');
$fileMenu->append ($save);
$save->connect_object ('activate', 'saveFile');
$fileMenu->append ($line);
$fileMenu->append ($exit);
$exit->connect_object ('activate', array ('gtk', 'main_quit'));

$file->set_submenu ($fileMenu);

$scroll = &new GtkScrolledWindow ();
$scroll->set_border_width (8);
$scroll->set_policy (GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
$hbox->pack_start ($scroll, true, true, 0);
$vbox->pack_start ($hbox, true, true, 1);

$text = &new GtkText ();
$text->set_editable (true);
$text->set_word_wrap (true);
$scroll->add ($text);

function showFileSelection () // 文件選擇函數(shù)
{
$file = &new GtkFileSelection ("File Selection");
$ok_button = $file->ok_button;
$ok_button->connect ('clicked', 'openFile', $file);
$ok_button->connect_object ('clicked', array ($file, 'destroy'));
$cancel_button = $file->cancel_button;
$cancel_button->connect_object ('clicked', array ($file, 'destroy'));
$file->show ();
}

$filePath = null;
function openFile ($button, $f)// 打開(kāi)文件的函數(shù)
{
GLOBAL $text, $save, $filePath;
$filePath = $f->get_filename ();
if (is_file ($filePath))
{
$fp = fopen ($filePath, 'r');
while (!feof ($fp))
$str .= fgets ($fp, 1024);
$text->insert (null, null, null, $str);
fclose ($fp);
return $filePath;
}
}

function saveFile ()// 保存文件的函數(shù)
{
GLOBAL $filePath, $text;
if (is_file ($filePath))
{
$str = $text->get_chars (0, -1);
$fp = fopen ($filePath, 'w');
fwrite ($fp, $str);
fclose ($fp);
}
return;
}

$window->show_all (); // 顯示窗體內(nèi)的所有控件
gtk::main ();// 最重要的一句,不可少的
?>

溫馨提示:喜歡本站的話,請(qǐng)收藏一下本站!

本類教程下載

系統(tǒng)下載排行

主站蜘蛛池模板: 临邑县| 新竹县| 大荔县| 鲁甸县| 峨边| 平原县| 贵阳市| 陕西省| 云南省| 呼伦贝尔市| 汉寿县| 六枝特区| 宣城市| 辽阳县| 河北区| 龙井市| 东阿县| 朝阳县| 通化县| 浮山县| 澄迈县| 南康市| 裕民县| 淳化县| 遂溪县| 浦北县| 武汉市| 琼结县| 安达市| 绥棱县| 西平县| 会同县| 溆浦县| 九江市| 绍兴市| 弋阳县| 顺平县| 文山县| 集贤县| 望都县| 东莞市|