1 /* 2 Open Tracker License 3 4 Terms and Conditions 5 6 Copyright (c) 1991-2000, 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 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 ICON_MENU_ITEM_H 35 #define ICON_MENU_ITEM_H 36 37 38 // Menu item class with small icons. 39 40 41 #include <MenuItem.h> 42 #include "Model.h" 43 #include "Utilities.h" 44 45 46 class BNodeInfo; 47 48 namespace BPrivate { 49 50 const bigtime_t kSynchMenuInvokeTimeout = 5000000; 51 52 class IconMenuItem : public PositionPassingMenuItem { 53 public: 54 IconMenuItem(const char* label, BMessage* message, BBitmap* icon); 55 IconMenuItem(const char* label, BMessage* message, 56 const char* iconType, icon_size which); 57 IconMenuItem(const char* label, BMessage* message, 58 const BNodeInfo* nodeInfo, icon_size which); 59 IconMenuItem(BMenu*, BMessage*, const char* iconType, 60 icon_size which); 61 virtual ~IconMenuItem(); 62 63 virtual void GetContentSize(float* width, float* height); 64 virtual void DrawContent(); 65 66 private: 67 BBitmap* fDeviceIcon; 68 float fHeightDelta; 69 70 typedef BMenuItem _inherited; 71 }; 72 73 74 class ModelMenuItem : public BMenuItem { 75 public: 76 ModelMenuItem(const Model*, const char* title, BMessage*, 77 char shortcut = '\0', uint32 modifiers = 0, 78 bool drawText = true, bool extraPad = false); 79 ModelMenuItem(const Model*, BMenu*, bool drawText = true, 80 bool extraPad = false); 81 virtual ~ModelMenuItem(); 82 83 virtual status_t SetEntry(const BEntry*); 84 virtual void DrawContent(); 85 virtual void Highlight(bool isHighlighted); 86 virtual void GetContentSize(float* width, float* height); 87 88 const Model* TargetModel() const; 89 90 protected: 91 virtual status_t Invoke(BMessage* = NULL); 92 // overriden to support B_OPTION_KEY 93 94 private: 95 void DrawIcon(); 96 97 Model fModel; 98 float fHeightDelta; 99 bool fDrawText; 100 bool fExtraPad; 101 102 typedef BMenuItem _inherited; 103 }; 104 105 106 inline const Model* 107 ModelMenuItem::TargetModel() const 108 { 109 return &fModel; 110 } 111 112 113 class SpecialModelMenuItem : public ModelMenuItem { 114 public: 115 SpecialModelMenuItem(const Model* model, BMenu* menu); 116 117 virtual void DrawContent(); 118 119 private: 120 typedef ModelMenuItem _inherited; 121 }; 122 123 } // namespace BPrivate 124 125 using namespace BPrivate; 126 127 #endif // ICON_MENU_ITEM_H 128