00001 /* -*- c++ -*- (for Emacs) 00002 * 00003 * digestsettings.h 00004 * 00005 * Created by Aidan Lane on Wed Feb 03 2006. 00006 * Copyright (c) 2006 Optimisation and Constraint Solving Group, 00007 * Monash University. All rights reserved. 00008 * 00009 * This program is free software; you can redistribute it and/or modify 00010 * it under the terms of the GNU General Public License as published by 00011 * the Free Software Foundation; either version 2 of the License, or 00012 * (at your option) any later version. 00013 * 00014 * This program is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 * GNU General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU General Public License 00020 * along with this program; if not, write to the Free Software 00021 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00022 */ 00023 00024 #ifndef DIGESTSETTINGS_H 00025 #define DIGESTSETTINGS_H 00026 00027 00028 #include <QString> 00029 00030 00031 namespace DigestSettings { 00032 static const QString inputStrokeWidthKey = "Input/StrokeWidth"; 00033 static const QString inputAnimationSpeedKey = "Input/AnimationSpeed"; 00034 static const QString inputMultiStrokeTimeoutKey = "Input/MultiStrokeTimout"; 00035 static const QString inputMouseAsPenKey = "Input/MouseAsPen"; 00036 static const QString inputRecordHiResKey = "Input/RecordHiRes"; 00037 00038 static const QString dbTypeKey = "Db/Type"; 00039 static const QString dbIsRemoteKey = "Db/IsRemote"; 00040 static const QString dbFilenameKey = "Db/Filename"; 00041 static const QString dbNameKey = "Db/Name"; 00042 static const QString dbHostnameKey = "Db/Hostname"; 00043 static const QString dbPortKey = "Db/Port"; 00044 static const QString dbUsernameKey = "Db/Username"; 00045 00046 // TODO: move the following into the Gesture Browser component 00047 static const QString gestureBrowserThumbnailSizeKey = "GestureBrowser/ThumbnailSize"; 00048 static const QString gestureBrowserTopSplitterStateKey = "GestureBrowser/TopSplitterState"; 00049 00050 // TODO: move the following into the Experiment Browser component 00051 static const QString exprBrowserTopSplitterStateKey = "ExperimentBrowser/TopSplitterState"; 00052 static const QString exprBrowserDetailsSplitterStateKey = "ExperimentBrowser/DetailsSplitterState"; 00053 static const QString exprBrowserResultsFilterKey = "ExperimentBrowser/ResultsFilter"; 00054 static const QString exprBrowserShowTestGestureKey = "ExperimentBrowser/ShowTestGesture"; 00055 static const QString exprBrowserShowTestClassKey = "ExperimentBrowser/ShowTestClass"; 00056 static const QString exprBrowserShowResultClassKey = "ExperimentBrowser/ShowResultClass"; 00057 static const QString exprBrowserShowResultProbKey = "ExperimentBrowser/ShowResultProb"; 00058 static const QString exprBrowserShowExprIdKey = "ExperimentBrowser/ShowExprId"; 00059 static const QString exprBrowserShowExprLabelKey = "ExperimentBrowser/ShowExprLabel"; 00060 static const QString exprBrowserShowExprDateKey = "ExperimentBrowser/ShowExprDate"; 00061 static const QString exprBrowserShowExprOthersKey = "ExperimentBrowser/ShowExprOthers"; 00062 static const QString exprBrowserShowExprRecogKey = "ExperimentBrowser/ShowExprRecog"; 00063 static const QString exprBrowserShowGenIsCorrectKey = "ExperimentBrowser/ShowGenIsCorrect"; 00064 }; 00065 00066 00067 00068 #endif // ! DIGESTSETTINGS_H
1.5.2