コード例 #1
0
ファイル: mainwindow.cpp プロジェクト: Granjow/slowmoVideo
void MainWindow::slotNextFile()
{
    slotChangeFile(+1);
}
コード例 #2
0
ファイル: mainwindow.cpp プロジェクト: Granjow/slowmoVideo
void MainWindow::slotPrevFile()
{
    slotChangeFile(-1);
}
コード例 #3
0
QFilePushButton::QFilePushButton(QLineEdit * pBuddy, const QString & strText, QWidget * parent, const char * name)
: QPushButton(strText, parent, name), m_pBuddy(pBuddy)
{
	connect(this, SIGNAL(clicked()), SLOT(slotChangeFile()));
	setAutoDefault(false);
}