當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Gtk::main_quit方法代碼示例

本文整理匯總了PHP中Gtk::main_quit方法的典型用法代碼示例。如果您正苦於以下問題:PHP Gtk::main_quit方法的具體用法?PHP Gtk::main_quit怎麽用?PHP Gtk::main_quit使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Gtk的用法示例。


在下文中一共展示了Gtk::main_quit方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: close

 /**
  * Close (hide) this window
  *
  */
 public function close()
 {
     $this->window->hide_all();
     if ($this->initialized) {
         Gtk::main_quit();
     }
 }
開發者ID:Gamepay,項目名稱:xp-contrib,代碼行數:11,代碼來源:GtkGladeDialogWindow.class.php

示例2: on_menu_select

function on_menu_select($button, $item)
{
    // note 8
    echo "menu item selected: {$item}\n";
    if ($item == '_Quit') {
        Gtk::main_quit();
    }
}
開發者ID:amitjoy,項目名稱:php-gtk,代碼行數:8,代碼來源:toolbar2.php

示例3: on_menu_select

function on_menu_select($menu_item)
{
    $item = $menu_item->child->get_label();
    echo "menu selected: {$item}\n";
    if ($item == '_Quit') {
        Gtk::main_quit();
    }
}
開發者ID:amitjoy,項目名稱:php-gtk,代碼行數:8,代碼來源:menubar.php

示例4: xmoney_close_clicked

 function xmoney_close_clicked()
 {
     $dialog = new Question($this->Owner, 'Sair do X-Money?');
     $result = $dialog->ask();
     if ($result != Gtk::RESPONSE_YES) {
         return;
     }
     Gtk::main_quit();
 }
開發者ID:eneiasramos,項目名稱:xmoney,代碼行數:9,代碼來源:notebook.php

示例5: on_window1_destroy

 function on_window1_destroy()
 {
     Gtk::main_quit();
     exit;
 }
開發者ID:Harvie,項目名稱:Programs,代碼行數:5,代碼來源:hello.php

示例6: destroy

function destroy()
{
    Gtk::main_quit();
}
開發者ID:rakotomandimby,項目名稱:php-gtk-src,代碼行數:4,代碼來源:hello.php

示例7: main_quit

 public function main_quit()
 {
     Gtk::main_quit();
 }
開發者ID:joseph-montanez,項目名稱:PhpGtkChan,代碼行數:4,代碼來源:main.php

示例8: stdout

 /**
  * Intercepta a saida do mplayer
  *
  * @access private
  * @name stdout
  * @param resource $pipe Pipe do shell
  * @return boolean
  */
 public function stdout($stdout)
 {
     static $data = "";
     // Busca a saida
     $data .= $stdout;
     // Verifica se é o final do retorno
     if (strstr($data, "\n")) {
         // Quebra em linhas
         $list = preg_split("/\n/", $data);
         //  Verifica se esta buscando propriedades
         if ($this->getting_info && preg_match("/^ANS/", $list[0])) {
             // Armazena a query
             $this->info_data = $list[0];
             // Termina o looping
             Gtk::main_quit();
         } elseif ($this->callback_stdout !== NULL) {
             // Mostra a saida para o usuario
             call_user_func($this->callback_stdout, $data);
         }
         // Limpa a data
         $data = "";
     }
     // Retorna o sucesso
     return TRUE;
 }
開發者ID:BGCX067,項目名稱:fabulafw-svn-to-git,代碼行數:33,代碼來源:FFWVideo.widget.php

示例9: shutdown

function shutdown()
{
    print "Shutting down.\n";
    Gtk::main_quit();
}
開發者ID:rakotomandimby,項目名稱:php-gtk-src,代碼行數:5,代碼來源:fileselection.php

示例10: submit

 function submit()
 {
     echo "OnChange --> submit\n";
     Gtk::main_quit();
 }
開發者ID:BackupTheBerlios,項目名稱:milaninegw-svn,代碼行數:5,代碼來源:class.uietemplate_gtk.inc.php

示例11: on_menu_select

 function on_menu_select($menu_item)
 {
     $item = $menu_item->child->get_label();
     if (method_exists($this, $item)) {
         $this->{$item}();
     }
     if ($item == 'E_xit') {
         Gtk::main_quit();
     }
 }
開發者ID:nayanshah,項目名稱:phpBox,代碼行數:10,代碼來源:HashGen.php

示例12: __destruct

 function __destruct()
 {
     Gtk::main_quit();
 }
開發者ID:GumpChan,項目名稱:laruence.github.com,代碼行數:4,代碼來源:24.php

示例13: cancelPreferencesDialog

function cancelPreferencesDialog()
{
    global $dialogPreferences, $config;
    if ($config['firstTime']) {
        Gtk::main_quit();
    } else {
        $dialogPreferences->get_widget('_dialogPreferences')->destroy();
    }
}
開發者ID:Krzysiu,項目名稱:SVGnife,代碼行數:9,代碼來源:preferences.php

示例14: sair

 public function sair()
 {
     Gtk::main_quit();
 }
開發者ID:Kuroesu,項目名稱:campo-minado-plp,代碼行數:4,代碼來源:telaMenu.php

示例15: frmDemo_unload

 /**
  * Método do descarregamento do formulario
  * 
  * @name frmDemo_unload()
  */
 public function frmDemo_unload()
 {
     // Encerra a aplicação
     Gtk::main_quit();
 }
開發者ID:BGCX067,項目名稱:fabulafw-svn-to-git,代碼行數:10,代碼來源:GtkEntry.php


注:本文中的Gtk::main_quit方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。