view release on metacpan or search on metacpan
qtgui/examples/dbus/remotecontrolledcar/controller/Controller.pm view on Meta::CPAN
use QtDBus4;
use Ui_Controller;
use QtCore4::isa qw( Qt::Widget );
use QtCore4::slots
on_accelerate_clicked => [],
on_decelerate_clicked => [],
on_left_clicked => [],
on_right_clicked => [];
use CarInterface;
sub ui() {
return this->{ui};
}
sub car() {
return this->{car};
}
sub NEW
{
my ($class, $parent) = @_;
qtgui/examples/graphicsview/padnavigator/Panel.pm view on Meta::CPAN
}
sub flipped() {
return this->{flipped};
}
sub flipLeft() {
return this->{flipLeft};
}
sub ui() {
return this->{ui};
}
use RoundRectItem;
use SplashItem;
use Ui_BackSide;
sub NEW
{
my ($class, $width, $height) = @_;
qtgui/examples/graphicsview/portedasteroids/AnimatedPixmapItem.pm view on Meta::CPAN
#};
sub currentFrame() {
return this->{currentFrame};
}
sub frames() {
return this->{frames};
}
sub vx() {
return this->{vx};
}
sub vy() {
return this->{vy};
}
sub NEW
{
my ($class, $animation, $scene) = @_;
$class->SUPER::NEW(undef, $scene);
this->{vx} = 0;
this->{vy} = 0;
this->{currentFrame} = 0;
qtgui/examples/network/network-chat/ChatDialog.pm view on Meta::CPAN
}
sub myNickName() {
return this->{myNickName};
}
sub tableFormat() {
return this->{tableFormat};
}
sub ui() {
return this->{ui};
}
sub NEW
{
my ($class, $parent) = @_;
$class->SUPER::NEW($parent);
this->{client} = Client();
this->{tableFormat} = Qt::TextTableFormat();
this->{ui} = Ui_ChatDialog->setupUi(this);
qtgui/examples/painting/svggenerator/Window.pm view on Meta::CPAN
use QtCore4::slots
saveSvg => [],
updateBackground => ['int'],
updateColor => [],
updateShape => ['int'];
sub path() {
return this->{path};
}
sub ui() {
return this->{ui};
}
sub displayWidget {
return this->ui->{displayWidget};
}
# [Window class definition]
sub NEW
qtgui/examples/tools/undoframework/Commands.pm view on Meta::CPAN
use strict;
use warnings;
use QtCore4;
use QtGui4;
use DiagramItem;
# [0]
use QtCore4::isa qw( Qt::UndoCommand );
use constant { Id => 1234 };
sub id() { return Id; }
sub myDiagramItem() {
return this->{myDiagramItem};
}
sub myOldPos() {
return this->{myOldPos};
}
sub newPos() {
qtgui/examples/xmlpatterns/filetree/MainWindow.pm view on Meta::CPAN
use FileTree;
use Ui_MainWindow;
use QtCore4::slots
on_actionOpenDirectory_triggered => [],
on_actionAbout_triggered => [],
on_queryBox_currentIndexChanged => [];
use lib '../shared';
#use XmlSyntaxHighlighter;
sub ui() {
return this->{ui};
}
sub m_namePool() {
return this->{m_namePool};
}
sub m_fileTree() {
return this->{m_fileTree};
}
qtgui/examples/xmlpatterns/qobjectxmlmodel/MainWindow.pm view on Meta::CPAN
use QtXmlPatterns4;
use Ui_MainWindow;
use QObjectXmlModel;
use QtCore4::isa qw( Qt::MainWindow );
use QtCore4::slots
on_actionAbout_triggered => [];
use lib '../shared';
#use XmlSyntaxHighlighter;
sub ui() {
return this->{ui};
}
sub NEW
{
my ($class) = @_;
$class->SUPER::NEW();
this->{ui} = Ui_MainWindow->setupUi(this);
#XmlSyntaxHighlighter(ui->wholeTreeOutput->document());