OpenASIP
2.0
src
procgen
ProDe
ModifySocketCmd.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 ModifySocketCmd.cc
26
*
27
* Definition of ModifySocketCmd class.
28
*
29
* @author Veli-Pekka Jääskeläinen 2004 (vjaaskel-no.spam-cs.tut.fi)
30
*/
31
32
#include "
Application.hh
"
33
#include "
ModifySocketCmd.hh
"
34
#include "
Socket.hh
"
35
#include "
EditPart.hh
"
36
#include "
SocketDialog.hh
"
37
#include "
ErrorDialog.hh
"
38
39
using namespace
TTAMachine
;
40
41
/**
42
* The Constructor.
43
*/
44
ModifySocketCmd::ModifySocketCmd
(
EditPart
* editPart):
45
ComponentCommand
(),
46
editPart_(editPart) {
47
48
}
49
50
51
/**
52
* The Destructor.
53
*/
54
ModifySocketCmd::~ModifySocketCmd
() {
55
}
56
57
58
/**
59
* Executes the command.
60
*
61
* @return true, if the command was succesfully executed, false otherwise.
62
*/
63
bool
64
ModifySocketCmd::Do
() {
65
66
Socket
* socket =
dynamic_cast<
Socket
*
>
(
editPart_
->
model
());
67
assert
(socket != NULL);
68
69
assert
(
parentWindow
() != NULL);
70
71
SocketDialog
dialog(
parentWindow
(), socket);
72
73
if
(dialog.ShowModal() == wxID_OK) {
74
// socket was modified
75
return
true
;
76
}
else
{
77
// modification was cancelled
78
return
false
;
79
}
80
81
return
false
;
82
}
ModifySocketCmd::editPart_
EditPart * editPart_
Socket to modify.
Definition:
ModifySocketCmd.hh:51
ModifySocketCmd.hh
Socket.hh
assert
#define assert(condition)
Definition:
Application.hh:86
ModifySocketCmd::~ModifySocketCmd
virtual ~ModifySocketCmd()
Definition:
ModifySocketCmd.cc:54
EditPart.hh
ErrorDialog.hh
SocketDialog.hh
Application.hh
TTAMachine::Socket
Definition:
Socket.hh:53
ModifySocketCmd::Do
virtual bool Do()
Definition:
ModifySocketCmd.cc:64
EditPart
Definition:
EditPart.hh:60
SocketDialog
Definition:
SocketDialog.hh:50
EditPart::model
TTAMachine::MachinePart * model() const
ComponentCommand
Definition:
ComponentCommand.hh:46
ModifySocketCmd::ModifySocketCmd
ModifySocketCmd(EditPart *editPart)
Definition:
ModifySocketCmd.cc:44
TTAMachine
Definition:
Assembler.hh:48
ComponentCommand::parentWindow
wxWindow * parentWindow()
Definition:
ComponentCommand.cc:66
Generated by
1.8.17