OpenASIP
2.0
src
procgen
ProDe
AddIUFromHDBCmd.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 AddIUFromHDBCmd.cc
26
*
27
* Definition of AddIUFromHDBCmd class.
28
*
29
* @author Veli-Pekka Jääskeläinen 2006 (vjaaskel-no.spam-cs.tut.fi)
30
* @note rating: red
31
*/
32
33
#include <wx/docview.h>
34
35
#include "
AddIUFromHDBCmd.hh
"
36
#include "
ProDeConstants.hh
"
37
#include "
AddIUFromHDBDialog.hh
"
38
#include "
ProDe.hh
"
39
#include "
Model.hh
"
40
#include "
MDFDocument.hh
"
41
42
using
std::string;
43
44
45
/**
46
* The Constructor.
47
*/
48
AddIUFromHDBCmd::AddIUFromHDBCmd
():
49
EditorCommand
(
ProDeConstants
::CMD_NAME_ADD_IU_FROM_HDB) {
50
}
51
52
53
/**
54
* The Destructor.
55
*/
56
AddIUFromHDBCmd::~AddIUFromHDBCmd
() {}
57
58
59
/**
60
* Executes the command.
61
*
62
* @return True, if the command was succesfully executed, false otherwise.
63
*/
64
bool
65
AddIUFromHDBCmd::Do
() {
66
67
assert
(
parentWindow
() != NULL);
68
assert
(
view
() != NULL);
69
70
Model
* model =
dynamic_cast<
MDFDocument
*
>
(
71
view
()->GetDocument())->getModel();
72
73
74
AddIUFromHDBDialog
dialog(
parentWindow
(), model);
75
76
dialog.ShowModal();
77
return
true
;
78
}
79
80
81
/**
82
* Returns id of this command.
83
*/
84
int
85
AddIUFromHDBCmd::id
()
const
{
86
return
ProDeConstants::COMMAND_ADD_IU_FROM_HDB
;
87
}
88
89
90
/**
91
* Creates and returns a new instance of this command.
92
*/
93
AddIUFromHDBCmd
*
94
AddIUFromHDBCmd::create
()
const
{
95
return
new
AddIUFromHDBCmd
();
96
}
97
98
99
100
/**
101
* Returns path to the command's icon file.
102
*/
103
string
104
AddIUFromHDBCmd::icon
()
const
{
105
return
ProDeConstants::CMD_ICON_DEFAULT
;
106
}
107
108
109
/**
110
* Returns short version of the command name.
111
*/
112
string
113
AddIUFromHDBCmd::shortName
()
const
{
114
return
ProDeConstants::CMD_SNAME_ADD_IU_FROM_HDB
;
115
}
116
117
118
/**
119
* Returns true when the command is executable, false when not.
120
*
121
* This command is executable when a document is open.
122
*
123
* @return True, if a document is open.
124
*/
125
bool
126
AddIUFromHDBCmd::isEnabled
() {
127
wxDocManager* manager = wxGetApp().docManager();
128
if
(manager->GetCurrentView() != NULL) {
129
return
true
;
130
}
131
return
false
;
132
}
ProDe.hh
MDFDocument.hh
AddIUFromHDBCmd::Do
virtual bool Do()
Definition:
AddIUFromHDBCmd.cc:65
AddIUFromHDBCmd::icon
virtual std::string icon() const
Definition:
AddIUFromHDBCmd.cc:104
AddIUFromHDBDialog
Definition:
AddIUFromHDBDialog.hh:61
AddIUFromHDBCmd::create
virtual AddIUFromHDBCmd * create() const
Definition:
AddIUFromHDBCmd.cc:94
AddIUFromHDBDialog.hh
ProDeConstants::CMD_SNAME_ADD_IU_FROM_HDB
static const std::string CMD_SNAME_ADD_IU_FROM_HDB
Short command name for the "Add IU from hdb" command.
Definition:
ProDeConstants.hh:224
assert
#define assert(condition)
Definition:
Application.hh:86
EditorCommand::view
wxView * view() const
Definition:
EditorCommand.cc:76
Model.hh
MDFDocument
Definition:
MDFDocument.hh:51
AddIUFromHDBCmd::id
virtual int id() const
Definition:
AddIUFromHDBCmd.cc:85
ProDeConstants.hh
AddIUFromHDBCmd::AddIUFromHDBCmd
AddIUFromHDBCmd()
Definition:
AddIUFromHDBCmd.cc:48
ProDeConstants::CMD_ICON_DEFAULT
static const std::string CMD_ICON_DEFAULT
Icon path for default icon of commands.
Definition:
ProDeConstants.hh:286
Model
Definition:
Model.hh:50
AddIUFromHDBCmd::isEnabled
virtual bool isEnabled()
Definition:
AddIUFromHDBCmd.cc:126
AddIUFromHDBCmd.hh
EditorCommand
Definition:
EditorCommand.hh:46
ProDeConstants
Definition:
ProDeConstants.hh:43
ProDeConstants::COMMAND_ADD_IU_FROM_HDB
@ COMMAND_ADD_IU_FROM_HDB
Definition:
ProDeConstants.hh:427
AddIUFromHDBCmd::shortName
virtual std::string shortName() const
Definition:
AddIUFromHDBCmd.cc:113
GUICommand::parentWindow
wxWindow * parentWindow() const
Definition:
GUICommand.cc:75
AddIUFromHDBCmd::~AddIUFromHDBCmd
virtual ~AddIUFromHDBCmd()
Definition:
AddIUFromHDBCmd.cc:56
AddIUFromHDBCmd
Definition:
AddIUFromHDBCmd.hh:41
Generated by
1.8.17