From 0e3cec8c6db4ffee443508aecce2d223b4300f35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Tue, 24 Feb 2004 03:30:22 +0000 Subject: [PATCH] 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 --- src/apps/diskprobe/DataView.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/apps/diskprobe/DataView.h b/src/apps/diskprobe/DataView.h index 3045399889..405b6b6ad8 100644 --- a/src/apps/diskprobe/DataView.h +++ b/src/apps/diskprobe/DataView.h @@ -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 */