6 Copyright (c) 1991-2000, Be Incorporated. All rights reserved.
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:
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.
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.
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.
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.
34 #ifndef ICON_MENU_ITEM_H
35 #define ICON_MENU_ITEM_H
38 // Menu item class with small icons.
43 #include "Utilities.h"
50 const bigtime_t kSynchMenuInvokeTimeout
= 5000000;
52 class IconMenuItem
: public PositionPassingMenuItem
{
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();
65 static BArchivable
* Instantiate(BMessage
* data
);
66 virtual status_t
Archive(BMessage
* data
, bool deep
= true) const;
68 virtual void GetContentSize(float* width
, float* height
);
69 virtual void DrawContent();
70 virtual void SetMarked(bool mark
);
72 virtual void SetIcon(BBitmap
* icon
);
73 BBitmap
* Icon() const { return fDeviceIcon
; };
75 virtual void SetIconSize(icon_size which
) { fWhich
= which
; };
76 icon_size
IconSize() const { return fWhich
; };
83 typedef PositionPassingMenuItem _inherited
;
87 class ModelMenuItem
: public BMenuItem
{
89 ModelMenuItem(const Model
*, const char* title
, BMessage
*,
90 char shortcut
= '\0', uint32 modifiers
= 0,
91 bool drawText
= true, bool extraPad
= false);
92 ModelMenuItem(const Model
*, BMenu
*, bool drawText
= true,
93 bool extraPad
= false);
94 virtual ~ModelMenuItem();
96 virtual status_t
SetEntry(const BEntry
*);
97 virtual void DrawContent();
98 virtual void Highlight(bool isHighlighted
);
99 virtual void GetContentSize(float* width
, float* height
);
101 const Model
* TargetModel() const;
104 virtual status_t
Invoke(BMessage
* = NULL
);
105 // overriden to support B_OPTION_KEY
115 typedef BMenuItem _inherited
;
120 ModelMenuItem::TargetModel() const
126 class SpecialModelMenuItem
: public ModelMenuItem
{
128 SpecialModelMenuItem(const Model
* model
, BMenu
* menu
);
130 virtual void DrawContent();
133 typedef ModelMenuItem _inherited
;
136 } // namespace BPrivate
138 using BPrivate::IconMenuItem
;
139 using BPrivate::ModelMenuItem
;
140 using BPrivate::SpecialModelMenuItem
;
142 #endif // ICON_MENU_ITEM_H