btrfs: Attempt to fix GCC2 build.
[haiku.git] / src / kits / tracker / TextWidget.h
blobb1c3134a61da9ab1d85ffdd2292b9718db5a8e9c
1 /*
2 Open Tracker License
4 Terms and Conditions
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.
32 All rights reserved.
35 #ifndef _TEXT_WIDGET_H
36 #define _TEXT_WIDGET_H
39 #include "Model.h"
40 #include "WidgetAttributeText.h"
43 namespace BPrivate {
45 class BPose;
46 class BPoseView;
47 class BColumn;
50 struct MouseUpParams {
51 BPose* pose;
52 BRect bounds;
53 BPoseView* poseView;
57 class BTextWidget {
58 public:
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,
66 bool direct);
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
77 // easy clicking
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*,
87 int32 index);
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;
98 void SetActive(bool);
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();
108 void CancelWait();
110 private:
111 BRect CalcRectCommon(BPoint poseLoc, const BColumn*, const BPoseView*,
112 float width);
114 WidgetAttributeText* fText;
115 uint32 fAttrHash;
116 // TODO: get rid of this
117 alignment fAlignment;
119 bool fEditable : 1;
120 bool fVisible : 1;
121 bool fActive : 1;
122 bool fSymLink : 1;
124 bigtime_t fLastClickedTime;
125 struct MouseUpParams fParams;
129 inline uint32
130 BTextWidget::AttrHash() const
132 return fAttrHash;
136 inline void
137 BTextWidget::SetEditable(bool on)
139 fEditable = on;
143 inline bool
144 BTextWidget::IsEditable() const
146 return fEditable && fText->IsEditable();
150 inline bool
151 BTextWidget::IsVisible() const
153 return fVisible;
157 inline void
158 BTextWidget::SetVisible(bool on)
160 fVisible = on;
164 inline bool
165 BTextWidget::IsActive() const
167 return fActive;
171 inline void
172 BTextWidget::SetActive(bool on)
174 fActive = on;
178 inline void
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