本文整理汇总了C++中Global::newNoteFocusToTitle方法的典型用法代码示例。如果您正苦于以下问题:C++ Global::newNoteFocusToTitle方法的具体用法?C++ Global::newNoteFocusToTitle怎么用?C++ Global::newNoteFocusToTitle使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Global
的用法示例。
在下文中一共展示了Global::newNoteFocusToTitle方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: QWidget
//.........这里部分代码省略.........
minimizeToTray = new QCheckBox(tr("Minimize to tray"));
closeToTray = new QCheckBox(tr("Close to tray"));
mainLayout->addWidget(minimizeToTray, row, 0);
mainLayout->addWidget(closeToTray, row++, 1);
}
mainLayout->addWidget(autoHideEditorButtonbar, row, 0);
mainLayout->addWidget(showPDFs, row++, 1);
mainLayout->addWidget(showMissedReminders, row, 0);
mainLayout->addWidget(dynamicTotals, row++, 1);
mainLayout->addWidget(startMinimized, row, 0);
mainLayout->addWidget(autoStart, row++, 1);
mainLayout->addWidget(disableEditingOnStartup, row, 0);
mainLayout->addWidget(newNoteFocusOnTitle, row++, 1);
mainLayout->addWidget(confirmDeletes, row, 0);
mainLayout->addWidget(forceWebFonts, row++, 1);
mainLayout->addWidget(defaultNotebookOnStartupLabel,row,0);
mainLayout->addWidget(defaultNotebookOnStartup, row++,1);
mainLayout->addWidget(new QLabel(tr("Notification Service")), row, 0);
mainLayout->addWidget(systemNotifier, row++, 1);
mainLayout->addWidget(new QLabel(tr("Middle Click Open Behavior")), row,0);
mainLayout->addWidget(mouseMiddleClickAction, row++, 1);
mainLayout->addWidget(new QLabel(tr("Tray Icon Click Action")), row, 0);
mainLayout->addWidget(traySingleClickAction, row++, 1);
mainLayout->addWidget(new QLabel(tr("Tray Icon Middle Click Action")), row, 0);
mainLayout->addWidget(trayMiddleClickAction, row++, 1);
mainLayout->addWidget(new QLabel(tr("Default GUI Font*")), row, 0);
mainLayout->addWidget(defaultGuiFontChooser, row++, 1);
mainLayout->addWidget(new QLabel(tr("Default GUI Font Size*")), row, 0);
mainLayout->addWidget(defaultGuiFontSizeChooser, row++, 1);
mainLayout->addWidget(new QLabel(tr("Default Editor Font*")), row, 0);
mainLayout->addWidget(defaultFontChooser, row++, 1);
mainLayout->addWidget(new QLabel(tr("Default Editor Font Size*")), row, 0);
mainLayout->addWidget(defaultFontSizeChooser, row++, 1);
mainLayout->addWidget(new QLabel(""), row++, 0);
mainLayout->addWidget(new QLabel(tr("* May require restart on some systems.")), row++, 0);
global.settings->beginGroup("Appearance");
disableEditingOnStartup->setChecked(global.settings->value("disableEditingOnStartup",false).toBool());
int idx = global.settings->value("traySingleClickAction", 0).toInt();
idx = traySingleClickAction->findData(idx, Qt::UserRole);
traySingleClickAction->setCurrentIndex(idx);
idx = global.settings->value("trayMiddleClickAction", 0).toInt();
idx = traySingleClickAction->findData(idx, Qt::UserRole);
trayMiddleClickAction->setCurrentIndex(idx);
showTrayIcon->setChecked(global.settings->value("showTrayIcon", false).toBool());
showPDFs->setChecked(global.settings->value("showPDFs", true).toBool());
showSplashScreen->setChecked(global.settings->value("showSplashScreen", false).toBool());
showMissedReminders->setChecked(global.settings->value("showMissedReminders", false).toBool());
startMinimized->setChecked(global.settings->value("startMinimized", false).toBool());
if (global.countBehavior == Global::CountAll)
dynamicTotals->setChecked(true);
else
dynamicTotals->setChecked(false);
autoStart->setChecked(global.settings->value("autoStart", false).toBool());
int defaultNotebook = global.settings->value("startupNotebook", UseLastViewedNotebook).toInt();
defaultNotebookOnStartup->setCurrentIndex(defaultNotebook);
global.settings->endGroup();
connect(showTrayIcon, SIGNAL(clicked(bool)), this, SLOT(showTrayIconChanged(bool)));
if (minimizeToTray != NULL) {
minimizeToTray->setChecked(global.minimizeToTray());
if (!showTrayIcon->isChecked())
minimizeToTray->setEnabled(false);
}
if (closeToTray != NULL) {
closeToTray->setChecked(global.closeToTray());
if (!showTrayIcon->isChecked())
closeToTray->setEnabled(false);
}
newNoteFocusOnTitle->setChecked(global.newNoteFocusToTitle());
this->setFont(global.getGuiFont(font()));
// Check if Tidy is installed
QProcess notifyProcess;
notifyProcess.start("notify-send -?");
notifyProcess.waitForFinished();
QLOG_DEBUG() << notifyProcess.exitCode();
if (notifyProcess.exitCode()) {
systemNotifier->setEnabled(false);
} else {
QString notifier = global.systemNotifier();
int idx = systemNotifier->findData(notifier, Qt::UserRole);
systemNotifier->setCurrentIndex(idx);
}
}