Moved the message/notice constants to the bottom.

Added a message that initiates a data update from the editor.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6705 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-02-24 03:30:22 +00:00
parent 053bb7380a
commit 0e3cec8c6d

View File

@ -13,9 +13,6 @@
class DataEditor;
static const uint32 kMsgBaseType = 'base';
static const uint32 kDataViewCursorPosition = 'curs';
enum base_type {
kHexBase,
kDecimalBase
@ -89,4 +86,11 @@ class DataView : public BView {
int32 fMouseSelectionStart;
};
static const uint32 kMsgBaseType = 'base';
static const uint32 kMsgUpdateData = 'updt';
// observer notices
static const uint32 kDataViewCursorPosition = 'curs';
static const uint32 kDataViewSelection = 'dsel';
#endif /* DATA_VIEW_H */