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 _DIALOG_PANE_H
35 #define _DIALOG_PANE_H
39 #include <ObjectList.h>
44 class ViewList
: public BObjectList
<BView
> {
48 BObjectList
<BView
>(5, true)
52 void RemoveAll(BView
* fromParent
);
53 void AddAll(BView
* toParent
);
57 class DialogPane
: public BView
{
58 // dialog with collapsible panes
60 DialogPane(BRect mode1Frame
, BRect mode2Frame
,
61 int32 initialMode
, const char* name
,
63 = B_FOLLOW_LEFT
| B_FOLLOW_TOP
,
64 uint32 flags
= B_WILL_DRAW
);
65 DialogPane(BRect mode1Frame
, BRect mode2Frame
,
66 BRect mode3Frame
, int32 initialMode
,
67 const char* name
, uint32 followFlags
68 = B_FOLLOW_LEFT
| B_FOLLOW_TOP
,
69 uint32 flags
= B_WILL_DRAW
);
71 virtual ~DialogPane();
73 BRect
FrameForMode(int32
);
74 BRect
BoundsForMode(int32
);
77 virtual void SetMode(int32
, bool initialSetup
= false);
79 void AddItem(BView
*, int32 toMode
);
81 void SetSwitch(BControl
*);
83 virtual void AttachedToWindow();
86 void ResizeParentWindow(int32 from
, int32 to
);
87 static BRect
FrameForMode(int32
, BRect
, BRect
, BRect
);
88 // called only by the constructor
90 virtual void MessageReceived(BMessage
* message
);
100 ViewList fMode3Items
;
103 typedef BView _inherited
;
108 DialogPane::Mode() const
114 class PaneSwitch
: public BControl
{
116 PaneSwitch(BRect frame
, const char* name
,
117 bool leftAligned
= true,
119 = B_FOLLOW_LEFT
| B_FOLLOW_TOP
,
120 uint32 flags
= B_WILL_DRAW
| B_NAVIGABLE
);
122 PaneSwitch(const char* name
,
123 bool leftAligned
= true,
124 uint32 flags
= B_WILL_DRAW
| B_NAVIGABLE
);
126 virtual ~PaneSwitch();
128 virtual void Draw(BRect updateRect
);
129 virtual void MouseDown(BPoint where
);
131 virtual void GetPreferredSize(float* _width
,
134 virtual BSize
MinSize();
135 virtual BSize
MaxSize();
136 virtual BSize
PreferredSize();
138 void SetLabels(const char* labelOn
,
139 const char* labelOff
);
142 void DoneTracking(BPoint where
);
143 void Track(BPoint where
, uint32
);
151 virtual void DrawInState(PaneSwitch::State state
);
160 static const int32 sLatchSize
= 11;
163 } // namespace BPrivate
165 using namespace BPrivate
;
168 #endif // _DIALOG_PANE_H