1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
/*********************************************************************************
NixNote - An open-source client for the Evernote service.
Copyright (C) 2013 Randy Baumgarte
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
***********************************************************************************/
#include "debugpreferences.h"
#include "logger/qslog.h"
#include "global.h"
extern Global global;
using namespace QsLogging;
DebugPreferences::DebugPreferences(QWidget *parent) :
QWidget(parent)
{
mainLayout = new QGridLayout(this);
mainLayout->setAlignment(Qt::AlignTop | Qt::AlignLeft);
setLayout(mainLayout);
strictDTD = new QCheckBox(tr("Strict note checking."),this);
strictDTD->setChecked(global.strictDTD);
disableUploads = new QCheckBox(tr("Disable uploads to server."),this);
disableImageHighlight = new QCheckBox(tr("Disable image search highlighting."), this);
showLidColumn = new QCheckBox(tr("Show LID column (requires restart)."));
nonAsciiSortBug = new QCheckBox(tr("Disable Tag Sorting (useful for non-ASCII sort bug)."));
forceUTF8 = new QCheckBox(tr("Force UTF8 Encoding."));
nonAsciiSortBug->setChecked(global.nonAsciiSortBug);
forceUTF8->setChecked(global.getForceUTF8());
global.settings->beginGroup("Debugging");
disableUploads->setChecked(global.disableUploads);
showLidColumn->setChecked(global.settings->value("showLids", false).toBool());
global.settings->endGroup();
disableImageHighlight->setChecked(global.disableImageHighlight());
mainLayout->addWidget(disableUploads,0,1);
mainLayout->addWidget(showLidColumn, 1,1);
mainLayout->addWidget(nonAsciiSortBug,2,1);
mainLayout->addWidget(disableImageHighlight,3,1);
mainLayout->addWidget(strictDTD,4,1);
mainLayout->addWidget(forceUTF8, 5, 1);
debugLevelLabel = new QLabel(tr("Message Level"), this);
debugLevelLabel->setAlignment(Qt::AlignRight | Qt::AlignCenter);
debugLevel = new QComboBox(this);
debugLevel->addItem(tr("Trace"), TraceLevel);
debugLevel->addItem(tr("Debug"), DebugLevel);
debugLevel->addItem(tr("Info"), InfoLevel);
debugLevel->addItem(tr("Warnings"), WarnLevel);
debugLevel->addItem(tr("Errors"), ErrorLevel);
debugLevel->addItem(tr("Fatal"), FatalLevel);
global.settings->beginGroup("Debugging");
int value = global.settings->value("messageLevel", InfoLevel).toInt();
global.settings->endGroup();
int index = debugLevel->findData(value);
debugLevel->setCurrentIndex(index);
mainLayout->addWidget(debugLevelLabel,6,0);
mainLayout->addWidget(debugLevel,6,1);
this->setFont(global.getGuiFont(font()));
}
DebugPreferences::~DebugPreferences() {
delete debugLevel;
delete debugLevelLabel;
delete mainLayout;
}
int DebugPreferences::getMessageLevel() {
int index = debugLevel->currentIndex();
return debugLevel->itemData(index).toInt();
}
void DebugPreferences::saveValues() {
int value = getMessageLevel();
global.setForceUTF8(forceUTF8->isChecked());
global.settings->beginGroup("Debugging");
global.settings->setValue("messageLevel", value);
global.settings->setValue("showLids", showLidColumn->isChecked());
global.settings->setValue("nonAsciiSortBug", nonAsciiSortBug->isChecked());
global.settings->setValue("disableImageHighlight", disableImageHighlight->isChecked());
global.nonAsciiSortBug = nonAsciiSortBug->isChecked();
// If the disable uploads is different than the defaults or if it has changed, we save it.
if (disableUploads->isChecked() || disableUploads->isChecked() != global.disableUploads)
global.settings->setValue("disableUploads", disableUploads->isChecked());
global.settings->endGroup();
global.disableUploads = disableUploads->isChecked();
global.setStrictDTD(strictDTD->isChecked());
}
|