OpenASIP 2.2
Loading...
Searching...
No Matches
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
37using std::string;
38
39const string OSEdConstants::CMD_NAME_QUIT = "Quit";
40const string OSEdConstants::CMD_NAME_ABOUT = "About";
41const string OSEdConstants::CMD_NAME_PROPERTIES = "Operation properties";
42const string OSEdConstants::CMD_NAME_ADD_MODULE = "Add module";
43const string OSEdConstants::CMD_NAME_ADD_OPERATION = "Add operation";
44const string OSEdConstants::CMD_NAME_SIMULATE = "Simulate";
45const string OSEdConstants::CMD_NAME_OPTIONS = "Options";
46const string OSEdConstants::CMD_NAME_BUILD = "Build";
47const string OSEdConstants::CMD_NAME_BUILD_ALL = "Build all";
48const string OSEdConstants::CMD_NAME_USER_MANUAL = "User manual";
49const string OSEdConstants::CMD_NAME_REMOVE_MODULE = "Remove module";
50const string OSEdConstants::CMD_NAME_MODIFY_BEHAVIOR = "Modify behavior";
51const string OSEdConstants::CMD_NAME_REMOVE_OPERATION = "Remove operation";
52const string OSEdConstants::CMD_NAME_MEMORY = "Memory";
53
54const string OSEdConstants::CONF_FILE_NAME = "OSEd.conf";
55const string OSEdConstants::USER_MANUAL_NAME = "index.html";
57"behavior_definition_template.cc";
58
60
61const wxString OSEdConstants::APPLICATION_NAME = _T("OSEd");
62
64
65const string OSEdConstants::LOGO_NAME = "logo.png";
66
67const 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
static std::string defaultTextEditorPath()
static const std::string CMD_NAME_MEMORY
Investigate memory command name.
static const std::string CMD_NAME_REMOVE_OPERATION
Remove operation command name.
static const std::string DEFAULT_EDITOR
Default editor name.
static const int DEFAULT_COLUMN_WIDTH
Default column width.
static const std::string LOGO_NAME
Name of the logo.
static const std::string CMD_NAME_OPTIONS
Option command name.
static const std::string CMD_NAME_SIMULATE
Simulate command name.
static const std::string CMD_NAME_USER_MANUAL
User manual command name.
static const std::string CONF_FILE_NAME
Configuration file name.
static const std::string CMD_NAME_QUIT
Quit command name.
static const std::string CMD_NAME_ADD_OPERATION
Add operation command name.
static const wxString APPLICATION_NAME
The name of the application.
static const std::string CMD_NAME_ADD_MODULE
Add module command name.
static const std::string CMD_NAME_BUILD_ALL
Build all command name.
static const std::string CMD_NAME_PROPERTIES
Operation properties command name.
static const std::string CMD_NAME_BUILD
Build command name.
static const wxString OSED_COPYRIGHT
Copyright string.
static const std::string CMD_NAME_REMOVE_MODULE
Remove module command name.
static const std::string CMD_NAME_MODIFY_BEHAVIOR
Modify behavior command name.
static const std::string CMD_NAME_ABOUT
About command name.
static const std::string BEHAVIOR_TEMPLATE_FILE_NAME
Name of the behavior template file name.
static const std::string USER_MANUAL_NAME
Name of the user manual.