1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
package Window;
use strict;
use warnings;
use QtCore4;
use QtGui4;
use QtCore4::isa qw( Qt::Widget );
use QtCore4::slots
updateButtons => ['int'];
sub nameLabel() {
return this->{nameLabel};
}
sub setNameLabel($) {
return this->{nameLabel} = shift;
}
sub addressLabel() {
return this->{addressLabel};
}
sub setAddressLabel($) {
return this->{addressLabel} = shift;
}
sub ageLabel() {
return this->{ageLabel};
}
sub setAgeLabel($) {
return this->{ageLabel} = shift;
}
sub nameEdit() {
return this->{nameEdit};
}
sub setNameEdit($) {
return this->{nameEdit} = shift;
}
sub addressEdit() {
return this->{addressEdit};
}
sub setAddressEdit($) {
return this->{addressEdit} = shift;
}
sub ageSpinBox() {
return this->{ageSpinBox};
}
sub setAgeSpinBox($) {
return this->{ageSpinBox} = shift;
}
sub nextButton() {
return this->{nextButton};
}
sub setNextButton($) {
return this->{nextButton} = shift;
}
sub previousButton() {
return this->{previousButton};
}
sub setPreviousButton($) {
return this->{previousButton} = shift;
}
sub model() {
return this->{model};
}
sub setModel($) {
return this->{model} = shift;
}
sub mapper() {
return this->{mapper};
}
sub setMapper($) {
return this->{mapper} = shift;
}
sub NEW
{
my ( $class, $package ) = @_;
$class->SUPER::NEW( $package );
this->setupModel();
this->setNameLabel( Qt::Label(this->tr('Na&me:')) );
this->setNameEdit( Qt::LineEdit() );
this->setAddressLabel( Qt::Label(this->tr('&Address:')) );
this->setAddressEdit( Qt::TextEdit() );
this->setAgeLabel( Qt::Label(this->tr('A&ge (in years):')) );
this->setAgeSpinBox( Qt::SpinBox() );
this->setNextButton( Qt::PushButton(this->tr('&Next')) );
this->setPreviousButton( Qt::PushButton(this->tr('&Previous')) );
this->nameLabel->setBuddy(this->nameEdit);
this->addressLabel->setBuddy(this->addressEdit);
this->ageLabel->setBuddy(this->ageSpinBox);
this->setMapper( Qt::DataWidgetMapper(this) );
this->mapper->setModel(this->model);
this->mapper->addMapping(this->nameEdit, 0);
this->mapper->addMapping(this->addressEdit, 1);
this->mapper->addMapping(this->ageSpinBox, 2);
this->connect(this->previousButton, SIGNAL 'clicked()',
this->mapper, SLOT 'toPrevious()');
this->connect(this->nextButton, SIGNAL 'clicked()',
this->mapper, SLOT 'toNext()');
this->connect(this->mapper, SIGNAL 'currentIndexChanged(int)',
this, SLOT 'updateButtons(int)');
my $layout = Qt::GridLayout();
$layout->addWidget(this->nameLabel, 0, 0, 1, 1);
$layout->addWidget(this->nameEdit, 0, 1, 1, 1);
$layout->addWidget(this->previousButton, 0, 2, 1, 1);
$layout->addWidget(this->addressLabel, 1, 0, 1, 1);
$layout->addWidget(this->addressEdit, 1, 1, 2, 1);
$layout->addWidget(this->nextButton, 1, 2, 1, 1);
$layout->addWidget(this->ageLabel, 3, 0, 1, 1);
$layout->addWidget(this->ageSpinBox, 3, 1, 1, 1);
this->setLayout($layout);
this->setWindowTitle(this->tr('Simple Widget Mapper'));
this->mapper->toFirst();
}
sub setupModel
{
this->setModel( Qt::StandardItemModel(5, 3, this) );
my @names = qw( Alice Bob Carol Donald Emma );
my @addresses = (
'<qt>123 Main Street<br/>Market Town</qt>',
'<qt>PO Box 32<br/>Mail Handling Service<br/>Service City</qt>',
'<qt>The Lighthouse<br/>Remote Island</qt>',
'<qt>47338 Park Avenue<br/>Big City</qt>',
'<qt>Research Station<br/>Base Camp<br/>Big Mountain</qt>'
);
my @ages = qw( 20 31 32 19 26 );
foreach my $row (0..4) {
my $item = Qt::StandardItem(Qt::String($names[$row]));
this->model->setItem($row, 0, $item);
$item = Qt::StandardItem(Qt::String($addresses[$row]));
this->model->setItem($row, 1, $item);
$item = Qt::StandardItem(Qt::String($ages[$row]));
this->model->setItem($row, 2, $item);
}
}
sub updateButtons
{
my ($row) = @_;
this->previousButton->setEnabled($row > 0);
this->nextButton->setEnabled($row < this->model->rowCount() - 1);
}
1;
|