A collection of Solitaire Games written in Qt.
" "" "" "Copyright 2009 Steve Moore
" "" "License: GPLv3
" "" "" "Graphics: Playing cards are a modified version of the anglo_bitmap cards from Gnome-Games' AisleRiot.
" ).arg(QString::number(VER_MAJ)).arg(QString::number(VER_MIN)).arg(QString::number(VER_PAT))); connect(pWordsLabel,SIGNAL(linkActivated(QString)), this,SLOT(slotLinkActivated(QString))); pMainLayout->addWidget(pWordsLabel,0,Qt::AlignTop|Qt::AlignHCenter); pLayout->addLayout(pMainLayout,20); QDialogButtonBox * pButtonBox=new QDialogButtonBox(this); pButtonBox->addButton(QDialogButtonBox::Close); pLayout->addWidget(pButtonBox,1); connect(pButtonBox, SIGNAL(rejected()), this, SLOT(reject())); // don't allow resizing the window. pLayout->setSizeConstraint(QLayout::SetFixedSize); this->setLayout(pLayout); } //////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////// About::~About() { } //////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////// void About::slotLinkActivated(const QString & link) { emit showLink(link); }