1/*
2Open Tracker License
3
4Terms and Conditions
5
6Copyright (c) 1991-2000, Be Incorporated. All rights reserved.
7
8Permission is hereby granted, free of charge, to any person obtaining a copy of
9this software and associated documentation files (the "Software"), to deal in
10the Software without restriction, including without limitation the rights to
11use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
12of the Software, and to permit persons to whom the Software is furnished to do
13so, subject to the following conditions:
14
15The above copyright notice and this permission notice applies to all licensees
16and shall be included in all copies or substantial portions of the Software.
17
18THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF TITLE, MERCHANTABILITY,
20FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21BE INCORPORATED BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
22AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION
23WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24
25Except as contained in this notice, the name of Be Incorporated shall not be
26used in advertising or otherwise to promote the sale, use or other dealings in
27this Software without prior written authorization from Be Incorporated.
28
29Tracker(TM), Be(R), BeOS(R), and BeIA(TM) are trademarks or registered trademarks
30of Be Incorporated in the United States and other countries. Other brand product
31names are registered trademarks or trademarks of their respective holders.
32All 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
46class BNodeInfo;
47
48namespace BPrivate {
49
50const bigtime_t kSynchMenuInvokeTimeout = 5000000;
51
52class 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
72private:
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
84class 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
116inline const Model*
117ModelMenuItem::TargetModel() const
118{
119	 return &fModel;
120}
121
122
123class 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
135using BPrivate::IconMenuItem;
136using BPrivate::ModelMenuItem;
137using BPrivate::SpecialModelMenuItem;
138
139#endif	// ICON_MENU_ITEM_H
140