/* Constants.h - constants for Popup.app Copyright (C) 2004 Rob Burns February,26 2004 This application 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 any later version. This application 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 application; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA. */ #ifndef _CONSTANTS_H_ #define _CONSTANTS_H_ // Card storage constants #define NOSLOT -1 // Quiz scoring constants #define NOTUSED 0 #define PASSED 10 #define FAILED 20 // Quiz type constants #define FLASHCARD_QUIZ @"FLASHCARD_QUIZ" #define MULTIPLE_CHOICE_QUIZ @"MULTIPLE_CHOICE_QUIZ" #define SPELLING_QUIZ @"SPELLING_QUIZ" // Quiz method constants #define SHOWONCE_QUIZ_METHOD 96 #define REPETITION_QUIZ_METHOD 32 // Pastboard type constant #define PopupCardsPboardType @"PopupCardsPboardType" #endif // _CONSTANTS_H_