1. Introduction to PHP-GTK 1.1 PHP-GTK PHP-GTK is an extension module of PHP, which allows programmers to write independent GUI programs that are executed on the client. This module does not allow GTK+ programs to be displayed in the browser. It was originally developed to write stand-alone GUI programs. 1.2 GTK GTK was originally developed for GIMP, a GUI image processing software. GTK+ is a suite of tools from GIMP. GTK+ evolved from here until it is now central to Gnome (Gnome is a desktop environment). Later, GTK+ has also been promoted to BeOS and Win32, making it the best choice for PHP extension modules. It maintains PHP's cross-platform and can use PHP to develop window interface programs for Linux, BeOS, Windows and other platforms. 2. PHP-GTK Concept 2.1 Preface Next, I will teach you some conceptual things┅Because the concepts in this chapter are very important, so even if you don’t understand it, you still have to understand it slowly, otherwise ┅In the future┅. Also, the following content is not recommended for readers without programming experience, because there are many concepts that can easily be confused. Also, I will use English for the next part that should be used in English, so that everyone will not be overwhelmed when reading foreign documents. Come on! If you don’t understand anything about this chapter, please check PHP-GTK by yourself. Manual: http://gtk.php.net/manual/en/ 2.2 Widget(s) Widget is the basic functions and forms in a GUI program. The most commonly used widgets are: label, button, window, frame and text box. All widgets come from an abstract basic class─GtkWidget. Every widget is a class. There are roughly five periods in the life of a Widget: 1. Creation: declaring an object 2. Placement: adding it to a container container) 3. Signal Connection: receive the signal and perform the action (the action it will perform) 4. Display: whether it is viewable or not 5. Destruction: Closing of a program 2.3 Container(s) Container is a widget that can contain other widgets. Most widgets are containers, such as GtkWindow, GtkTable and GtkBox. Other than this, containers are just like other widgets and can be placed in other containers. All containers come from one class─GtkContainer, which itself comes from the GtkWidget class. So container is also a type of widget. 2.4 Signal(s) When the programmer performs an action in the program, the program needs to have an action in response to the user's action. Signals allow programs to know when a user has taken an action and trigger appropriate responses. For example, when the user presses a button (GtkButton) that can open a new window, the program recognizes the request and opens a new window. This can be done via signal. When the button is pressed, the widget will send out a signal, and then the signal will trigger callbacks to generate a new window (GtkWindow). 2.5 Callback(s) Callback is the function that is called up by the signal after the signal is sent. Callback will execute the function and return a value or perform an action. Callback is the handler funciton of signal. It can be the signal's default handler or a programmer-defined function. To create a callback, you must connect the function to the signal. 2.6 Signal Inheritance (Inheritance) Like methods, signals can be inherited by objects. A widget can send any signal that its parent widget can send, as well as its own unique signal. 2.7 Connecting Signals You must specify a callback function for PHP-GTK to respond to the signal when the signal is sent. Connecting a signal to a function can be achieved using the connect() object method. As follows: connect("destroy", "shutdown"); //Create a GtkButton with the button text "Click me" $button = &new GtkButton("Click me"); $button->connect("clicked" , "you_clicked"); //Put the GtkButton into the GtkWindow that is the container $window->add($button); //Show $window and all its child widgets $window->show_all(); //Enter the program Main loop (meaning program startup) gtk::main(); ?> If you execute it, a window will appear with a button saying "Click me". When the button is pressed, the program will execute the you_clicked function Mode. In this program, the "destroy" signal of the $window object is sent when the user presses the "X" in the upper right corner of the window; and the "clicked" signal of the $button object is sent when the user presses the button. Will be given away. The last line of gtk::main() must be executed, so as to tell the computer to start executing the program. Since it has started execution, it must have stopped, right? Yes, you can stop it with gtk::main_quit() Programmed. After reading the above examples, some readers may have questions, "What if I want to execute the method of a widget other than the widget that sends the signal?" At this time, another method is used, a connect_object(), which can span Object calls methods or passes other objects as function parameters.The cross-object calling method is as follows: $window->connect_object("destroy", array("gtk","main_quit")) In this way, gtk::main_quit() will be called when the "destroy" signal of the $window object is sent. In this way, the program will eventually be executed. At the end of the introduction to the connection method, let's mention the custom method of adding connect() and connect_object() to the parameters to be passed to the callback function. See example: connect("clicked","who_are_you",$parameter); $button2 = &new GtkButton("Test 2"); //Connect the "clicked" signal to the kill_the_button1 function, append the parameter $button1 $button2->connect_object("clicked","kill_the_button1",$button1); function who_are_you($widget,$parameter){ echo $parameter; } function kill_the_button($button){ $button->destroy(); } ? > Pay attention to those two functions, who_are_you has two parameters, right? What is the first one used for? Why does it appear automatically? Because, the callback function of each signal will add some parameters due to different signals. By default, the parameters of the callback function will be passed in, and basically all signals will pass at least a parameter a to the callback function to generate the object of the signal. So the first parameter of who_are_you is $button1, and the second one is $parameter, which is the new Superman. The kill_the_button function is different~ Because the connect_object() function will call the default parameters of the original signal's callback function, so kill_the_button only has the $button1 parameter appended to the end of connect_object. In this way, kill_the_button can call The method of $button1 or obtain its properties. The destroy method of $button1 is called here, so $button1 will be destroyed. 2.8 Event(s) Event is a type of signal, but its uses and functions are very powerful. As far as signals are concerned, things like signals are built into widgets. Therefore, for example, if GtkWindow does not have a "clicked" signal, it is absolutely impossible for GtkWindow to send a signal such as clicked without using an event signal. . What if event signal is used? Event signal can be added to any widget, so even if the widget does not originally have the function of emitting a "clicked" signal, you can also use add_events() to add a clicked signal to it. What kind of reaction will the event signal do after it? The event signal contains a lot of information. For example, when you use the event signal "key-press-event", it will also record what key you pressed, so the callback function format of the event signal is usually There are two parameters by default. The first one is still the widget that sends the signal, and the second one is $event. This $event is a class, and the properties and methods inside will be different depending on the type of event signal sent. As for the $event class returned by "key-press-event", one of the attributes is keyval, and the content is which key the user pressed. This is often very useful information for a programmer. Therefore, the importance of events cannot be ignored. Even if you don’t understand it at first, you have to slowly integrate into it. This section is also very important. 3. Install PHP-GTK 3.1 Installation under Windows system First, download the windows binary file of HP-GTK from http://gtk.php.net/download.php (version 0.5.1 at the time of writing this article). Next, let’s take a look at the contents of the PHP-GTK 0.5.1 binary file: php4 → php and php-gtk binary files winnt → default php.ini file winntsystem32 → gtk binaries used by extension test → several test files README. txt → installation manual file to start the installation: 1. Copy the contents of php4 to your php installation directory (for example, C:php). 2. Copy the contents of winnt to your winnt folder. On Windows NT or Windows 2000, it is C:winnt, on Window95, 98, and xp, it is C:windows. If there is already php.ini in the folder, there is no need to do this action. 3. Copy the contents of winntsystem32 to your winntsystem32 folder. It is C:winntsystem32 on Windows NT or Windows2000, and C:windowssystem32 on Window95, 98, and xp. 4. Copy the contents of test to the place where you want to execute your script (this step is not necessary). How to execute the PHP-GTK program: The PHP-GTK program can be started by entering the command (or creating a shortcut) under "Start" - "Execute", such as: C:phpphp -q c:phptestgtk.php ## means not to print out HTTP Header, but keep using this window until you close the program. C:phpphp -q -c php.ini c:gtk.php ## Same as above, but execute the specified php.ini settings. C:phpphp C:phptestgtk.php ## means that the HTTP Header will be printed, but this window will be used until the program is closed. C:phpphp_win C:phptestgtk.php ## means that the window will not be used. After execution, a separate execution program will be executed. It uses php -q mode, but as long as any characters are output, such as an error message, execution will stop. 3.2 Installation under UNIX systems Debian users can download the binary file of PHP-GTK at http://www.debian.org.System requirements must have the following packages installed: PHP 4.1.0 or later, which must be compiled as a CGI binary (command-line) version, including all header files and devlement scripts. PHP-GTK supports GTK+ v1.2 and needs to install GTK+ version 1.2.6 or above. GTK+ v2.0 is not supported yet, you have to wait until it is developed and completed

wapi这个名词用户们可能在使用网络得时候见到过,但是对于一部分人来说肯定都不知道wapi是什么,下面就带来了详细介绍,帮助不知道小伙伴去了解。wapi是什么东西:答:wapi是无线局域网鉴别和保密的基础结构。这就像红外线和蓝牙等功能一样,一般都覆盖在办公楼等地方的附近。基本都是为一个小部门所有的,所以这个功能涉及的范围只有几公里。wapi相关介绍:1、wapi是无线局域网里面的一种传输协议。2、这款技术是可以去避免窄频带通信的问题,可以更好的去进行传播。3、仅仅只需要一个代码就可以去传送信号了

pubg又称绝地求生,是一款非常经典的射击大逃杀类型游戏,从2016年火爆以来一直拥有非常多的玩家。在最近的win11系统推出后,就有不少玩家想要在win11上游玩它,下面就跟着小编来看看win11是否可以玩pubg吧。win11能玩pubg吗:答:win11可以玩pubg。1、在win11推出之初,因为win11需要开启tpm的缘故,所以导致很多玩家被pubg封号处理了。2、不过后来根据玩家的反馈,蓝洞方面已经解决了这个问题,目前已经可以在win11中正常玩pubg了。3、如果大家遇到了pub

Python函数介绍:exec函数的介绍及示例引言:在Python中,exec是一种内置函数,它用于执行存储在字符串或文件中的Python代码。exec函数提供了一种动态执行代码的方式,使得程序可以在运行时根据需要生成、修改和执行代码。本文将介绍exec函数的使用方法,并给出一些实际的代码示例。exec函数的使用方法:exec函数的基本语法如下所示:exec

i5是英特尔旗下的一系列处理器,拥有到现在11代i5的各种不同版本,每一代都有着不同性能。因此对于i5处理器是否能够安装win11,还需要看是第几代的处理器,下面就跟着小编一起来分别了解一下吧。i5处理器能装win11吗:答:i5处理器能装win11。一、第八代及之后的i51、第八代及后续的i5处理器是能够满足微软的最低配置需求的。2、因此我们只需要进入微软网站,下载一个“win11安装助手”3、下载完成后,运行该安装助手,根据提示进行操作就可以安装win11了。二、第八代之前的i51、第八代之

在如今快捷的生活,为了提高工作效率,快捷键是必不可少的工作需求。快捷键是指按键或按键组合,可提供另一种方式来执行通常使用鼠标执行的操作。那么edge快捷键有哪些呢?edge快捷键的功能又有哪些呢?下面小编整理了一份edge快捷键的介绍,感兴趣的朋友们快来看看吧!Ctrl+D:将当前页面添加到收藏夹或阅读列表Ctrl+E:在地址栏中执行搜索查询Ctrl+F:在页面上查找Ctrl+H:打开历史记录面板Ctrl+G:打开阅读列表面板Ctrl+I:打开收藏夹列表面板(测试好像不起作用)Ctrl+J:打开

很多用户在电脑上安装了打印机驱动程序,但却不知道如何找到它们。因此,今天我为大家带来了详细介绍打印机驱动程序在电脑中的位置,对于还不了解的用户,快来看看吧打印机驱动在电脑哪里找重新撰写内容而不改变原义时,需要将语言改写为中文,不需要出现原句首先,建议使用第三方软件进行搜索2、在右上角找到"工具箱"3、在下方找到并点击“设备管理器”。改写后的句子:3、在底部找到并点击“设备管理器”4、然后打开“打印队列”,然后找到你的打印机设备。此次是你的打印机名称型号。5、右键打印机设备,就能够去更新或者卸载我

PHP函数介绍:strtr()函数在PHP编程中,strtr()函数是一个非常有用的字符串替换函数。它用于将字符串中的指定字符或字符串替换为其他字符或字符串。本文将介绍strtr()函数的用法,并给出一些具体的代码示例。strtr()函数的基本语法如下:strtr(string$str,array$replace)其中,$str是要进行替换操作的原始字

在微软公司发布了win10系统之后,我们所知的就有好几种版本:家庭版、教育版、专业版、旗舰版等等。小编认为这些版本在性能上没什么差别,只是有些针对性的功能不同。那么小编今天就来跟大家聊一聊玩游戏用win10哪个版本最好吧~希望可以帮助到你。玩游戏用win10哪个版本最好答:玩游戏来说,这几个版本其实区别并不大。如果只是想要拿来打游戏的话,推荐win10家庭版。因为家庭版没有其他花里胡哨的功能,能够让性能主要集中在游戏方面。这个问题,首先要说的就是win10几个版本之间的区别。1、win10主要版


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver Mac version
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

Notepad++7.3.1
Easy-to-use and free code editor

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
