/*============================================================================= | | NAME | | PrenticeConstants.java | | DESCRIPTION | | WhatItDoes | | PUBLIC MEMBER FUNCTIONS | | DefaultConstructor WhatItDoesBriefly | ConstructorWithArguments WhatItDoesBriefly | MemberFunction1 WhatItDoesBriefly | MemberFunction2 WhatItDoesBriefly | MemberFunction3 WhatItDoesBriefly | | EXCEPTIONS | | Description | | NOTES | | Algorithm_References_Tricks | | BUGS | | Bugs_Enhancements | | AUTHOR | | Sean E. O'Connor | | LEGAL | | Prentice Version 1.1 - An Artist's Software Apprentice. | Copyright (C) 2003-2009 by Sean Erik O'Connor. All Rights Reserved. | | Primpoly Version 10.4 - A Program for Computing Primitive Polynomials. | Copyright (C) 1999-2009 by Sean Erik O'Connor. All Rights Reserved. | | 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 3 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, see . | | The author's address is artificer!AT!seanerikoconnor!DOT!freeservers!DOT!com | with !DOT! replaced by . and the !AT! replaced by @ | +============================================================================*/ package Prentice ; // Package name for this project. import View.* ; // Prentice View public interface PrenticeConstants { static final String APP_TITLE = "Prentice Version 1.1 - An Artist's Software Apprentice. " + "Copyright (C) 2003-2009 by Sean Erik O'Connor." + "All Rights Reserved." ; // FILE menu item. static final String FILE = "File" ; static final char FILE_SHORTCUT = 'F' ; // FILE->NEW submenu item. static final String NEW = "New" ; static final char NEW_SHORTCUT = 'N' ; static final String NEW_TOOLTIP = "" + "Create a " + "new " + "workspace." + "" ; // FILE->OPEN submenu item. static final String OPEN = "Open" ; static final char OPEN_SHORTCUT = 'O' ; static final String OPEN_TOOLTIP = "" + "Open a " + "model " + "file." + "" ; // Toolbar push buttons. static final String LOAD_WORKSPACE = "Load Workspace" ; static final String SAVE_WORKSPACE = "Save Workspace" ; static final String DRAW_BUTTON = "Draw" ; static final int CAMERA_POSITION_FIELD_SIZE = 20 ; static final String CAMERA_POSITION_DEFAULT = "" ; static final String RENDER_BUTTON = "Render" ; static final String PRINT_BUTTON = "Print" ; static final int TRANSFORM_MATRIX_SIZE = 4 ; }