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.
35 #ifndef _TEXT_WIDGET_H
36 #define _TEXT_WIDGET_H
40 #include "WidgetAttributeText.h"
50 struct MouseUpParams
{
59 BTextWidget(Model
*, BColumn
*, BPoseView
*);
60 virtual ~BTextWidget();
62 void Draw(BRect widgetRect
, BRect widgetTextRect
, float width
, BPoseView
*,
63 bool selected
, uint32 clipboardMode
);
64 void Draw(BRect widgetRect
, BRect widgetTextRect
, float width
, BPoseView
*,
65 BView
* drawView
, bool selected
, uint32 clipboardMode
, BPoint offset
,
67 // second call is used for offscreen drawing, where PoseView
68 // and current drawing view are different
70 void MouseUp(BRect bounds
, BPoseView
*, BPose
*, BPoint mouseLoc
);
72 BRect
CalcRect(BPoint poseLoc
, const BColumn
*, const BPoseView
*);
73 // returns the rect derived from the formatted string width
74 // may force WidgetAttributeText recalculation
75 BRect
CalcClickRect(BPoint poseLoc
, const BColumn
*, const BPoseView
*);
76 // calls CalcRect, if result too narow, returns a wider rect for
78 BRect
ColumnRect(BPoint poseLoc
, const BColumn
*, const BPoseView
*);
79 // returns the rect of the widget in a column, regardless
80 // of the string width; faster than CalcRect
81 BRect
CalcOldRect(BPoint poseLoc
, const BColumn
*, const BPoseView
*);
82 // after an update call this to determine the old rect so that
83 // we can invalidate properly
85 void StartEdit(BRect bounds
, BPoseView
*, BPose
*);
86 void StopEdit(bool saveChanges
, BPoint loc
, BPoseView
*, BPose
*,
89 void SelectAll(BPoseView
* view
);
90 void CheckAndUpdate(BPoint
, const BColumn
*, BPoseView
*, bool visible
);
92 uint32
AttrHash() const;
93 bool IsEditable() const;
94 void SetEditable(bool);
95 bool IsVisible() const;
96 void SetVisible(bool);
97 bool IsActive() const;
100 const char* Text(const BPoseView
* view
) const;
101 // returns the untruncated version of the text
102 float TextWidth(const BPoseView
*) const;
103 float PreferredWidth(const BPoseView
*) const;
104 int Compare(const BTextWidget
&, BPoseView
*) const;
105 // used for sorting in PoseViews
107 void CheckExpiration();
111 BRect
CalcRectCommon(BPoint poseLoc
, const BColumn
*, const BPoseView
*,
114 WidgetAttributeText
* fText
;
116 // TODO: get rid of this
117 alignment fAlignment
;
124 bigtime_t fLastClickedTime
;
125 struct MouseUpParams fParams
;
130 BTextWidget::AttrHash() const
137 BTextWidget::SetEditable(bool on
)
144 BTextWidget::IsEditable() const
146 return fEditable
&& fText
->IsEditable();
151 BTextWidget::IsVisible() const
158 BTextWidget::SetVisible(bool on
)
165 BTextWidget::IsActive() const
172 BTextWidget::SetActive(bool on
)
179 BTextWidget::Draw(BRect widgetRect
, BRect widgetTextRect
, float width
,
180 BPoseView
* view
, bool selected
, uint32 clipboardMode
)
182 Draw(widgetRect
, widgetTextRect
, width
, view
, (BView
*)view
, selected
,
183 clipboardMode
, BPoint(0, 0), true);
186 } // namespace BPrivate
188 using namespace BPrivate
;
191 #endif // _TEXT_WIDGET_H