1 # -*- coding: UTF-8 -*-
2 # vim: expandtab sw=4 ts=4 sts=4:
5 wx events used all around this program.
7 __author__
= 'Michal Čihař'
8 __email__
= 'michal@cihar.com'
10 Copyright © 2003 - 2010 Michal Čihař
12 This program is free software; you can redistribute it and/or modify it
13 under the terms of the GNU General Public License version 2 as published by
14 the Free Software Foundation.
16 This program is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
21 You should have received a copy of the GNU General Public License along with
22 this program; if not, write to the Free Software Foundation, Inc.,
23 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 from wx
.lib
.newevent
import NewEvent
29 ShowMessageEvent
, EVT_SHOW_MESSAGE
= NewEvent()
30 ProgressEvent
, EVT_PROGRESS
= NewEvent()
31 LinkEvent
, EVT_LINK
= NewEvent()
32 DataEvent
, EVT_DATA
= NewEvent()
33 ShowEvent
, EVT_SHOW
= NewEvent()
34 EditEvent
, EVT_EDIT
= NewEvent()
35 SendEvent
, EVT_SEND
= NewEvent()
36 CallEvent
, EVT_CALL
= NewEvent()
37 MessageEvent
, EVT_MESSAGE
= NewEvent()
38 ReplyEvent
, EVT_REPLY
= NewEvent()
39 DuplicateEvent
, EVT_DUPLICATE
= NewEvent()
40 DeleteEvent
, EVT_DELETE
= NewEvent()
41 LogEvent
, EVT_LOG
= NewEvent()
42 TextEvent
, EVT_TEXT
= NewEvent()
43 DoneEvent
, EVT_DONE
= NewEvent()
44 BackupEvent
, EVT_BACKUP
= NewEvent()
45 ExceptionEvent
, EVT_EXCEPTION
= NewEvent()