Renamer::Renamer(QWidget *parent) : QDialog(parent), ui(new Ui::Renamer) { ui->setupUi(this); connect(ui->chkDirectoryNaming, SIGNAL(stateChanged(int)), this, SLOT(onChkRenameDirectories())); connect(ui->chkFileNaming, SIGNAL(stateChanged(int)), this, SLOT(onChkRenameFiles())); connect(ui->chkSeasonDirectories, SIGNAL(stateChanged(int)), this, SLOT(onChkUseSeasonDirectories())); connect(ui->btnDryRun, SIGNAL(clicked()), this, SLOT(onDryRun())); connect(ui->btnRename, SIGNAL(clicked()), this, SLOT(onRename())); onChkRenameDirectories(); onChkRenameFiles(); m_extraFiles = Settings::instance()->advanced()->subtitleFilters(); ui->helpLabel->setText(tr("Please see %1 for help and examples on how to use the renamer.") .arg("<a href=\"http://community.kvibes.de/topic/show/renamer\">http://community.kvibes.de/topic/show/renamer</a>")); }
void TpresetsPage::onRenameMenu(void) { onRename(0); }
void TpresetsPage::onRenameBt(void) { onRename(ID_MNI_PRESET_RENAME); }