本文整理汇总了PHP中GtkHBox::pack_end方法的典型用法代码示例。如果您正苦于以下问题:PHP GtkHBox::pack_end方法的具体用法?PHP GtkHBox::pack_end怎么用?PHP GtkHBox::pack_end使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GtkHBox
的用法示例。
在下文中一共展示了GtkHBox::pack_end方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct()
{
$this->frame = new GtkFrame();
$frameBox = new GtkVBox(false, 10);
$frameBox->set_border_width(10);
$titleBox = new GtkHBox(false, 10);
$titleLabel = new GtkLabel("User Profile");
$titleLabel->set_markup("<span weight='bold'>User Profile</span>");
$titleLabel->set_alignment(0, 0.5);
$this->statusLabel = new GtkLabel("");
$this->statusLabel->set_alignment(1, 0.5);
$titleBox->pack_start($titleLabel, true, true, 0);
$titleBox->pack_end($this->statusLabel, true, true, 0);
$frameBox->pack_start($titleBox, false, false, 0);
$this->frame->add($frameBox);
$this->userFormTable = new GtkTable(3, 7);
list($labelFname, $this->entryFname) = $this->createLabelText('First Name', true);
list($labelLname, $this->entryLname) = $this->createLabelText('Last Name', true);
list($labelEmail, $this->entryEmail) = $this->createLabelText('Email', true);
list($labelUsername, $this->entryUsername) = $this->createLabelText('Username', true);
list($labelPassword, $this->entryPassword) = $this->createLabelText('Password', false);
list($labelConfirm, $this->entryConfirm) = $this->createLabelText('Confirm Password', false);
$this->deptComboStore = new GtkRefListStore(Gobject::TYPE_STRING);
$this->deptComboStore->refInsert(DeptEnum::getList());
$this->comboDept = new GtkRefComboBox($this->deptComboStore);
$cellDept = new GtkCellRendererText();
$cellDept->set_property('ellipsize', Pango::ELLIPSIZE_END);
$this->comboDept->pack_start($cellDept);
$this->comboDept->set_attributes($cellDept, 'text', 0);
$labelDept = new GtkLabel('Department');
$labelDept->set_alignment(1, 0.5);
$this->attachLabelText($labelFname, $this->entryFname, false, 0);
$this->attachLabelText($labelLname, $this->entryLname, false, 1);
$this->attachLabelText($labelEmail, $this->entryEmail, false, 2);
$this->attachLabelText($labelUsername, $this->entryUsername, true, 3);
$this->attachLabelText($labelPassword, $this->entryPassword, true, 4);
$this->attachLabelText($labelConfirm, $this->entryConfirm, true, 5);
$this->attachLabelText($labelDept, $this->comboDept, true, 6);
$this->entryUsername->connect('key-release-event', array($this, 'enableSubmit'));
$this->entryPassword->connect('key-release-event', array($this, 'enableSubmit'));
$this->entryConfirm->connect('key-release-event', array($this, 'enableSubmit'));
$this->comboDept->connect('changed', array($this, 'enableSubmit'));
$subFrame = new GtkFrame();
$subFrameBox = new GtkVBox(false, 0);
$subFrameBox->set_border_width(12);
$subFrame->add($subFrameBox);
$subFrameBox->pack_start($this->userFormTable, false, false, 0);
$frameBox->pack_start($subFrame, false, false, 0);
$buttonBox = new GtkHBox(false, 8);
$this->submitButton = new GtkButton($this->mode == self::MODE_ADD ? 'Add User' : 'Update Profile');
$this->submitButton->connect('clicked', array($this, 'submit'));
$this->cancelButton = new GtkButton("Cancel");
$buttonBox->pack_end($this->cancelButton, false, false, 0);
$buttonBox->pack_end($this->submitButton, false, false, 0);
$frameBox->pack_end($buttonBox, true, true, 0);
$this->enableForm(false);
}
示例2: __construct
public function __construct()
{
$this->frame = new GtkFrame();
$frameBox = new GtkVBox(false, 10);
$frameBox->set_border_width(10);
$titleBox = new GtkHBox(false, 10);
$titleLabel = new GtkLabel("User Roles");
$titleLabel->set_markup("<span weight='bold'>User Roles</span>");
$titleLabel->set_alignment(0, 0.5);
$this->statusLabel = new GtkLabel("");
$this->statusLabel->set_alignment(1, 0.5);
$titleBox->pack_start($titleLabel, true, true, 0);
$titleBox->pack_end($this->statusLabel, true, true, 0);
$frameBox->pack_start($titleBox, false, false, 0);
$this->frame->add($frameBox);
$this->roleListStore = new GtkRefListStore(Gobject::TYPE_STRING);
$this->roleListTree = new GtkRefTreeView($this->roleListStore);
$this->roleListTree->set_headers_visible(false);
$roleListSelection = $this->roleListTree->get_selection();
$roleListSelection->set_mode(Gtk::SELECTION_SINGLE);
$roleListSelection->connect('changed', array($this, 'selectRoleToRemove'));
$rolesWindow = new GtkScrolledWindow();
$rolesWindow->set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
$rolesWindow->set_shadow_type(Gtk::SHADOW_ETCHED_IN);
$rolesWindow->add($this->roleListTree);
$frameBox->pack_start($rolesWindow, true, true, 0);
$renderer = new GtkCellRendererText();
$renderer->set_property("editable", false);
$column = new GtkTreeViewColumn('Role', $renderer, "text", 0);
$column->set_expand(true);
$column->set_resizable(false);
$this->roleListTree->append_column($column);
$this->roleComboStore = new GtkRefListStore(Gobject::TYPE_STRING);
$this->roleComboStore->refInsert(RoleEnum::getList());
$this->roleCombo = new GtkRefComboBox($this->roleComboStore);
$roleCell = new GtkCellRendererText();
$roleCell->set_property('ellipsize', Pango::ELLIPSIZE_END);
$this->roleCombo->pack_start($roleCell);
$this->roleCombo->set_attributes($roleCell, 'text', 0);
$this->roleCombo->connect('changed', array($this, 'selectRoleToAdd'));
$this->addButton = new GtkButton("Add");
$this->addButton->set_sensitive(false);
$this->removeButton = new GtkButton("Remove");
$this->removeButton->set_sensitive(false);
$this->enableForm(false);
$buttonBox = new GtkHBox(false, 8);
$buttonBox->pack_end($this->removeButton, false, false, 0);
$buttonBox->pack_end($this->addButton, false, false, 0);
$buttonBox->pack_end($this->roleCombo, true, true, 0);
$frameBox->pack_end($buttonBox, false, false, 0);
}
示例3: __construct
public function __construct()
{
$this->frame = new GtkFrame();
$frameBox = new GtkVBox(false, 10);
$frameBox->set_border_width(10);
$titleBox = new GtkHBox(false, 10);
$titleLabel = new GtkLabel("Users");
$titleLabel->set_markup("<span weight='bold'>Users</span>");
$titleLabel->set_alignment(0, 0.5);
$this->statusLabel = new GtkLabel("");
$this->statusLabel->set_alignment(1, 0.5);
$titleBox->pack_start($titleLabel, true, true, 0);
$titleBox->pack_end($this->statusLabel, true, true, 0);
$frameBox->pack_start($titleBox, false, false, 0);
$this->frame->add($frameBox);
$this->userListStore = new GtkRefListStore(Gobject::TYPE_STRING, Gobject::TYPE_STRING, Gobject::TYPE_STRING, Gobject::TYPE_STRING, Gobject::TYPE_STRING);
$this->userListTree = new GtkRefTreeView($this->userListStore);
$this->userListTree->set_rules_hint(true);
$usersWindow = new GtkScrolledWindow();
$usersWindow->set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
$usersWindow->set_shadow_type(Gtk::SHADOW_ETCHED_IN);
$usersWindow->add($this->userListTree);
$frameBox->pack_start($usersWindow, true, true, 0);
$cols = array('Username', 'First Name', 'Last Name', 'Email', 'Department');
foreach ($cols as $num => $item) {
$renderer = new GtkCellRendererText();
$renderer->set_property("editable", false);
$column = new GtkTreeViewColumn($item, $renderer, "text", $num);
$column->set_sort_column_id($num);
$column->set_expand(true);
$column->set_resizable(true);
$this->userListTree->append_column($column);
}
$userSelection = $this->userListTree->get_selection();
$userSelection->set_mode(Gtk::SELECTION_SINGLE);
$userSelection->connect('changed', array($this, 'isSelected'));
$this->newButton = new GtkButton("New");
$this->newButton->connect('clicked', array($this, 'deSelect'));
$this->delButton = new GtkButton("Delete");
$this->delButton->set_sensitive(false);
$this->delButton->connect('clicked', array($this, 'confirmDeletion'));
$buttonBox = new GtkHBox(false, 8);
$buttonBox->pack_end($this->newButton, false, false, 0);
$buttonBox->pack_end($this->delButton, false, false, 0);
$frameBox->pack_end($buttonBox, false, false, 0);
}
示例4: GtkHBox
function __create_box()
{
$hbox = new GtkHBox(false, 8);
$scrolled = new GtkScrolledWindow();
$scrolled->set_shadow_type(Gtk::SHADOW_ETCHED_IN);
$scrolled->set_policy(Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
$hbox->pack_start($scrolled, false, false, 0);
$model = $this->create_model();
$treeview = new GtkTreeView($model);
$scrolled->add($treeview);
$column = new GtkTreeViewColumn();
$column->set_title('Icon and Constant');
$cell_renderer = new GtkCellRendererPixbuf();
$column->pack_start($cell_renderer, false);
$column->set_attributes($cell_renderer, 'stock-id', 1);
$cell_renderer = new GtkCellRendererText();
$column->pack_start($cell_renderer, true);
$column->set_cell_data_func($cell_renderer, 'constant_setter');
$treeview->append_column($column);
$cell_renderer = new GtkCellRendererText();
$treeview->insert_column_with_data_func(-1, 'Label', $cell_renderer, 'label_setter');
$cell_renderer = new GtkCellRendererText();
$treeview->insert_column_with_data_func(-1, 'Accelerator', $cell_renderer, 'accel_setter');
$cell_renderer = new GtkCellRendererText();
$treeview->insert_column_with_data_func(-1, 'ID', $cell_renderer, 'id_setter');
$align = new GtkAlignment(0.5, 0, 0, 0);
$hbox->pack_end($align, true, true, 0);
$frame = new GtkFrame('Selection Info');
$align->add($frame);
$vbox = new GtkVBox(false, 8);
$vbox->set_border_width(4);
$frame->add($vbox);
$display = new StockItemDisplay();
$treeview->set_data('stock-display', $display);
$display->type_label = new GtkLabel();
$display->constant_label = new GtkLabel();
$display->id_label = new GtkLabel();
$display->accel_label = new GtkLabel();
$display->icon_image = new GtkImage();
$vbox->pack_start($display->type_label, false, false, 0);
$vbox->pack_start($display->icon_image, false, false, 0);
$vbox->pack_start($display->accel_label, false, false, 0);
$vbox->pack_start($display->constant_label, false, false, 0);
$vbox->pack_start($display->id_label, false, false, 0);
$selection = $treeview->get_selection();
$selection->set_mode(Gtk::SELECTION_SINGLE);
$selection->connect('changed', array($this, 'on_selection_changed'));
return $hbox;
}
示例5: createButton
function createButton($basewidget, $function, $function2)
{
//call the function on the base widget
$btn = new GtkButton($function);
$btn->connect_simple('clicked', array($basewidget, $function));
if ($function2 === null) {
return $btn;
}
$btn2 = new GtkButton($function2);
$btn2->connect_simple('clicked', array($basewidget, $function2));
$hbox = new GtkHBox();
$hbox->pack_start($btn);
$hbox->pack_end($btn2);
return $hbox;
}