OpenASIP  2.0
OSEdConstants.cc
Go to the documentation of this file.
1 /*
2  Copyright (c) 2002-2009 Tampere University.
3 
4  This file is part of TTA-Based Codesign Environment (TCE).
5 
6  Permission is hereby granted, free of charge, to any person obtaining a
7  copy of this software and associated documentation files (the "Software"),
8  to deal in the Software without restriction, including without limitation
9  the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  and/or sell copies of the Software, and to permit persons to whom the
11  Software is furnished to do so, subject to the following conditions:
12 
13  The above copyright notice and this permission notice shall be included in
14  all copies or substantial portions of the Software.
15 
16  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19  THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  DEALINGS IN THE SOFTWARE.
23  */
24 /**
25  * @file OSEdConstants.cc
26  *
27  * Definition of OSEdConstants.cc class.
28  *
29  * @author Jussi Nykänen 2004 (nykanen-no.spam-cs.tut.fi)
30  * @note rating: red
31  */
32 
33 #include <wx/treectrl.h>
34 #include "OSEdConstants.hh"
35 #include "Environment.hh"
36 
37 using std::string;
38 
39 const string OSEdConstants::CMD_NAME_QUIT = "Quit";
40 const string OSEdConstants::CMD_NAME_ABOUT = "About";
41 const string OSEdConstants::CMD_NAME_PROPERTIES = "Operation properties";
42 const string OSEdConstants::CMD_NAME_ADD_MODULE = "Add module";
43 const string OSEdConstants::CMD_NAME_ADD_OPERATION = "Add operation";
44 const string OSEdConstants::CMD_NAME_SIMULATE = "Simulate";
45 const string OSEdConstants::CMD_NAME_OPTIONS = "Options";
46 const string OSEdConstants::CMD_NAME_BUILD = "Build";
47 const string OSEdConstants::CMD_NAME_BUILD_ALL = "Build all";
48 const string OSEdConstants::CMD_NAME_USER_MANUAL = "User manual";
49 const string OSEdConstants::CMD_NAME_REMOVE_MODULE = "Remove module";
50 const string OSEdConstants::CMD_NAME_MODIFY_BEHAVIOR = "Modify behavior";
51 const string OSEdConstants::CMD_NAME_REMOVE_OPERATION = "Remove operation";
52 const string OSEdConstants::CMD_NAME_MEMORY = "Memory";
53 
54 const string OSEdConstants::CONF_FILE_NAME = "OSEd.conf";
55 const string OSEdConstants::USER_MANUAL_NAME = "index.html";
57 "behavior_definition_template.cc";
58 
60 
61 const wxString OSEdConstants::APPLICATION_NAME = _T("OSEd");
62 
64 
65 const string OSEdConstants::LOGO_NAME = "logo.png";
66 
67 const wxString OSEdConstants::OSED_COPYRIGHT =
68  _T("Portions of this program are copyright\n"
69  "\n"
70  "Xerces (c) 1999-2005 The Apache Software\n"
71  "wxWidgets (c) 1998 Julian Smart, Robert Roebling \n"
72  "Tcl (c) 1998-1999 by Scriptics Corporation\n"
73  "Editline (c) 1997 The NetBSD Foundation, Inc.\n"
74  "Boost C++ Libraries (c) 2003 Beman Dawes, David Abrahams\n"
75  "\n"
76  "For more information see User manual chapter \"Copyright notices\""
77  );
78 
79 
OSEdConstants::BEHAVIOR_TEMPLATE_FILE_NAME
static const std::string BEHAVIOR_TEMPLATE_FILE_NAME
Name of the behavior template file name.
Definition: OSEdConstants.hh:82
OSEdConstants::DEFAULT_COLUMN_WIDTH
static const int DEFAULT_COLUMN_WIDTH
Default column width.
Definition: OSEdConstants.hh:113
OSEdConstants::APPLICATION_NAME
static const wxString APPLICATION_NAME
The name of the application.
Definition: OSEdConstants.hh:110
OSEdConstants::CMD_NAME_MEMORY
static const std::string CMD_NAME_MEMORY
Investigate memory command name.
Definition: OSEdConstants.hh:75
OSEdConstants::USER_MANUAL_NAME
static const std::string USER_MANUAL_NAME
Name of the user manual.
Definition: OSEdConstants.hh:80
OSEdConstants::CMD_NAME_ABOUT
static const std::string CMD_NAME_ABOUT
About command name.
Definition: OSEdConstants.hh:51
OSEdConstants::CMD_NAME_QUIT
static const std::string CMD_NAME_QUIT
Quit command name.
Definition: OSEdConstants.hh:49
OSEdConstants::CMD_NAME_ADD_OPERATION
static const std::string CMD_NAME_ADD_OPERATION
Add operation command name.
Definition: OSEdConstants.hh:57
OSEdConstants.hh
Environment::defaultTextEditorPath
static std::string defaultTextEditorPath()
Definition: Environment.cc:1034
OSEdConstants::DEFAULT_EDITOR
static const std::string DEFAULT_EDITOR
Default editor name.
Definition: OSEdConstants.hh:85
OSEdConstants::OSED_COPYRIGHT
static const wxString OSED_COPYRIGHT
Copyright string.
Definition: OSEdConstants.hh:119
OSEdConstants::CMD_NAME_OPTIONS
static const std::string CMD_NAME_OPTIONS
Option command name.
Definition: OSEdConstants.hh:61
Environment.hh
OSEdConstants::CMD_NAME_PROPERTIES
static const std::string CMD_NAME_PROPERTIES
Operation properties command name.
Definition: OSEdConstants.hh:53
OSEdConstants::CMD_NAME_USER_MANUAL
static const std::string CMD_NAME_USER_MANUAL
User manual command name.
Definition: OSEdConstants.hh:67
OSEdConstants::CMD_NAME_BUILD_ALL
static const std::string CMD_NAME_BUILD_ALL
Build all command name.
Definition: OSEdConstants.hh:65
OSEdConstants::CMD_NAME_REMOVE_OPERATION
static const std::string CMD_NAME_REMOVE_OPERATION
Remove operation command name.
Definition: OSEdConstants.hh:73
OSEdConstants::CMD_NAME_MODIFY_BEHAVIOR
static const std::string CMD_NAME_MODIFY_BEHAVIOR
Modify behavior command name.
Definition: OSEdConstants.hh:71
OSEdConstants::LOGO_NAME
static const std::string LOGO_NAME
Name of the logo.
Definition: OSEdConstants.hh:116
OSEdConstants::CONF_FILE_NAME
static const std::string CONF_FILE_NAME
Configuration file name.
Definition: OSEdConstants.hh:78
OSEdConstants::CMD_NAME_ADD_MODULE
static const std::string CMD_NAME_ADD_MODULE
Add module command name.
Definition: OSEdConstants.hh:55
OSEdConstants::CMD_NAME_SIMULATE
static const std::string CMD_NAME_SIMULATE
Simulate command name.
Definition: OSEdConstants.hh:59
OSEdConstants::CMD_NAME_BUILD
static const std::string CMD_NAME_BUILD
Build command name.
Definition: OSEdConstants.hh:63
OSEdConstants::CMD_NAME_REMOVE_MODULE
static const std::string CMD_NAME_REMOVE_MODULE
Remove module command name.
Definition: OSEdConstants.hh:69