1 #include "ui_ProjectWidgetForm.h" 
    8     m_ui(new Ui::ProjectWidgetForm)
 
   14   connect(
m_ui->m_authorLineEdit, SIGNAL(textChanged(
const QString&)), SLOT(
authorChanged(
const QString&)));
 
   15   connect(
m_ui->m_numRecentProjectsSpinBox, SIGNAL(valueChanged(
int)), SLOT(
maxSavedChanged(
int)));
 
   24   ns = 
"dpi.inpe.br.apf";
 
   25   helpFile = 
"apf/settings/project/ProjectConfig.html";
 
   35   QString author = m_ui->m_authorLineEdit->text();
 
   36   int maxSaved = m_ui->m_numRecentProjectsSpinBox->value();
 
   42   changeApplyButtonState(
false);
 
   52   m_ui->m_authorLineEdit->setText(author);
 
   53   m_ui->m_numRecentProjectsSpinBox->setValue(maxSaved);
 
   55   changeApplyButtonState(
false);
 
   60   changeApplyButtonState(
true);
 
   65   changeApplyButtonState(
true);
 
   70   changeApplyButtonState(
true);
 
TEQTAFEXPORT void SaveOpenLastProjectOnSettings(bool openLast)
 
TEQTAFEXPORT void SaveProjectInformationsOnSettings(const QString &defaultAuthor, const int &maxSaved)
 
TEQTAFEXPORT void GetProjectInformationsFromSettings(QString &defaultAuthor, int &maxSaved)