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 icon_size which = B_MINI_ICON);
56 IconMenuItem(const char* label, BMessage* message,
57 const char* iconType, icon_size which = B_MINI_ICON);
58 IconMenuItem(const char* label, BMessage* message,
59 const BNodeInfo* nodeInfo, icon_size which);
60 IconMenuItem(BMenu*, BMessage*, const char* iconType,
61 icon_size which = B_MINI_ICON);
62 IconMenuItem(BMessage* data);
63 virtual ~IconMenuItem();
64
65 static BArchivable* Instantiate(BMessage* data);
66 virtual status_t Archive(BMessage* data, bool deep = true) const;
67
68 virtual void GetContentSize(float* width, float* height);
69 virtual void DrawContent();
70 virtual void SetMarked(bool mark);
71
72 private:
73 virtual void SetIcon(BBitmap* icon);
74
75 private:
76 BBitmap* fDeviceIcon;
77 float fHeightDelta;
78 icon_size fWhich;
79
80 typedef PositionPassingMenuItem _inherited;
81 };
82
83
84 class ModelMenuItem : public BMenuItem {
85 public:
86 ModelMenuItem(const Model*, const char* title, BMessage*,
87 char shortcut = '\0', uint32 modifiers = 0,
88 bool drawText = true, bool extraPad = false);
89 ModelMenuItem(const Model*, BMenu*, bool drawText = true,
90 bool extraPad = false);
91 virtual ~ModelMenuItem();
92
93 virtual status_t SetEntry(const BEntry*);
94 virtual void DrawContent();
95 virtual void Highlight(bool isHighlighted);
96 virtual void GetContentSize(float* width, float* height);
97
98 const Model* TargetModel() const;
99
100 protected:
101 virtual status_t Invoke(BMessage* = NULL);
102 // overriden to support B_OPTION_KEY
103
104 private:
105 void DrawIcon();
106
107 Model fModel;
108 float fHeightDelta;
109 bool fDrawText;
110 bool fExtraPad;
111
112 typedef BMenuItem _inherited;
113 };
114
115
116 inline const Model*
TargetModel()117 ModelMenuItem::TargetModel() const
118 {
119 return &fModel;
120 }
121
122
123 class SpecialModelMenuItem : public ModelMenuItem {
124 public:
125 SpecialModelMenuItem(const Model* model, BMenu* menu);
126
127 virtual void DrawContent();
128
129 private:
130 typedef ModelMenuItem _inherited;
131 };
132
133 } // namespace BPrivate
134
135 using BPrivate::IconMenuItem;
136 using BPrivate::ModelMenuItem;
137 using BPrivate::SpecialModelMenuItem;
138
139 #endif // ICON_MENU_ITEM_H
140