QTfrontend/ui/page/pageoptions.cpp
changeset 12240 88b31fdc760b
parent 12239 8db93a3a29dc
child 12241 0b5aa545e058
equal deleted inserted replaced
12239:8db93a3a29dc 12240:88b31fdc760b
   308             groupGame->layout()->addWidget(SLQuality, 3, 1, Qt::AlignLeft);
   308             groupGame->layout()->addWidget(SLQuality, 3, 1, Qt::AlignLeft);
   309 
   309 
   310             // Stereo spacing
   310             // Stereo spacing
   311 
   311 
   312             QLabel * lblStereo = new QLabel(groupGame);
   312             QLabel * lblStereo = new QLabel(groupGame);
   313             lblStereo->setText(QLabel::tr("Stereo rendering"));
   313             lblStereo->setText(QLabel::tr("Stereoscopy"));
   314             groupGame->layout()->addWidget(lblStereo, 4, 0);
   314             groupGame->layout()->addWidget(lblStereo, 4, 0);
   315 
   315 
   316             CBStereoMode = new QComboBox(groupGame);
   316             CBStereoMode = new QComboBox(groupGame);
       
   317             CBStereoMode->setWhatsThis(QComboBox::tr("Stereoscopy creates an illusion of depth when you wear 3D glasses."));
   317             CBStereoMode->setMaxVisibleItems(50);
   318             CBStereoMode->setMaxVisibleItems(50);
   318             CBStereoMode->addItem(QComboBox::tr("Disabled"));
   319             CBStereoMode->addItem(QComboBox::tr("Disabled"));
   319             CBStereoMode->addItem(QComboBox::tr("Red/Cyan"));
   320             CBStereoMode->addItem(QComboBox::tr("Red/Cyan"));
   320             CBStereoMode->addItem(QComboBox::tr("Cyan/Red"));
   321             CBStereoMode->addItem(QComboBox::tr("Cyan/Red"));
   321             CBStereoMode->addItem(QComboBox::tr("Red/Blue"));
   322             CBStereoMode->addItem(QComboBox::tr("Red/Blue"));
   417 
   418 
   418             // Visual effects
   419             // Visual effects
   419 
   420 
   420             CBFrontendEffects = new QCheckBox(groupFrontend);
   421             CBFrontendEffects = new QCheckBox(groupFrontend);
   421             CBFrontendEffects->setText(QCheckBox::tr("Visual effects"));
   422             CBFrontendEffects->setText(QCheckBox::tr("Visual effects"));
       
   423             CBFrontendEffects->setWhatsThis(QCheckBox::tr("Enable visual effects such as animated menu transitions and falling stars"));
   422             groupFrontend->layout()->addWidget(CBFrontendEffects, 1, 0);
   424             groupFrontend->layout()->addWidget(CBFrontendEffects, 1, 0);
   423         }
   425         }
   424 
   426 
   425         { // group: colors
   427         { // group: colors
   426             OptionGroupBox * groupColors = new OptionGroupBox(":/res/lightbulb_on.png", tr("Custom colors"), this);
   428             OptionGroupBox * groupColors = new OptionGroupBox(":/res/lightbulb_on.png", tr("Custom colors"), this);
   674 
   676 
   675             // Append date and time to record file name
   677             // Append date and time to record file name
   676 
   678 
   677             CBNameWithDate = new QCheckBox(groupMisc);
   679             CBNameWithDate = new QCheckBox(groupMisc);
   678             CBNameWithDate->setText(QCheckBox::tr("Append date and time to record file name"));
   680             CBNameWithDate->setText(QCheckBox::tr("Append date and time to record file name"));
       
   681             CBNameWithDate->setWhatsThis(QCheckBox::tr("If enabled, Hedgewars adds the date and time in the form “YYYY-MM-DD_hh-mm” for automatically created demos."));
   679             groupMisc->layout()->addWidget(CBNameWithDate, 3, 0, 1, 2);
   682             groupMisc->layout()->addWidget(CBNameWithDate, 3, 0, 1, 2);
   680 
   683 
   681             // Associate file extensions
   684             // Associate file extensions
   682 
   685 
   683             BtnAssociateFiles = new QPushButton(groupMisc);
   686             BtnAssociateFiles = new QPushButton(groupMisc);