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


PHP Gtk::rc_parse方法代碼示例

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


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

示例1: __construct

 /**
  * Constructor
  *
  * @param   util.ParamString p
  */
 public function __construct($p)
 {
     // Set up logger
     $l = Logger::getInstance();
     $this->cat = $l->getCategory();
     // Parse rc file if one is set
     if (!empty($this->rcfile)) {
         Gtk::rc_parse($this->rcfile);
     }
     // Create main window
     $this->create();
     $this->window->realize();
     // Connect destroy signal
     $this->window->connect('destroy', array($this, 'destroy'));
     $this->param = $p;
 }
開發者ID:Gamepay,項目名稱:xp-contrib,代碼行數:21,代碼來源:GtkApplication.class.php

示例2: WinMain

					$renames[$file] = $file_new;
				}
			}
			
			foreach($renames AS $key => $value){
				if (rename($folder . "/" . $key, $folder . "/" . $value)){
					$this->tv_files->get_model()->append(array($value));
				}else{
					$this->tv_files->get_model()->append(array($key));
				}
			}
		}
	}
	
	//Start program.
	require_once("knjphpframework/functions_knj_extensions.php");
	require_once("knjphpframework/functions_knj_os.php");
	require_once("knjphpframework/functions_treeview.php");
	
	if (!knj_dl("gtk2")){
		die("Could not load PHP-GTK2-module.\n");
	}
	
	if (knj_os::getOS() == "windows"){
		//Set Windows-skin if running Windows.
		Gtk::rc_parse("gtkrc");
	}
	
	$win_main = new WinMain();
	Gtk::main();
?>
開發者ID:kaspernj,項目名稱:knjRenamer,代碼行數:31,代碼來源:knjrenamer.php

示例3: ksort

    $box2->set_border_width(10);
    $scrolled_window->add_with_viewport($box2);
    $box2->set_focus_vadjustment($scrolled_window->get_vadjustment());
    ksort($buttons);
    foreach ($buttons as $label => $function) {
        $button =& new GtkButton($label);
        if ($function) {
            $button->connect('clicked', $function);
        } else {
            $button->set_sensitive(false);
        }
        $box2->pack_start($button);
    }
    $separator =& new GtkHSeparator();
    $box1->pack_start($separator, false);
    $box2 =& new GtkVBox(false, 10);
    $box2->set_border_width(10);
    $box1->pack_start($box2, false);
    $button =& new GtkButton('close');
    $button->connect_object('clicked', array('gtk', 'main_quit'));
    $box2->pack_start($button);
    $button->set_flags(GTK_CAN_DEFAULT);
    $button->grab_default();
    $window->show_all();
}
Gtk::rc_parse(dirname($argv[0]) . '/testgtkrc');
create_main_window();
Gtk::main();
?>

開發者ID:jenalgit,項目名稱:roadsend-php,代碼行數:29,代碼來源:gtk.php


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