OpenASIP
2.0
src
applibs
wxToolkit
FocusTrackingTextCtrl.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 FocusTrackingTextCtrl.cc
26
*
27
* Implementation of FocusTrackingTextCtrl class.
28
*
29
* @author Veli-Pekka Jääskeläinen 2004 (vjaaskel-no.spam-cs.tut.fi)
30
*/
31
32
#include "
FocusTrackingTextCtrl.hh
"
33
34
BEGIN_EVENT_TABLE(
FocusTrackingTextCtrl
, wxTextCtrl)
35
EVT_KILL_FOCUS(
FocusTrackingTextCtrl::onKillFocus
)
36
END_EVENT_TABLE
()
37
38
/**
39
* The Constructor.
40
*
41
* @param parent Parent window of the control.
42
* @param id Numeric id for the control.
43
* @param value Initial value of the text field.
44
* @param pos Position of the control.
45
* @param size Size of the control.
46
* @param style Style flags for the text control.
47
* @param validator Validator for the control.
48
* @param name Name of the control.
49
*/
50
FocusTrackingTextCtrl
::
FocusTrackingTextCtrl
(
51
wxWindow* parent,
52
wxWindowID
id
,
53
const wxString& value,
54
const wxPoint& pos,
55
const wxSize& size,
56
long
style,
57
const wxValidator& validator,
58
const wxString& name) :
59
wxTextCtrl(parent,
id
, value, pos, size,
60
(style | wxTE_PROCESS_ENTER) , validator, name) {
61
62
}
63
64
/**
65
* The Destructor.
66
*/
67
FocusTrackingTextCtrl::~FocusTrackingTextCtrl
() {
68
}
69
70
/**
71
* Emits a wxEVT_COMMAND_TEXT_ENTER event when the control loses focus.
72
*
73
* @param event Focus event of the control losing focus.
74
*/
75
void
76
FocusTrackingTextCtrl::onKillFocus
(wxFocusEvent& event) {
77
wxCommandEvent textEntered =
78
wxCommandEvent(wxEVT_COMMAND_TEXT_ENTER, GetId());
79
AddPendingEvent(textEntered);
80
event
.Skip();
81
}
FocusTrackingTextCtrl.hh
FocusTrackingTextCtrl
Definition:
FocusTrackingTextCtrl.hh:47
FocusTrackingTextCtrl::onKillFocus
void onKillFocus(wxFocusEvent &event)
Definition:
FocusTrackingTextCtrl.cc:76
END_EVENT_TABLE
END_EVENT_TABLE() using namespace IDF
FocusTrackingTextCtrl::~FocusTrackingTextCtrl
~FocusTrackingTextCtrl()
Definition:
FocusTrackingTextCtrl.cc:67
Generated by
1.8.17