File: Window.pm

package info (click to toggle)
qt4-perl 4.8.4-1.2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 8,636 kB
  • ctags: 8,100
  • sloc: perl: 42,963; cpp: 28,039; makefile: 160; xml: 98; sh: 4
file content (154 lines) | stat: -rw-r--r-- 4,103 bytes parent folder | download | duplicates (4)
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
package Window;

use strict;
use warnings;
use QtCore4;
use QtGui4;
# [Window definition]
use QtCore4::isa qw( Qt::Widget );
use QtCore4::slots
    updateButtons => ['int'];

sub nameLabel() {
    return this->{nameLabel};
}

sub addressLabel() {
    return this->{addressLabel};
}

sub typeLabel() {
    return this->{typeLabel};
}

sub nameEdit() {
    return this->{nameEdit};
}

sub addressEdit() {
    return this->{addressEdit};
}

sub typeComboBox() {
    return this->{typeComboBox};
}

sub nextButton() {
    return this->{nextButton};
}

sub previousButton() {
    return this->{previousButton};
}

sub model() {
    return this->{model};
}

sub typeModel() {
    return this->{typeModel};
}

sub mapper() {
    return this->{mapper};
}
# [Window definition]

# [Set up widgets]
sub NEW
{
    my ( $class, $parent ) = @_;
    $class->SUPER::NEW( $parent );
    this->setupModel();

    this->{nameLabel} = Qt::Label(this->tr('Na&me:'));
    this->{nameEdit} = Qt::LineEdit();
    this->{addressLabel} = Qt::Label(this->tr('&Address:'));
    this->{addressEdit} = Qt::TextEdit();
    this->{typeLabel} = Qt::Label(this->tr('&Type:'));
    this->{typeComboBox} = Qt::ComboBox();
    this->{nextButton} = Qt::PushButton(this->tr('&Next'));
    this->{previousButton} = Qt::PushButton(this->tr('&Previous'));

    this->nameLabel->setBuddy(this->nameEdit);
    this->addressLabel->setBuddy(this->addressEdit);
    this->typeLabel->setBuddy(this->typeComboBox);

    this->typeComboBox->setModel(this->typeModel);
# [Set up widgets]

# [Set up the mapper]
    this->{mapper} = Qt::DataWidgetMapper(this);
    this->mapper->setModel(this->model);
    this->mapper->addMapping(this->nameEdit, 0);
    this->mapper->addMapping(this->addressEdit, 1);
    this->mapper->addMapping(this->typeComboBox, 2, Qt::ByteArray('currentIndex'));
# [Set up the mapper]

# [Set up connections and layouts]
    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->typeLabel, 3, 0, 1, 1);
    $layout->addWidget(this->typeComboBox, 3, 1, 1, 1);
    this->setLayout($layout);

    this->setWindowTitle(this->tr('Delegate Widget Mapper'));
    this->mapper->toFirst();
}
# [Set up connections and layouts]

# [Set up the model]
sub setupModel
{
    my @items = (
        this->tr('Home'),
        this->tr('Work'),
        this->tr('Other')
    );
    this->{typeModel} = Qt::StringListModel(\@items, this);
    
    this->{model} = 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 @types = qw( 0 1 2 0 2 );
 
    foreach my $row (0..4) {
        my $item = Qt::StandardItem($names[$row]);
        this->model->setItem($row, 0, $item);
        $item = Qt::StandardItem($addresses[$row]);
        this->model->setItem($row, 1, $item);
        $item = Qt::StandardItem($types[$row]);
        this->model->setItem($row, 2, $item);
    }
}
# [Set up the model]

# [Slot for updating the buttons]
sub updateButtons
{
    my ( $row ) = @_;
    this->previousButton->setEnabled($row > 0);
    this->nextButton->setEnabled($row < this->model->rowCount() - 1);
}
# [Slot for updating the buttons]

1;