/*=============================================================================
|
| 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-2008 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; version 2
| of the License.
|
| 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
| The author's address is artifex@seanerikoconnor.freeservers.com.
|
+============================================================================*/
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-2008 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 ;
}