1 /* 2 Open Tracker License 3 4 Terms and Conditions 5 6 Copyright (c) 1991-2001, Be Incorporated. All rights reserved. 7 8 Permission is hereby granted, free of charge, to any person obtaining a copy of 9 this software and associated documentation files (the "Software"), to deal in 10 the Software without restriction, including without limitation the rights to 11 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 12 of the Software, and to permit persons to whom the Software is furnished to do 13 so, subject to the following conditions: 14 15 The above copyright notice and this permission notice applies to all licensees 16 and shall be included in all copies or substantial portions of the Software. 17 18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF TITLE, MERCHANTABILITY, 20 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 21 BE INCORPORATED BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 22 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION 23 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 24 25 Except as contained in this notice, the name of Be Incorporated shall not be 26 used in advertising or otherwise to promote the sale, use or other dealings in 27 this Software without prior written authorization from Be Incorporated. 28 29 BeMail(TM), Tracker(TM), Be(R), BeOS(R), and BeIA(TM) are trademarks or registered trademarks 30 of Be Incorporated in the United States and other countries. Other brand product 31 names are registered trademarks or trademarks of their respective holders. 32 All rights reserved. 33 */ 34 #ifndef _ENCLOSURES_H 35 #define _ENCLOSURES_H 36 37 38 #include <Box.h> 39 #include <File.h> 40 #include <ListView.h> 41 #include <NodeInfo.h> 42 #include <Path.h> 43 #include <Point.h> 44 #include <Rect.h> 45 #include <ScrollView.h> 46 #include <View.h> 47 #include <Volume.h> 48 49 #include <MailMessage.h> 50 51 52 #define ENCLOSURES_HEIGHT 65 53 54 #define ENCLOSE_TEXT B_TRANSLATE_CONTEXT("Attachments:", "Mail") 55 #define ENCLOSE_TEXT_H 7 56 #define ENCLOSE_TEXT_V 3 57 #define ENCLOSE_FIELD_V 3 58 59 60 class TListView; 61 class TMailWindow; 62 class TScrollView; 63 64 65 class TEnclosuresView : public BView { 66 public: 67 TEnclosuresView(BRect rect, BRect windowRect); 68 virtual ~TEnclosuresView(); 69 70 virtual void Draw(BRect updateRect); 71 virtual void MessageReceived(BMessage* message); 72 void Focus(bool focus); 73 void AddEnclosuresFromMail(BEmailMessage* mail); 74 75 TListView* fList; 76 77 private: 78 bool fFocus; 79 float fOffset; 80 TMailWindow* fWindow; 81 }; 82 83 84 class TListView : public BListView { 85 public: 86 TListView(BRect rect, TEnclosuresView* view); 87 88 virtual void AttachedToWindow(); 89 virtual void MakeFocus(bool focus); 90 virtual void MouseDown(BPoint point); 91 virtual void KeyDown(const char* bytes,int32 numBytes); 92 93 private: 94 TEnclosuresView* fParent; 95 }; 96 97 98 class TListItem : public BListItem { 99 public: 100 TListItem(entry_ref* ref); 101 TListItem(BMailComponent* component); 102 103 virtual void DrawItem(BView* owner, BRect rect, 104 bool complete); 105 virtual void Update(BView* owner, const BFont* font); 106 107 BMailComponent* Component() { return fComponent; }; 108 entry_ref* Ref() { return &fRef; } 109 node_ref* NodeRef() { return &fNodeRef; } 110 111 private: 112 BMailComponent* fComponent; 113 entry_ref fRef; 114 node_ref fNodeRef; 115 }; 116 117 118 #endif // _ENCLOSURES_H 119