00001 /****************************************************************************************************** 00002 * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released * 00003 * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file * 00004 * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. * 00005 ******************************************************************************************************/ 00006 00007 #ifndef SETTINGS_FOR_GRAPH_H 00008 #define SETTINGS_FOR_GRAPH_H 00009 00010 #include <QString> 00011 00013 class SettingsForGraph 00014 { 00015 public: 00017 SettingsForGraph (); 00018 00020 QString defaultCurveName (int indexOneBased, 00021 const QString &defaultName) const; 00022 00024 QString groupNameForNthCurve (int indexOneBased) const; 00025 00027 int numberOfCurvesForImport() const; 00028 }; 00029 00030 #endif // SETTINGS_FOR_GRAPH_H