-rw-r--r-- | kaddressbook/views/cardview.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kaddressbook/views/cardview.cpp b/kaddressbook/views/cardview.cpp index da552c3..03df444 100644 --- a/kaddressbook/views/cardview.cpp +++ b/kaddressbook/views/cardview.cpp | |||
@@ -1,1722 +1,1722 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KAddressBook. | 2 | This file is part of KAddressBook. |
3 | Copyright (c) 2002 Mike Pilone <mpilone@slac.com> | 3 | Copyright (c) 2002 Mike Pilone <mpilone@slac.com> |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | */ | 22 | */ |
23 | 23 | ||
24 | //BEGIN Includes | 24 | //BEGIN Includes |
25 | #include "cardview.h" | 25 | #include "cardview.h" |
26 | 26 | ||
27 | #include <limits.h> | 27 | #include <limits.h> |
28 | 28 | ||
29 | #include <qpainter.h> | 29 | #include <qpainter.h> |
30 | #include <qtimer.h> | 30 | #include <qtimer.h> |
31 | #include <qdatetime.h> | 31 | #include <qdatetime.h> |
32 | #include <qlabel.h> | 32 | #include <qlabel.h> |
33 | #include <qstyle.h> | 33 | #include <qstyle.h> |
34 | #include <qcursor.h> | 34 | #include <qcursor.h> |
35 | #include <qtooltip.h> | 35 | #include <qtooltip.h> |
36 | 36 | ||
37 | #include "kabprefs.h" | 37 | #include "kabprefs.h" |
38 | #include <kdebug.h> | 38 | #include <kdebug.h> |
39 | #include <kglobalsettings.h> | 39 | #include <kglobalsettings.h> |
40 | //END includes | 40 | //END includes |
41 | 41 | ||
42 | #define MIN_ITEM_WIDTH 80 | 42 | #define MIN_ITEM_WIDTH 80 |
43 | 43 | ||
44 | //BEGIN Helpers | 44 | //BEGIN Helpers |
45 | ////////////////////////////////////// | 45 | ////////////////////////////////////// |
46 | // CardViewTip | 46 | // CardViewTip |
47 | class CardViewTip : public QLabel { | 47 | class CardViewTip : public QLabel { |
48 | public: | 48 | public: |
49 | CardViewTip(QWidget *parent=0, const char *name=0) : QLabel( parent, name ) | 49 | CardViewTip(QWidget *parent=0, const char *name=0) : QLabel( parent, name ) |
50 | { | 50 | { |
51 | setPalette( QToolTip::palette() ); | 51 | setPalette( QToolTip::palette() ); |
52 | setFrameStyle( Panel|Plain ); | 52 | setFrameStyle( Panel|Plain ); |
53 | setMidLineWidth(0); | 53 | setMidLineWidth(0); |
54 | setIndent(1); | 54 | setIndent(1); |
55 | } | 55 | } |
56 | 56 | ||
57 | ~CardViewTip() {}; | 57 | ~CardViewTip() {}; |
58 | protected: | 58 | protected: |
59 | void leaveEvent( QEvent * ) | 59 | void leaveEvent( QEvent * ) |
60 | { | 60 | { |
61 | hide(); | 61 | hide(); |
62 | } | 62 | } |
63 | }; | 63 | }; |
64 | 64 | ||
65 | ////////////////////////////////////// | 65 | ////////////////////////////////////// |
66 | // CardViewItemList | 66 | // CardViewItemList |
67 | 67 | ||
68 | 68 | ||
69 | // | 69 | // |
70 | // Warning: make sure you use findRef() instead of find() to find an | 70 | // Warning: make sure you use findRef() instead of find() to find an |
71 | // item! Only the pointer value is unique in the list. | 71 | // item! Only the pointer value is unique in the list. |
72 | // | 72 | // |
73 | class CardViewItemList : public QPtrList<CardViewItem> | 73 | class CardViewItemList : public QPtrList<CardViewItem> |
74 | { | 74 | { |
75 | protected: | 75 | protected: |
76 | virtual int compareItems(QPtrCollection::Item item1, | 76 | virtual int compareItems(QPtrCollection::Item item1, |
77 | QPtrCollection::Item item2) | 77 | QPtrCollection::Item item2) |
78 | { | 78 | { |
79 | CardViewItem *cItem1 = (CardViewItem*)item1; | 79 | CardViewItem *cItem1 = (CardViewItem*)item1; |
80 | CardViewItem *cItem2 = (CardViewItem*)item2; | 80 | CardViewItem *cItem2 = (CardViewItem*)item2; |
81 | 81 | ||
82 | if ( cItem1 == cItem2 ) | 82 | if ( cItem1 == cItem2 ) |
83 | return 0; | 83 | return 0; |
84 | 84 | ||
85 | if ((cItem1 == 0) || (cItem2 == 0)) | 85 | if ((cItem1 == 0) || (cItem2 == 0)) |
86 | return cItem1 ? -1 : 1; | 86 | return cItem1 ? -1 : 1; |
87 | 87 | ||
88 | if (cItem1->caption() < cItem2->caption()) | 88 | if (cItem1->caption() < cItem2->caption()) |
89 | return -1; | 89 | return -1; |
90 | 90 | ||
91 | else if (cItem1->caption() > cItem2->caption()) | 91 | else if (cItem1->caption() > cItem2->caption()) |
92 | return 1; | 92 | return 1; |
93 | 93 | ||
94 | return 0; | 94 | return 0; |
95 | } | 95 | } |
96 | 96 | ||
97 | private: | 97 | private: |
98 | /*int find( const CardViewItem * ) | 98 | /*int find( const CardViewItem * ) |
99 | { | 99 | { |
100 | qDebug("DON'T USE CardViewItemList::find( item )! Use findRef( item )!"); | 100 | qDebug("DON'T USE CardViewItemList::find( item )! Use findRef( item )!"); |
101 | }*/ | 101 | }*/ |
102 | }; | 102 | }; |
103 | 103 | ||
104 | ////////////////////////////////////// | 104 | ////////////////////////////////////// |
105 | // CardViewSeparator | 105 | // CardViewSeparator |
106 | class CardViewSeparator | 106 | class CardViewSeparator |
107 | { | 107 | { |
108 | friend class CardView; | 108 | friend class CardView; |
109 | 109 | ||
110 | public: | 110 | public: |
111 | CardViewSeparator(CardView *view) | 111 | CardViewSeparator(CardView *view) |
112 | : mView(view) | 112 | : mView(view) |
113 | { | 113 | { |
114 | mRect = QRect(0, 0, view->separatorWidth(), 0); | 114 | mRect = QRect(0, 0, view->separatorWidth(), 0); |
115 | } | 115 | } |
116 | 116 | ||
117 | ~CardViewSeparator() {} | 117 | ~CardViewSeparator() {} |
118 | 118 | ||
119 | void paintSeparator(QPainter *p, QColorGroup &cg) | 119 | void paintSeparator(QPainter *p, QColorGroup &cg) |
120 | { | 120 | { |
121 | p->fillRect(0, 0, mRect.width(), mRect.height(), | 121 | p->fillRect(0, 0, mRect.width(), mRect.height(), |
122 | cg.brush(QColorGroup::Button)); | 122 | cg.brush(QColorGroup::Button)); |
123 | } | 123 | } |
124 | 124 | ||
125 | void repaintSeparator() | 125 | void repaintSeparator() |
126 | { | 126 | { |
127 | mView->repaintContents(mRect); | 127 | mView->repaintContents(mRect); |
128 | } | 128 | } |
129 | 129 | ||
130 | private: | 130 | private: |
131 | CardView *mView; | 131 | CardView *mView; |
132 | QRect mRect; | 132 | QRect mRect; |
133 | }; | 133 | }; |
134 | 134 | ||
135 | //END Helpers | 135 | //END Helpers |
136 | 136 | ||
137 | //BEGIN Private Data | 137 | //BEGIN Private Data |
138 | 138 | ||
139 | class CardViewPrivate | 139 | class CardViewPrivate |
140 | { | 140 | { |
141 | public: | 141 | public: |
142 | CardViewPrivate() | 142 | CardViewPrivate() |
143 | : mSelectionMode( CardView::Multi ), | 143 | : mSelectionMode( CardView::Multi ), |
144 | mDrawCardBorder( true ), | 144 | mDrawCardBorder( true ), |
145 | mDrawFieldLabels( true ), | 145 | mDrawFieldLabels( true ), |
146 | mDrawSeparators( true), | 146 | mDrawSeparators( true), |
147 | mSepWidth( 2 ), | 147 | mSepWidth( 2 ), |
148 | mShowEmptyFields( false ), | 148 | mShowEmptyFields( false ), |
149 | mLayoutDirty( true ), | 149 | mLayoutDirty( true ), |
150 | mLastClickOnItem( false ), | 150 | mLastClickOnItem( false ), |
151 | mItemMargin( 0 ), | 151 | mItemMargin( 0 ), |
152 | mItemSpacing( 10 ), | 152 | mItemSpacing( 10 ), |
153 | mItemWidth( 200 ), | 153 | mItemWidth( 200 ), |
154 | mMaxFieldLines( INT_MAX ), | 154 | mMaxFieldLines( INT_MAX ), |
155 | mCurrentItem( 0L ), | 155 | mCurrentItem( 0L ), |
156 | mLastClickPos( QPoint(0, 0) ), | 156 | mLastClickPos( QPoint(0, 0) ), |
157 | mResizeAnchor(0), | ||
157 | mRubberBandAnchor( 0 ), | 158 | mRubberBandAnchor( 0 ), |
158 | mCompText( QString::null ), | 159 | mCompText( QString::null ) |
159 | mResizeAnchor(0) | ||
160 | {}; | 160 | {}; |
161 | 161 | ||
162 | CardViewItemList mItemList; | 162 | CardViewItemList mItemList; |
163 | QPtrList<CardViewSeparator> mSeparatorList; | 163 | QPtrList<CardViewSeparator> mSeparatorList; |
164 | QFontMetrics *mFm; | 164 | QFontMetrics *mFm; |
165 | QFontMetrics *mBFm; // bold font | 165 | QFontMetrics *mBFm; // bold font |
166 | QFont mHeaderFont; // custom header font | 166 | QFont mHeaderFont; // custom header font |
167 | CardView::SelectionMode mSelectionMode; | 167 | CardView::SelectionMode mSelectionMode; |
168 | bool mDrawCardBorder; | 168 | bool mDrawCardBorder; |
169 | bool mDrawFieldLabels; | 169 | bool mDrawFieldLabels; |
170 | bool mDrawSeparators; | 170 | bool mDrawSeparators; |
171 | int mSepWidth; | 171 | int mSepWidth; |
172 | bool mShowEmptyFields; | 172 | bool mShowEmptyFields; |
173 | bool mLayoutDirty; | 173 | bool mLayoutDirty; |
174 | bool mLastClickOnItem; | 174 | bool mLastClickOnItem; |
175 | uint mItemMargin; // internal margin in items | 175 | uint mItemMargin; // internal margin in items |
176 | uint mItemSpacing; // spacing between items, column seperators and border | 176 | uint mItemSpacing; // spacing between items, column seperators and border |
177 | int mItemWidth; // width of all items | 177 | int mItemWidth; // width of all items |
178 | uint mMaxFieldLines; // Max lines to dispaly pr field | 178 | uint mMaxFieldLines; // Max lines to dispaly pr field |
179 | CardViewItem *mCurrentItem; | 179 | CardViewItem *mCurrentItem; |
180 | QPoint mLastClickPos; | 180 | QPoint mLastClickPos; |
181 | QTimer *mTimer; // times out if mouse rests for more than 500 msecs | 181 | QTimer *mTimer; // times out if mouse rests for more than 500 msecs |
182 | CardViewTip *mTip; // passed to the item under a resting cursor to display full text | 182 | CardViewTip *mTip; // passed to the item under a resting cursor to display full text |
183 | bool mOnSeparator; // set/reset on mouse movement | 183 | bool mOnSeparator; // set/reset on mouse movement |
184 | // for resizing by dragging the separators | 184 | // for resizing by dragging the separators |
185 | int mResizeAnchor; // uint, ulong? the mouse down separator left | 185 | int mResizeAnchor; // uint, ulong? the mouse down separator left |
186 | int mRubberBandAnchor; // for erasing rubber bands | 186 | int mRubberBandAnchor; // for erasing rubber bands |
187 | // data used for resizing. | 187 | // data used for resizing. |
188 | // as they are beeded by each mouse move while resizing, we store them here, | 188 | // as they are beeded by each mouse move while resizing, we store them here, |
189 | // saving 8 calculations in each mouse move. | 189 | // saving 8 calculations in each mouse move. |
190 | int colspace; // amount of space between items pr column | 190 | int colspace; // amount of space between items pr column |
191 | uint first; // the first col to anchor at for painting rubber bands | 191 | uint first; // the first col to anchor at for painting rubber bands |
192 | int firstX; // X position of first in pixel | 192 | int firstX; // X position of first in pixel |
193 | int pressed; // the colummn that was pressed on at resizing start | 193 | int pressed; // the colummn that was pressed on at resizing start |
194 | int span; // pressed - first | 194 | int span; // pressed - first |
195 | // key completion | 195 | // key completion |
196 | QString mCompText; // current completion string | 196 | QString mCompText; // current completion string |
197 | QDateTime mCompUpdated; // ...was updated at this time | 197 | QDateTime mCompUpdated; // ...was updated at this time |
198 | }; | 198 | }; |
199 | 199 | ||
200 | class CardViewItemPrivate | 200 | class CardViewItemPrivate |
201 | { | 201 | { |
202 | public: | 202 | public: |
203 | CardViewItemPrivate() : | 203 | CardViewItemPrivate() : |
204 | x( 0 ), | 204 | mSelected( false ), |
205 | y( 0 ), | 205 | x( 0 ), |
206 | mSelected( false ){}; | 206 | y( 0 ){}; |
207 | 207 | ||
208 | 208 | ||
209 | QString mCaption; | 209 | QString mCaption; |
210 | QPtrList< CardViewItem::Field > mFieldList; | 210 | QPtrList< CardViewItem::Field > mFieldList; |
211 | bool mSelected; | 211 | bool mSelected; |
212 | int x; // horizontal position, set by the view | 212 | int x; // horizontal position, set by the view |
213 | int y; // vertical position, set by the view | 213 | int y; // vertical position, set by the view |
214 | int maxLabelWidth; // the width of the widest label, according to the view font. | 214 | int maxLabelWidth; // the width of the widest label, according to the view font. |
215 | int hcache; // height cache | 215 | int hcache; // height cache |
216 | }; | 216 | }; |
217 | //END Private Data | 217 | //END Private Data |
218 | 218 | ||
219 | //BEGIN CardViewItem | 219 | //BEGIN CardViewItem |
220 | 220 | ||
221 | CardViewItem::CardViewItem(CardView *parent, QString caption) | 221 | CardViewItem::CardViewItem(CardView *parent, QString caption) |
222 | : d(new CardViewItemPrivate()), mView(parent) | 222 | : d(new CardViewItemPrivate()), mView(parent) |
223 | { | 223 | { |
224 | d->mCaption = caption; | 224 | d->mCaption = caption; |
225 | 225 | ||
226 | initialize(); | 226 | initialize(); |
227 | } | 227 | } |
228 | 228 | ||
229 | CardViewItem::~CardViewItem() | 229 | CardViewItem::~CardViewItem() |
230 | { | 230 | { |
231 | // Remove ourself from the view | 231 | // Remove ourself from the view |
232 | if (mView != 0) | 232 | if (mView != 0) |
233 | mView->takeItem(this); | 233 | mView->takeItem(this); |
234 | 234 | ||
235 | delete d; | 235 | delete d; |
236 | d = 0; | 236 | d = 0; |
237 | } | 237 | } |
238 | 238 | ||
239 | void CardViewItem::initialize() | 239 | void CardViewItem::initialize() |
240 | { | 240 | { |
241 | d->mSelected = false; | 241 | d->mSelected = false; |
242 | d->mFieldList.setAutoDelete(true); | 242 | d->mFieldList.setAutoDelete(true); |
243 | d->maxLabelWidth = 0; | 243 | d->maxLabelWidth = 0; |
244 | d->hcache=0; | 244 | d->hcache=0; |
245 | 245 | ||
246 | //calcRect(); | 246 | //calcRect(); |
247 | 247 | ||
248 | // Add ourself to the view | 248 | // Add ourself to the view |
249 | if (mView != 0) | 249 | if (mView != 0) |
250 | mView->insertItem(this); | 250 | mView->insertItem(this); |
251 | } | 251 | } |
252 | 252 | ||
253 | void CardViewItem::paintCard(QPainter *p, QColorGroup &cg) | 253 | void CardViewItem::paintCard(QPainter *p, QColorGroup &cg) |
254 | { | 254 | { |
255 | 255 | ||
256 | if (!mView) | 256 | if (!mView) |
257 | return; | 257 | return; |
258 | 258 | ||
259 | QPen pen; | 259 | QPen pen; |
260 | QBrush brush; | 260 | QBrush brush; |
261 | QFontMetrics fm = *(mView->d->mFm); | 261 | QFontMetrics fm = *(mView->d->mFm); |
262 | QFontMetrics bFm = *(mView->d->mBFm); | 262 | QFontMetrics bFm = *(mView->d->mBFm); |
263 | bool drawLabels = mView->d->mDrawFieldLabels; | 263 | bool drawLabels = mView->d->mDrawFieldLabels; |
264 | bool drawBorder = mView->d->mDrawCardBorder; | 264 | bool drawBorder = mView->d->mDrawCardBorder; |
265 | int mg = mView->itemMargin(); | 265 | int mg = mView->itemMargin(); |
266 | int w = mView->itemWidth() - (mg*2); | 266 | int w = mView->itemWidth() - (mg*2); |
267 | int h = height() - (mg*2); | 267 | int h = height() - (mg*2); |
268 | const int colonWidth( fm.width(":") ); | 268 | const int colonWidth( fm.width(":") ); |
269 | int labelXPos = 2 + mg; | 269 | int labelXPos = 2 + mg; |
270 | int labelWidth = QMIN( w/2 - 4 - mg, d->maxLabelWidth + colonWidth + 4 ); | 270 | int labelWidth = QMIN( w/2 - 4 - mg, d->maxLabelWidth + colonWidth + 4 ); |
271 | int valueXPos = labelWidth + 4 + mg; | 271 | int valueXPos = labelWidth + 4 + mg; |
272 | int valueWidth = w - labelWidth - 4 - mg; | 272 | int valueWidth = w - labelWidth - 4 - mg; |
273 | 273 | ||
274 | p->setFont( mView->font() ); | 274 | p->setFont( mView->font() ); |
275 | labelWidth -= colonWidth; // extra space for the colon | 275 | labelWidth -= colonWidth; // extra space for the colon |
276 | 276 | ||
277 | if (!drawLabels) | 277 | if (!drawLabels) |
278 | { | 278 | { |
279 | valueXPos = labelXPos; | 279 | valueXPos = labelXPos; |
280 | valueWidth = w - 4; | 280 | valueWidth = w - 4; |
281 | } | 281 | } |
282 | 282 | ||
283 | // Draw a simple box | 283 | // Draw a simple box |
284 | if (isSelected()) | 284 | if (isSelected()) |
285 | pen = QPen(cg.highlight(), 1); | 285 | pen = QPen(cg.highlight(), 1); |
286 | else | 286 | else |
287 | pen = QPen(cg.button(), 1); | 287 | pen = QPen(cg.button(), 1); |
288 | p->setPen(pen); | 288 | p->setPen(pen); |
289 | 289 | ||
290 | // Draw the border - this is only draw if the user asks for it. | 290 | // Draw the border - this is only draw if the user asks for it. |
291 | if (drawBorder) | 291 | if (drawBorder) |
292 | p->drawRect( mg, mg, w, h ); | 292 | p->drawRect( mg, mg, w, h ); |
293 | 293 | ||
294 | // set the proper pen color for the caption box | 294 | // set the proper pen color for the caption box |
295 | if (isSelected()) | 295 | if (isSelected()) |
296 | brush = cg.brush(QColorGroup::Highlight); | 296 | brush = cg.brush(QColorGroup::Highlight); |
297 | else | 297 | else |
298 | brush = cg.brush(QColorGroup::Button); | 298 | brush = cg.brush(QColorGroup::Button); |
299 | 299 | ||
300 | p->fillRect(mg, mg, w, 4 + bFm.height(), brush); | 300 | p->fillRect(mg, mg, w, 4 + bFm.height(), brush); |
301 | 301 | ||
302 | // Now paint the caption | 302 | // Now paint the caption |
303 | p->save(); | 303 | p->save(); |
304 | QFont bFont = mView->headerFont(); | 304 | QFont bFont = mView->headerFont(); |
305 | //bFont.setBold(true); | 305 | //bFont.setBold(true); |
306 | p->setFont(bFont); | 306 | p->setFont(bFont); |
307 | if (isSelected()) | 307 | if (isSelected()) |
308 | p->setPen(cg.highlightedText()); | 308 | p->setPen(cg.highlightedText()); |
309 | else | 309 | else |
310 | p->setPen(cg.buttonText()); | 310 | p->setPen(cg.buttonText()); |
311 | p->drawText(2+mg, 2+mg + bFm.ascent()/*bFm.height()*//*-bFm.descent()*//*-bFm.leading()*/, trimString(d->mCaption, w-4, bFm)); | 311 | p->drawText(2+mg, 2+mg + bFm.ascent()/*bFm.height()*//*-bFm.descent()*//*-bFm.leading()*/, trimString(d->mCaption, w-4, bFm)); |
312 | p->restore(); | 312 | p->restore(); |
313 | 313 | ||
314 | // Go through the fields and draw them | 314 | // Go through the fields and draw them |
315 | QPtrListIterator< CardViewItem::Field > iter(d->mFieldList); | 315 | QPtrListIterator< CardViewItem::Field > iter(d->mFieldList); |
316 | QString label, value; | 316 | QString label, value; |
317 | int yPos = mg + 4 + bFm.height()/* + 1*/ + fm.height(); // why the + 1 ??? (anders) | 317 | int yPos = mg + 4 + bFm.height()/* + 1*/ + fm.height(); // why the + 1 ??? (anders) |
318 | p->setPen(cg.text()); | 318 | p->setPen(cg.text()); |
319 | 319 | ||
320 | int fh = fm.height(); | 320 | int fh = fm.height(); |
321 | int cln( 0 ); | 321 | int cln( 0 ); |
322 | QString tmp; | 322 | QString tmp; |
323 | int maxLines = mView->maxFieldLines(); | 323 | int maxLines = mView->maxFieldLines(); |
324 | for (iter.toFirst(); iter.current(); ++iter) | 324 | for (iter.toFirst(); iter.current(); ++iter) |
325 | { | 325 | { |
326 | value = (*iter)->second; | 326 | value = (*iter)->second; |
327 | if ( value.isEmpty() && ! mView->d->mShowEmptyFields ) | 327 | if ( value.isEmpty() && ! mView->d->mShowEmptyFields ) |
328 | continue; | 328 | continue; |
329 | 329 | ||
330 | if (drawLabels) | 330 | if (drawLabels) |
331 | { | 331 | { |
332 | label = trimString((*iter)->first, labelWidth, fm); | 332 | label = trimString((*iter)->first, labelWidth, fm); |
333 | p->drawText(labelXPos, yPos, label + ":"); | 333 | p->drawText(labelXPos, yPos, label + ":"); |
334 | } | 334 | } |
335 | /* US original | 335 | /* US original |
336 | for (cln=0; cln <= maxLines; cln++) | 336 | for (cln=0; cln <= maxLines; cln++) |
337 | { | 337 | { |
338 | tmp = value.section('\n',cln,cln); | 338 | tmp = value.section('\n',cln,cln); |
339 | if ( !tmp.isEmpty() ) p->drawText( valueXPos, yPos + cln*fh, trimString( tmp, valueWidth, fm ) ); | 339 | if ( !tmp.isEmpty() ) p->drawText( valueXPos, yPos + cln*fh, trimString( tmp, valueWidth, fm ) ); |
340 | else break; | 340 | else break; |
341 | } | 341 | } |
342 | */ | 342 | */ |
343 | 343 | ||
344 | //US new implementation | 344 | //US new implementation |
345 | QStringList strlst = QStringList::split('\n', value, true); | 345 | QStringList strlst = QStringList::split('\n', value, true); |
346 | 346 | ||
347 | for (cln=0; cln <= maxLines && cln <= (int)strlst.count(); cln++) | 347 | for (cln=0; cln <= maxLines && cln <= (int)strlst.count(); cln++) |
348 | { | 348 | { |
349 | tmp = strlst[cln]; | 349 | tmp = strlst[cln]; |
350 | 350 | ||
351 | if ( !tmp.isEmpty() ) | 351 | if ( !tmp.isEmpty() ) |
352 | p->drawText( valueXPos, yPos + cln*fh, trimString( tmp, valueWidth, fm ) ); | 352 | p->drawText( valueXPos, yPos + cln*fh, trimString( tmp, valueWidth, fm ) ); |
353 | else | 353 | else |
354 | break; | 354 | break; |
355 | 355 | ||
356 | } | 356 | } |
357 | 357 | ||
358 | if ( cln == 0 ) cln = 1; | 358 | if ( cln == 0 ) cln = 1; |
359 | yPos += cln * fh + 2; | 359 | yPos += cln * fh + 2; |
360 | } | 360 | } |
361 | 361 | ||
362 | // if we are the current item and the view has focus, draw focus rect | 362 | // if we are the current item and the view has focus, draw focus rect |
363 | if ( mView->currentItem() == this && mView->hasFocus() ) | 363 | if ( mView->currentItem() == this && mView->hasFocus() ) |
364 | { | 364 | { |
365 | /*US | 365 | /*US |
366 | mView->style().drawPrimitive( QStyle::PE_FocusRect, p, | 366 | mView->style().drawPrimitive( QStyle::PE_FocusRect, p, |
367 | QRect(0, 0, mView->itemWidth(), h+(2*mg)), cg, | 367 | QRect(0, 0, mView->itemWidth(), h+(2*mg)), cg, |
368 | QStyle::Style_FocusAtBorder, | 368 | QStyle::Style_FocusAtBorder, |
369 | QStyleOption( isSelected() ? cg.highlight() : cg.base() ) ); | 369 | QStyleOption( isSelected() ? cg.highlight() : cg.base() ) ); |
370 | */ | 370 | */ |
371 | 371 | ||
372 | const QColor pHighl = isSelected() ? cg.highlight() : cg.base(); | 372 | const QColor pHighl = isSelected() ? cg.highlight() : cg.base(); |
373 | const QRect r(0, 0, mView->itemWidth(), h+(2*mg)); | 373 | const QRect r(0, 0, mView->itemWidth(), h+(2*mg)); |
374 | #ifndef DESKTOP_VERSION | 374 | #ifndef DESKTOP_VERSION |
375 | mView->style().drawFocusRect(p, r, cg, &pHighl, true); | 375 | mView->style().drawFocusRect(p, r, cg, &pHighl, true); |
376 | #endif | 376 | #endif |
377 | } | 377 | } |
378 | } | 378 | } |
379 | 379 | ||
380 | const QString &CardViewItem::caption() const | 380 | const QString &CardViewItem::caption() const |
381 | { | 381 | { |
382 | return d->mCaption; | 382 | return d->mCaption; |
383 | } | 383 | } |
384 | 384 | ||
385 | 385 | ||
386 | int CardViewItem::height( bool allowCache ) const | 386 | int CardViewItem::height( bool allowCache ) const |
387 | { | 387 | { |
388 | // use cache | 388 | // use cache |
389 | if ( allowCache && d->hcache ) | 389 | if ( allowCache && d->hcache ) |
390 | return d->hcache; | 390 | return d->hcache; |
391 | 391 | ||
392 | // Base height: | 392 | // Base height: |
393 | // 2 for line width | 393 | // 2 for line width |
394 | // 2 for top caption pad | 394 | // 2 for top caption pad |
395 | // 2 for bottom caption pad | 395 | // 2 for bottom caption pad |
396 | // 2 pad for the end | 396 | // 2 pad for the end |
397 | // + 2 times the advised margin | 397 | // + 2 times the advised margin |
398 | int baseHeight = 8 + ( 2 * mView->itemMargin() ); | 398 | int baseHeight = 8 + ( 2 * mView->itemMargin() ); |
399 | 399 | ||
400 | // size of font for each field | 400 | // size of font for each field |
401 | // 2 pad for each field | 401 | // 2 pad for each field |
402 | 402 | ||
403 | // anders: if the view does not show empty fields, check for value | 403 | // anders: if the view does not show empty fields, check for value |
404 | bool sef = mView->showEmptyFields(); | 404 | bool sef = mView->showEmptyFields(); |
405 | int fh = mView->d->mFm->height();//lineSpacing(); // font height | 405 | int fh = mView->d->mFm->height();//lineSpacing(); // font height |
406 | //int sp = QMAX( 0, 2- mView->d->mFm->leading() ); // field spacing NOTE make a property | 406 | //int sp = QMAX( 0, 2- mView->d->mFm->leading() ); // field spacing NOTE make a property |
407 | int fieldHeight = 0; | 407 | int fieldHeight = 0; |
408 | int lines; | 408 | int lines; |
409 | int maxLines( mView->maxFieldLines() ); | 409 | int maxLines( mView->maxFieldLines() ); |
410 | QPtrListIterator< CardViewItem::Field > iter(d->mFieldList); | 410 | QPtrListIterator< CardViewItem::Field > iter(d->mFieldList); |
411 | for (iter.toFirst(); iter.current(); ++iter) | 411 | for (iter.toFirst(); iter.current(); ++iter) |
412 | { | 412 | { |
413 | if ( !sef && (*iter)->second.isEmpty() ) | 413 | if ( !sef && (*iter)->second.isEmpty() ) |
414 | continue; | 414 | continue; |
415 | lines = QMIN( (*iter)->second.contains('\n') + 1, maxLines ); | 415 | lines = QMIN( (*iter)->second.contains('\n') + 1, maxLines ); |
416 | fieldHeight += ( lines * fh ) + 2;//sp; | 416 | fieldHeight += ( lines * fh ) + 2;//sp; |
417 | } | 417 | } |
418 | 418 | ||
419 | // height of caption font (bold) | 419 | // height of caption font (bold) |
420 | fieldHeight += mView->d->mBFm->height(); | 420 | fieldHeight += mView->d->mBFm->height(); |
421 | d->hcache = baseHeight + fieldHeight; | 421 | d->hcache = baseHeight + fieldHeight; |
422 | return d->hcache; | 422 | return d->hcache; |
423 | } | 423 | } |
424 | 424 | ||
425 | bool CardViewItem::isSelected() const | 425 | bool CardViewItem::isSelected() const |
426 | { | 426 | { |
427 | return d->mSelected; | 427 | return d->mSelected; |
428 | } | 428 | } |
429 | 429 | ||
430 | void CardViewItem::setSelected(bool selected) | 430 | void CardViewItem::setSelected(bool selected) |
431 | { | 431 | { |
432 | d->mSelected = selected; | 432 | d->mSelected = selected; |
433 | } | 433 | } |
434 | 434 | ||
435 | void CardViewItem::insertField(const QString &label, const QString &value) | 435 | void CardViewItem::insertField(const QString &label, const QString &value) |
436 | { | 436 | { |
437 | CardViewItem::Field *f = new CardViewItem::Field(label, value); | 437 | CardViewItem::Field *f = new CardViewItem::Field(label, value); |
438 | d->mFieldList.append(f); | 438 | d->mFieldList.append(f); |
439 | d->hcache=0; | 439 | d->hcache=0; |
440 | 440 | ||
441 | if (mView) | 441 | if (mView) |
442 | { | 442 | { |
443 | mView->setLayoutDirty(true); | 443 | mView->setLayoutDirty(true); |
444 | d->maxLabelWidth = QMAX( mView->d->mFm->width( label ), d->maxLabelWidth ); | 444 | d->maxLabelWidth = QMAX( mView->d->mFm->width( label ), d->maxLabelWidth ); |
445 | } | 445 | } |
446 | } | 446 | } |
447 | 447 | ||
448 | void CardViewItem::removeField(const QString &label) | 448 | void CardViewItem::removeField(const QString &label) |
449 | { | 449 | { |
450 | CardViewItem::Field *f; | 450 | CardViewItem::Field *f; |
451 | 451 | ||
452 | QPtrListIterator< CardViewItem::Field > iter(d->mFieldList); | 452 | QPtrListIterator< CardViewItem::Field > iter(d->mFieldList); |
453 | for (iter.toFirst(); iter.current(); ++iter) | 453 | for (iter.toFirst(); iter.current(); ++iter) |
454 | { | 454 | { |
455 | f = *iter; | 455 | f = *iter; |
456 | if (f->first == label) | 456 | if (f->first == label) |
457 | break; | 457 | break; |
458 | } | 458 | } |
459 | 459 | ||
460 | if (*iter) | 460 | if (*iter) |
461 | d->mFieldList.remove(*iter); | 461 | d->mFieldList.remove(*iter); |
462 | d->hcache = 0; | 462 | d->hcache = 0; |
463 | 463 | ||
464 | if (mView) | 464 | if (mView) |
465 | mView->setLayoutDirty(true); | 465 | mView->setLayoutDirty(true); |
466 | } | 466 | } |
467 | 467 | ||
468 | void CardViewItem::clearFields() | 468 | void CardViewItem::clearFields() |
469 | { | 469 | { |
470 | d->mFieldList.clear(); | 470 | d->mFieldList.clear(); |
471 | d->hcache = 0; | 471 | d->hcache = 0; |
472 | 472 | ||
473 | if (mView) | 473 | if (mView) |
474 | mView->setLayoutDirty(true); | 474 | mView->setLayoutDirty(true); |
475 | } | 475 | } |
476 | 476 | ||
477 | QString CardViewItem::trimString(const QString &text, int width, | 477 | QString CardViewItem::trimString(const QString &text, int width, |
478 | QFontMetrics &fm) | 478 | QFontMetrics &fm) |
479 | { | 479 | { |
480 | if (fm.width(text) <= width) | 480 | if (fm.width(text) <= width) |
481 | return text; | 481 | return text; |
482 | 482 | ||
483 | QString dots = "..."; | 483 | QString dots = "..."; |
484 | int dotWidth = fm.width(dots); | 484 | int dotWidth = fm.width(dots); |
485 | QString trimmed; | 485 | QString trimmed; |
486 | int charNum = 0; | 486 | int charNum = 0; |
487 | 487 | ||
488 | while (fm.width(trimmed) + dotWidth < width) | 488 | while (fm.width(trimmed) + dotWidth < width) |
489 | { | 489 | { |
490 | trimmed += text[charNum]; | 490 | trimmed += text[charNum]; |
491 | charNum++; | 491 | charNum++; |
492 | } | 492 | } |
493 | 493 | ||
494 | // Now trim the last char, since it put the width over the top | 494 | // Now trim the last char, since it put the width over the top |
495 | trimmed = trimmed.left(trimmed.length()-1); | 495 | trimmed = trimmed.left(trimmed.length()-1); |
496 | trimmed += dots; | 496 | trimmed += dots; |
497 | 497 | ||
498 | return trimmed; | 498 | return trimmed; |
499 | } | 499 | } |
500 | 500 | ||
501 | CardViewItem *CardViewItem::nextItem() | 501 | CardViewItem *CardViewItem::nextItem() |
502 | { | 502 | { |
503 | CardViewItem *item = 0; | 503 | CardViewItem *item = 0; |
504 | 504 | ||
505 | if (mView) | 505 | if (mView) |
506 | item = mView->itemAfter(this); | 506 | item = mView->itemAfter(this); |
507 | 507 | ||
508 | return item; | 508 | return item; |
509 | } | 509 | } |
510 | 510 | ||
511 | void CardViewItem::repaintCard() | 511 | void CardViewItem::repaintCard() |
512 | { | 512 | { |
513 | if (mView) | 513 | if (mView) |
514 | mView->repaintItem(this); | 514 | mView->repaintItem(this); |
515 | } | 515 | } |
516 | 516 | ||
517 | void CardViewItem::setCaption(const QString &caption) | 517 | void CardViewItem::setCaption(const QString &caption) |
518 | { | 518 | { |
519 | d->mCaption = caption; | 519 | d->mCaption = caption; |
520 | repaintCard(); | 520 | repaintCard(); |
521 | } | 521 | } |
522 | 522 | ||
523 | QString CardViewItem::fieldValue(const QString &label) | 523 | QString CardViewItem::fieldValue(const QString &label) |
524 | { | 524 | { |
525 | QPtrListIterator< CardViewItem::Field > iter(d->mFieldList); | 525 | QPtrListIterator< CardViewItem::Field > iter(d->mFieldList); |
526 | for (iter.toFirst(); iter.current(); ++iter) | 526 | for (iter.toFirst(); iter.current(); ++iter) |
527 | if ((*iter)->first == label) | 527 | if ((*iter)->first == label) |
528 | return (*iter)->second; | 528 | return (*iter)->second; |
529 | 529 | ||
530 | return QString(); | 530 | return QString(); |
531 | } | 531 | } |
532 | 532 | ||
533 | 533 | ||
534 | void CardViewItem::showFullString( const QPoint &itempos, CardViewTip *tip ) | 534 | void CardViewItem::showFullString( const QPoint &itempos, CardViewTip *tip ) |
535 | { | 535 | { |
536 | bool trimmed( false ); | 536 | bool trimmed( false ); |
537 | QString s; | 537 | QString s; |
538 | int mrg = mView->itemMargin(); | 538 | int mrg = mView->itemMargin(); |
539 | int y = mView->d->mBFm->height() + 6 + mrg; | 539 | int y = mView->d->mBFm->height() + 6 + mrg; |
540 | int w = mView->itemWidth() - (2*mrg); | 540 | int w = mView->itemWidth() - (2*mrg); |
541 | int lw; | 541 | int lw; |
542 | bool drawLabels = mView->drawFieldLabels(); | 542 | bool drawLabels = mView->drawFieldLabels(); |
543 | bool isLabel = drawLabels && itempos.x() < w/2 ? true : false; | 543 | bool isLabel = drawLabels && itempos.x() < w/2 ? true : false; |
544 | 544 | ||
545 | if ( itempos.y() < y ) | 545 | if ( itempos.y() < y ) |
546 | { | 546 | { |
547 | if ( itempos.y() < 8 + mrg || itempos.y() > y - 4 ) | 547 | if ( itempos.y() < 8 + mrg || itempos.y() > y - 4 ) |
548 | return; | 548 | return; |
549 | // this is the caption | 549 | // this is the caption |
550 | s = caption(); | 550 | s = caption(); |
551 | trimmed = mView->d->mBFm->width( s ) > w - 4; | 551 | trimmed = mView->d->mBFm->width( s ) > w - 4; |
552 | y = 2 + mrg; | 552 | y = 2 + mrg; |
553 | lw = 0; | 553 | lw = 0; |
554 | isLabel=true; | 554 | isLabel=true; |
555 | } else { | 555 | } else { |
556 | // find the field | 556 | // find the field |
557 | Field *f = fieldAt( itempos ); | 557 | Field *f = fieldAt( itempos ); |
558 | if ( !f || ( !mView->showEmptyFields() && f->second.isEmpty() ) ) | 558 | if ( !f || ( !mView->showEmptyFields() && f->second.isEmpty() ) ) |
559 | return; | 559 | return; |
560 | 560 | ||
561 | // y position: | 561 | // y position: |
562 | // header font height + 4px hader margin + 2px leading + item margin | 562 | // header font height + 4px hader margin + 2px leading + item margin |
563 | // + actual field index * (fontheight + 2px leading) | 563 | // + actual field index * (fontheight + 2px leading) |
564 | int maxLines = mView->maxFieldLines(); | 564 | int maxLines = mView->maxFieldLines(); |
565 | bool se = mView->showEmptyFields(); | 565 | bool se = mView->showEmptyFields(); |
566 | int fh = mView->d->mFm->height(); | 566 | int fh = mView->d->mFm->height(); |
567 | // { | 567 | // { |
568 | Field *_f; | 568 | Field *_f; |
569 | for (_f = d->mFieldList.first(); _f != f; _f = d->mFieldList.next()) | 569 | for (_f = d->mFieldList.first(); _f != f; _f = d->mFieldList.next()) |
570 | if ( se || ! _f->second.isEmpty() ) | 570 | if ( se || ! _f->second.isEmpty() ) |
571 | y += ( QMIN(_f->second.contains('\n')+1, maxLines) * fh ) + 2; | 571 | y += ( QMIN(_f->second.contains('\n')+1, maxLines) * fh ) + 2; |
572 | // } | 572 | // } |
573 | if ( isLabel && itempos.y() > y + fh ) | 573 | if ( isLabel && itempos.y() > y + fh ) |
574 | return; | 574 | return; |
575 | // label or data? | 575 | // label or data? |
576 | s = isLabel ? f->first : f->second; | 576 | s = isLabel ? f->first : f->second; |
577 | // trimmed? | 577 | // trimmed? |
578 | int colonWidth = mView->d->mFm->width(":"); | 578 | int colonWidth = mView->d->mFm->width(":"); |
579 | lw = drawLabels ? // label width | 579 | lw = drawLabels ? // label width |
580 | QMIN( w/2 - 4 - mrg, d->maxLabelWidth + colonWidth + 4 ) : | 580 | QMIN( w/2 - 4 - mrg, d->maxLabelWidth + colonWidth + 4 ) : |
581 | 0; | 581 | 0; |
582 | int mw = isLabel ? lw - colonWidth : w - lw - (mrg*2); // max width for string | 582 | int mw = isLabel ? lw - colonWidth : w - lw - (mrg*2); // max width for string |
583 | if ( isLabel ) | 583 | if ( isLabel ) |
584 | { | 584 | { |
585 | trimmed = mView->d->mFm->width( s ) > mw - colonWidth; | 585 | trimmed = mView->d->mFm->width( s ) > mw - colonWidth; |
586 | } else { | 586 | } else { |
587 | QRect r( mView->d->mFm->boundingRect( 0, 0, INT_MAX, INT_MAX, Qt::AlignTop|Qt::AlignLeft, s ) ); | 587 | QRect r( mView->d->mFm->boundingRect( 0, 0, INT_MAX, INT_MAX, Qt::AlignTop|Qt::AlignLeft, s ) ); |
588 | trimmed = r.width() > mw || r.height()/fh > QMIN(s.contains('\n') + 1, maxLines); | 588 | trimmed = r.width() > mw || r.height()/fh > QMIN(s.contains('\n') + 1, maxLines); |
589 | } | 589 | } |
590 | } | 590 | } |
591 | if ( trimmed ) | 591 | if ( trimmed ) |
592 | { | 592 | { |
593 | tip->setFont( (isLabel && !lw) ? mView->headerFont() : mView->font() ); // if condition is true, a header | 593 | tip->setFont( (isLabel && !lw) ? mView->headerFont() : mView->font() ); // if condition is true, a header |
594 | tip->setText( s ); | 594 | tip->setText( s ); |
595 | tip->adjustSize(); | 595 | tip->adjustSize(); |
596 | // find a proper position | 596 | // find a proper position |
597 | int lx; | 597 | int lx; |
598 | lx = isLabel || !drawLabels ? mrg : lw + mrg + 2 /*-1*/; | 598 | lx = isLabel || !drawLabels ? mrg : lw + mrg + 2 /*-1*/; |
599 | QPoint pnt(mView->contentsToViewport( QPoint(d->x, d->y) )); | 599 | QPoint pnt(mView->contentsToViewport( QPoint(d->x, d->y) )); |
600 | pnt += QPoint(lx, y); | 600 | pnt += QPoint(lx, y); |
601 | if ( pnt.x() < 0 ) | 601 | if ( pnt.x() < 0 ) |
602 | pnt.setX( 0 ); | 602 | pnt.setX( 0 ); |
603 | if ( pnt.x() + tip->width() > mView->visibleWidth() ) | 603 | if ( pnt.x() + tip->width() > mView->visibleWidth() ) |
604 | pnt.setX( mView->visibleWidth() - tip->width() ); | 604 | pnt.setX( mView->visibleWidth() - tip->width() ); |
605 | if ( pnt.y() + tip->height() > mView->visibleHeight() ) | 605 | if ( pnt.y() + tip->height() > mView->visibleHeight() ) |
606 | pnt.setY( QMAX( 0, mView->visibleHeight() - tip->height() ) ); | 606 | pnt.setY( QMAX( 0, mView->visibleHeight() - tip->height() ) ); |
607 | // show | 607 | // show |
608 | tip->move( pnt ); | 608 | tip->move( pnt ); |
609 | tip->show(); | 609 | tip->show(); |
610 | } | 610 | } |
611 | } | 611 | } |
612 | 612 | ||
613 | CardViewItem::Field *CardViewItem::fieldAt( const QPoint & itempos ) const | 613 | CardViewItem::Field *CardViewItem::fieldAt( const QPoint & itempos ) const |
614 | { | 614 | { |
615 | int ypos = mView->d->mBFm->height() + 7 + mView->d->mItemMargin; | 615 | int ypos = mView->d->mBFm->height() + 7 + mView->d->mItemMargin; |
616 | int iy = itempos.y(); | 616 | int iy = itempos.y(); |
617 | // skip below caption | 617 | // skip below caption |
618 | if ( iy <= ypos ) | 618 | if ( iy <= ypos ) |
619 | return 0; | 619 | return 0; |
620 | // try find a field | 620 | // try find a field |
621 | bool showEmpty = mView->showEmptyFields(); | 621 | bool showEmpty = mView->showEmptyFields(); |
622 | int fh = mView->d->mFm->height(); | 622 | int fh = mView->d->mFm->height(); |
623 | int maxLines = mView->maxFieldLines(); | 623 | int maxLines = mView->maxFieldLines(); |
624 | Field *f; | 624 | Field *f; |
625 | for ( f = d->mFieldList.first(); f; f = d->mFieldList.next() ) | 625 | for ( f = d->mFieldList.first(); f; f = d->mFieldList.next() ) |
626 | { | 626 | { |
627 | if ( showEmpty || !f->second.isEmpty() ) | 627 | if ( showEmpty || !f->second.isEmpty() ) |
628 | ypos += ( QMIN( f->second.contains('\n')+1, maxLines ) *fh)+2; | 628 | ypos += ( QMIN( f->second.contains('\n')+1, maxLines ) *fh)+2; |
629 | if ( iy <= ypos ) | 629 | if ( iy <= ypos ) |
630 | break; | 630 | break; |
631 | } | 631 | } |
632 | return f ? f : 0; | 632 | return f ? f : 0; |
633 | } | 633 | } |
634 | //END CardViewItem | 634 | //END CardViewItem |
635 | 635 | ||
636 | //BEGIN CardView | 636 | //BEGIN CardView |
637 | 637 | ||
638 | CardView::CardView(QWidget *parent, const char *name) | 638 | CardView::CardView(QWidget *parent, const char *name) |
639 | : QScrollView(parent, name), | 639 | : QScrollView(parent, name), |
640 | d(new CardViewPrivate()) | 640 | d(new CardViewPrivate()) |
641 | { | 641 | { |
642 | d->mItemList.setAutoDelete(true); | 642 | d->mItemList.setAutoDelete(true); |
643 | d->mSeparatorList.setAutoDelete(true); | 643 | d->mSeparatorList.setAutoDelete(true); |
644 | 644 | ||
645 | QFont f = font(); | 645 | QFont f = font(); |
646 | d->mFm = new QFontMetrics(f); | 646 | d->mFm = new QFontMetrics(f); |
647 | f.setBold(true); | 647 | f.setBold(true); |
648 | d->mHeaderFont = f; | 648 | d->mHeaderFont = f; |
649 | d->mBFm = new QFontMetrics(f); | 649 | d->mBFm = new QFontMetrics(f); |
650 | d->mTip = ( new CardViewTip( viewport() ) ), | 650 | d->mTip = ( new CardViewTip( viewport() ) ), |
651 | d->mTip->hide(); | 651 | d->mTip->hide(); |
652 | d->mTimer = ( new QTimer(this, "mouseTimer") ), | 652 | d->mTimer = ( new QTimer(this, "mouseTimer") ), |
653 | 653 | ||
654 | viewport()->setMouseTracking( true ); | 654 | viewport()->setMouseTracking( true ); |
655 | viewport()->setFocusProxy(this); | 655 | viewport()->setFocusProxy(this); |
656 | viewport()->setFocusPolicy(WheelFocus); | 656 | viewport()->setFocusPolicy(WheelFocus); |
657 | viewport()->setBackgroundMode(PaletteBase); | 657 | viewport()->setBackgroundMode(PaletteBase); |
658 | 658 | ||
659 | connect( d->mTimer, SIGNAL(timeout()), this, SLOT(tryShowFullText()) ); | 659 | connect( d->mTimer, SIGNAL(timeout()), this, SLOT(tryShowFullText()) ); |
660 | 660 | ||
661 | //US setBackgroundMode(PaletteBackground, PaletteBase); | 661 | //US setBackgroundMode(PaletteBackground, PaletteBase); |
662 | setBackgroundMode(PaletteBackground); | 662 | setBackgroundMode(PaletteBackground); |
663 | 663 | ||
664 | // no reason for a vertical scrollbar | 664 | // no reason for a vertical scrollbar |
665 | setVScrollBarMode(AlwaysOff); | 665 | setVScrollBarMode(AlwaysOff); |
666 | } | 666 | } |
667 | 667 | ||
668 | CardView::~CardView() | 668 | CardView::~CardView() |
669 | { | 669 | { |
670 | delete d->mFm; | 670 | delete d->mFm; |
671 | delete d->mBFm; | 671 | delete d->mBFm; |
672 | delete d; | 672 | delete d; |
673 | d = 0; | 673 | d = 0; |
674 | } | 674 | } |
675 | 675 | ||
676 | void CardView::insertItem(CardViewItem *item) | 676 | void CardView::insertItem(CardViewItem *item) |
677 | { | 677 | { |
678 | d->mItemList.inSort(item); | 678 | d->mItemList.inSort(item); |
679 | setLayoutDirty(true); | 679 | setLayoutDirty(true); |
680 | } | 680 | } |
681 | 681 | ||
682 | void CardView::takeItem(CardViewItem *item) | 682 | void CardView::takeItem(CardViewItem *item) |
683 | { | 683 | { |
684 | if ( d->mCurrentItem == item ) | 684 | if ( d->mCurrentItem == item ) |
685 | d->mCurrentItem = item->nextItem(); | 685 | d->mCurrentItem = item->nextItem(); |
686 | d->mItemList.take(d->mItemList.findRef(item)); | 686 | d->mItemList.take(d->mItemList.findRef(item)); |
687 | 687 | ||
688 | setLayoutDirty(true); | 688 | setLayoutDirty(true); |
689 | } | 689 | } |
690 | 690 | ||
691 | void CardView::clear() | 691 | void CardView::clear() |
692 | { | 692 | { |
693 | d->mItemList.clear(); | 693 | d->mItemList.clear(); |
694 | 694 | ||
695 | setLayoutDirty(true); | 695 | setLayoutDirty(true); |
696 | } | 696 | } |
697 | 697 | ||
698 | CardViewItem *CardView::currentItem() | 698 | CardViewItem *CardView::currentItem() |
699 | { | 699 | { |
700 | if ( ! d->mCurrentItem && d->mItemList.count() ) | 700 | if ( ! d->mCurrentItem && d->mItemList.count() ) |
701 | d->mCurrentItem = d->mItemList.first(); | 701 | d->mCurrentItem = d->mItemList.first(); |
702 | return d->mCurrentItem; | 702 | return d->mCurrentItem; |
703 | } | 703 | } |
704 | 704 | ||
705 | void CardView::setCurrentItem( CardViewItem *item ) | 705 | void CardView::setCurrentItem( CardViewItem *item ) |
706 | { | 706 | { |
707 | if ( !item ) | 707 | if ( !item ) |
708 | return; | 708 | return; |
709 | else if ( item->cardView() != this ) | 709 | else if ( item->cardView() != this ) |
710 | { | 710 | { |
711 | kdDebug(5720)<<"CardView::setCurrentItem: Item ("<<item<<") not owned! Backing out.."<<endl; | 711 | kdDebug(5720)<<"CardView::setCurrentItem: Item ("<<item<<") not owned! Backing out.."<<endl; |
712 | return; | 712 | return; |
713 | } | 713 | } |
714 | else if ( item == currentItem() ) | 714 | else if ( item == currentItem() ) |
715 | { | 715 | { |
716 | return; | 716 | return; |
717 | } | 717 | } |
718 | 718 | ||
719 | if ( d->mSelectionMode == Single ) | 719 | if ( d->mSelectionMode == Single ) |
720 | { | 720 | { |
721 | setSelected( item, true ); | 721 | setSelected( item, true ); |
722 | } | 722 | } |
723 | else | 723 | else |
724 | { | 724 | { |
725 | CardViewItem *it = d->mCurrentItem; | 725 | CardViewItem *it = d->mCurrentItem; |
726 | d->mCurrentItem = item; | 726 | d->mCurrentItem = item; |
727 | if ( it ) | 727 | if ( it ) |
728 | it->repaintCard(); | 728 | it->repaintCard(); |
729 | item->repaintCard(); | 729 | item->repaintCard(); |
730 | } | 730 | } |
731 | if ( ! d->mOnSeparator ) | 731 | if ( ! d->mOnSeparator ) |
732 | ensureItemVisible( item ); | 732 | ensureItemVisible( item ); |
733 | emit currentChanged( item ); | 733 | emit currentChanged( item ); |
734 | } | 734 | } |
735 | 735 | ||
736 | CardViewItem *CardView::itemAt(const QPoint &viewPos) | 736 | CardViewItem *CardView::itemAt(const QPoint &viewPos) |
737 | { | 737 | { |
738 | CardViewItem *item = 0; | 738 | CardViewItem *item = 0; |
739 | QPtrListIterator<CardViewItem> iter(d->mItemList); | 739 | QPtrListIterator<CardViewItem> iter(d->mItemList); |
740 | bool found = false; | 740 | bool found = false; |
741 | for (iter.toFirst(); iter.current() && !found; ++iter) | 741 | for (iter.toFirst(); iter.current() && !found; ++iter) |
742 | { | 742 | { |
743 | item = *iter; | 743 | item = *iter; |
744 | //if (item->d->mRect.contains(viewPos)) | 744 | //if (item->d->mRect.contains(viewPos)) |
745 | if (QRect(item->d->x, item->d->y, d->mItemWidth, item->height()).contains(viewPos)) | 745 | if (QRect(item->d->x, item->d->y, d->mItemWidth, item->height()).contains(viewPos)) |
746 | found = true; | 746 | found = true; |
747 | } | 747 | } |
748 | 748 | ||
749 | if (found) | 749 | if (found) |
750 | return item; | 750 | return item; |
751 | 751 | ||
752 | return 0; | 752 | return 0; |
753 | } | 753 | } |
754 | 754 | ||
755 | QRect CardView::itemRect(const CardViewItem *item) | 755 | QRect CardView::itemRect(const CardViewItem *item) |
756 | { | 756 | { |
757 | //return item->d->mRect; | 757 | //return item->d->mRect; |
758 | return QRect(item->d->x, item->d->y, d->mItemWidth, item->height()); | 758 | return QRect(item->d->x, item->d->y, d->mItemWidth, item->height()); |
759 | } | 759 | } |
760 | 760 | ||
761 | void CardView::ensureItemVisible(const CardViewItem *item) | 761 | void CardView::ensureItemVisible(const CardViewItem *item) |
762 | { | 762 | { |
763 | ensureVisible(item->d->x , item->d->y, d->mItemSpacing, 0); | 763 | ensureVisible(item->d->x , item->d->y, d->mItemSpacing, 0); |
764 | ensureVisible(item->d->x + d->mItemWidth, item->d->y, d->mItemSpacing, 0); | 764 | ensureVisible(item->d->x + d->mItemWidth, item->d->y, d->mItemSpacing, 0); |
765 | } | 765 | } |
766 | 766 | ||
767 | void CardView::repaintItem(const CardViewItem *item) | 767 | void CardView::repaintItem(const CardViewItem *item) |
768 | { | 768 | { |
769 | //repaintContents(item->d->mRect); | 769 | //repaintContents(item->d->mRect); |
770 | repaintContents( QRect(item->d->x, item->d->y, d->mItemWidth, item->height()) ); | 770 | repaintContents( QRect(item->d->x, item->d->y, d->mItemWidth, item->height()) ); |
771 | } | 771 | } |
772 | 772 | ||
773 | void CardView::setSelectionMode(CardView::SelectionMode mode) | 773 | void CardView::setSelectionMode(CardView::SelectionMode mode) |
774 | { | 774 | { |
775 | selectAll(false); | 775 | selectAll(false); |
776 | 776 | ||
777 | d->mSelectionMode = mode; | 777 | d->mSelectionMode = mode; |
778 | } | 778 | } |
779 | 779 | ||
780 | CardView::SelectionMode CardView::selectionMode() const | 780 | CardView::SelectionMode CardView::selectionMode() const |
781 | { | 781 | { |
782 | return d->mSelectionMode; | 782 | return d->mSelectionMode; |
783 | } | 783 | } |
784 | 784 | ||
785 | void CardView::selectAll(bool state) | 785 | void CardView::selectAll(bool state) |
786 | { | 786 | { |
787 | QPtrListIterator<CardViewItem> iter(d->mItemList); | 787 | QPtrListIterator<CardViewItem> iter(d->mItemList); |
788 | if (!state) | 788 | if (!state) |
789 | { | 789 | { |
790 | for (iter.toFirst(); iter.current(); ++iter) | 790 | for (iter.toFirst(); iter.current(); ++iter) |
791 | { | 791 | { |
792 | if ((*iter)->isSelected()) | 792 | if ((*iter)->isSelected()) |
793 | { | 793 | { |
794 | (*iter)->setSelected(false); | 794 | (*iter)->setSelected(false); |
795 | (*iter)->repaintCard(); | 795 | (*iter)->repaintCard(); |
796 | } | 796 | } |
797 | } | 797 | } |
798 | //emit selectionChanged(); // WARNING FIXME | 798 | //emit selectionChanged(); // WARNING FIXME |
799 | emit selectionChanged(0); | 799 | emit selectionChanged(0); |
800 | } | 800 | } |
801 | else if (d->mSelectionMode != CardView::Single) | 801 | else if (d->mSelectionMode != CardView::Single) |
802 | { | 802 | { |
803 | for (iter.toFirst(); iter.current(); ++iter) | 803 | for (iter.toFirst(); iter.current(); ++iter) |
804 | { | 804 | { |
805 | (*iter)->setSelected(true); | 805 | (*iter)->setSelected(true); |
806 | } | 806 | } |
807 | 807 | ||
808 | if (d->mItemList.count() > 0) | 808 | if (d->mItemList.count() > 0) |
809 | { | 809 | { |
810 | // emit, since there must have been at least one selected | 810 | // emit, since there must have been at least one selected |
811 | emit selectionChanged(); | 811 | emit selectionChanged(); |
812 | //repaint();//??? | 812 | //repaint();//??? |
813 | viewport()->update(); | 813 | viewport()->update(); |
814 | } | 814 | } |
815 | } | 815 | } |
816 | } | 816 | } |
817 | 817 | ||
818 | void CardView::setSelected(CardViewItem *item, bool selected) | 818 | void CardView::setSelected(CardViewItem *item, bool selected) |
819 | { | 819 | { |
820 | if ((item == 0) || (item->isSelected() == selected)) | 820 | if ((item == 0) || (item->isSelected() == selected)) |
821 | return; | 821 | return; |
822 | 822 | ||
823 | if ( selected && d->mCurrentItem != item ) | 823 | if ( selected && d->mCurrentItem != item ) |
824 | { | 824 | { |
825 | CardViewItem *it = d->mCurrentItem; | 825 | CardViewItem *it = d->mCurrentItem; |
826 | d->mCurrentItem = item; | 826 | d->mCurrentItem = item; |
827 | if ( it ) | 827 | if ( it ) |
828 | it->repaintCard(); | 828 | it->repaintCard(); |
829 | } | 829 | } |
830 | 830 | ||
831 | if (d->mSelectionMode == CardView::Single) | 831 | if (d->mSelectionMode == CardView::Single) |
832 | { | 832 | { |
833 | bool b = signalsBlocked(); | 833 | bool b = signalsBlocked(); |
834 | blockSignals(true); | 834 | blockSignals(true); |
835 | selectAll(false); | 835 | selectAll(false); |
836 | blockSignals(b); | 836 | blockSignals(b); |
837 | 837 | ||
838 | if (selected) | 838 | if (selected) |
839 | { | 839 | { |
840 | item->setSelected(selected); | 840 | item->setSelected(selected); |
841 | item->repaintCard(); | 841 | item->repaintCard(); |
842 | emit selectionChanged(); | 842 | emit selectionChanged(); |
843 | emit selectionChanged(item); | 843 | emit selectionChanged(item); |
844 | } | 844 | } |
845 | else | 845 | else |
846 | { | 846 | { |
847 | emit selectionChanged(); | 847 | emit selectionChanged(); |
848 | emit selectionChanged(0); | 848 | emit selectionChanged(0); |
849 | } | 849 | } |
850 | } | 850 | } |
851 | else if (d->mSelectionMode == CardView::Multi) | 851 | else if (d->mSelectionMode == CardView::Multi) |
852 | { | 852 | { |
853 | item->setSelected(selected); | 853 | item->setSelected(selected); |
854 | item->repaintCard(); | 854 | item->repaintCard(); |
855 | emit selectionChanged(); | 855 | emit selectionChanged(); |
856 | } | 856 | } |
857 | else if (d->mSelectionMode == CardView::Extended) | 857 | else if (d->mSelectionMode == CardView::Extended) |
858 | { | 858 | { |
859 | bool b = signalsBlocked(); | 859 | bool b = signalsBlocked(); |
860 | blockSignals(true); | 860 | blockSignals(true); |
861 | selectAll(false); | 861 | selectAll(false); |
862 | blockSignals(b); | 862 | blockSignals(b); |
863 | 863 | ||
864 | item->setSelected(selected); | 864 | item->setSelected(selected); |
865 | item->repaintCard(); | 865 | item->repaintCard(); |
866 | emit selectionChanged(); | 866 | emit selectionChanged(); |
867 | } | 867 | } |
868 | } | 868 | } |
869 | 869 | ||
870 | bool CardView::isSelected(CardViewItem *item) const | 870 | bool CardView::isSelected(CardViewItem *item) const |
871 | { | 871 | { |
872 | return (item && item->isSelected()); | 872 | return (item && item->isSelected()); |
873 | } | 873 | } |
874 | 874 | ||
875 | CardViewItem *CardView::selectedItem() const | 875 | CardViewItem *CardView::selectedItem() const |
876 | { | 876 | { |
877 | // find the first selected item | 877 | // find the first selected item |
878 | QPtrListIterator<CardViewItem> iter(d->mItemList); | 878 | QPtrListIterator<CardViewItem> iter(d->mItemList); |
879 | for (iter.toFirst(); iter.current(); ++iter) | 879 | for (iter.toFirst(); iter.current(); ++iter) |
880 | { | 880 | { |
881 | if ((*iter)->isSelected()) | 881 | if ((*iter)->isSelected()) |
882 | return *iter; | 882 | return *iter; |
883 | } | 883 | } |
884 | 884 | ||
885 | return 0; | 885 | return 0; |
886 | } | 886 | } |
887 | 887 | ||
888 | CardViewItem *CardView::firstItem() const | 888 | CardViewItem *CardView::firstItem() const |
889 | { | 889 | { |
890 | return d->mItemList.first(); | 890 | return d->mItemList.first(); |
891 | } | 891 | } |
892 | 892 | ||
893 | int CardView::childCount() const | 893 | int CardView::childCount() const |
894 | { | 894 | { |
895 | return d->mItemList.count(); | 895 | return d->mItemList.count(); |
896 | } | 896 | } |
897 | /*US | 897 | /*US |
898 | CardViewItem *CardView::findItem(const QString &text, const QString &label, | 898 | CardViewItem *CardView::findItem(const QString &text, const QString &label, |
899 | Qt::StringComparisonMode compare) | 899 | Qt::StringComparisonMode compare) |
900 | { | 900 | { |
901 | // IF the text is empty, we will return null, since empty text will | 901 | // IF the text is empty, we will return null, since empty text will |
902 | // match anything! | 902 | // match anything! |
903 | if (text.isEmpty()) | 903 | if (text.isEmpty()) |
904 | return 0; | 904 | return 0; |
905 | 905 | ||
906 | QPtrListIterator<CardViewItem> iter(d->mItemList); | 906 | QPtrListIterator<CardViewItem> iter(d->mItemList); |
907 | if (compare & Qt::BeginsWith) | 907 | if (compare & Qt::BeginsWith) |
908 | { | 908 | { |
909 | QString value; | 909 | QString value; |
910 | for (iter.toFirst(); iter.current(); ++iter) | 910 | for (iter.toFirst(); iter.current(); ++iter) |
911 | { | 911 | { |
912 | value = (*iter)->fieldValue(label).upper(); | 912 | value = (*iter)->fieldValue(label).upper(); |
913 | if (value.startsWith(text.upper())) | 913 | if (value.startsWith(text.upper())) |
914 | return *iter; | 914 | return *iter; |
915 | } | 915 | } |
916 | } | 916 | } |
917 | else | 917 | else |
918 | { | 918 | { |
919 | kdDebug(5720) << "CardView::findItem: search method not implemented" << endl; | 919 | kdDebug(5720) << "CardView::findItem: search method not implemented" << endl; |
920 | } | 920 | } |
921 | 921 | ||
922 | return 0; | 922 | return 0; |
923 | } | 923 | } |
924 | */ | 924 | */ |
925 | 925 | ||
926 | uint CardView::columnWidth() | 926 | uint CardView::columnWidth() |
927 | { | 927 | { |
928 | return d->mDrawSeparators ? | 928 | return d->mDrawSeparators ? |
929 | d->mItemWidth + ( 2 * d->mItemSpacing ) + d->mSepWidth : | 929 | d->mItemWidth + ( 2 * d->mItemSpacing ) + d->mSepWidth : |
930 | d->mItemWidth + d->mItemSpacing; | 930 | d->mItemWidth + d->mItemSpacing; |
931 | } | 931 | } |
932 | 932 | ||
933 | void CardView::drawContents(QPainter *p, int clipx, int clipy, | 933 | void CardView::drawContents(QPainter *p, int clipx, int clipy, |
934 | int clipw, int cliph) | 934 | int clipw, int cliph) |
935 | { | 935 | { |
936 | QScrollView::drawContents(p, clipx, clipy, clipw, cliph); | 936 | QScrollView::drawContents(p, clipx, clipy, clipw, cliph); |
937 | 937 | ||
938 | if (d->mLayoutDirty) | 938 | if (d->mLayoutDirty) |
939 | calcLayout(); | 939 | calcLayout(); |
940 | 940 | ||
941 | //kdDebug() << "CardView::drawContents: " << clipx << ", " << clipy | 941 | //kdDebug() << "CardView::drawContents: " << clipx << ", " << clipy |
942 | // << ", " << clipw << ", " << cliph << endl; | 942 | // << ", " << clipw << ", " << cliph << endl; |
943 | 943 | ||
944 | QColorGroup cg = viewport()->palette().active(); // allow setting costum colors in the viewport pale | 944 | QColorGroup cg = viewport()->palette().active(); // allow setting costum colors in the viewport pale |
945 | 945 | ||
946 | QRect clipRect(clipx, clipy, clipw, cliph); | 946 | QRect clipRect(clipx, clipy, clipw, cliph); |
947 | QRect cardRect; | 947 | QRect cardRect; |
948 | QRect sepRect; | 948 | QRect sepRect; |
949 | CardViewItem *item; | 949 | CardViewItem *item; |
950 | CardViewSeparator *sep; | 950 | CardViewSeparator *sep; |
951 | 951 | ||
952 | // make sure the viewport is a pure background | 952 | // make sure the viewport is a pure background |
953 | viewport()->erase(clipRect); | 953 | viewport()->erase(clipRect); |
954 | 954 | ||
955 | // Now tell the cards to draw, if they are in the clip region | 955 | // Now tell the cards to draw, if they are in the clip region |
956 | QPtrListIterator<CardViewItem> iter(d->mItemList); | 956 | QPtrListIterator<CardViewItem> iter(d->mItemList); |
957 | for (iter.toFirst(); iter.current(); ++iter) | 957 | for (iter.toFirst(); iter.current(); ++iter) |
958 | { | 958 | { |
959 | item = *iter; | 959 | item = *iter; |
960 | cardRect.setRect( item->d->x, item->d->y, d->mItemWidth, item->height() ); | 960 | cardRect.setRect( item->d->x, item->d->y, d->mItemWidth, item->height() ); |
961 | 961 | ||
962 | if (clipRect.intersects(cardRect) || clipRect.contains(cardRect)) | 962 | if (clipRect.intersects(cardRect) || clipRect.contains(cardRect)) |
963 | { | 963 | { |
964 | //kdDebug() << "\trepainting card at: " << cardRect.x() << ", " | 964 | //kdDebug() << "\trepainting card at: " << cardRect.x() << ", " |
965 | // << cardRect.y() << endl; | 965 | // << cardRect.y() << endl; |
966 | 966 | ||
967 | // Tell the card to paint | 967 | // Tell the card to paint |
968 | p->save(); | 968 | p->save(); |
969 | p->translate(cardRect.x(), cardRect.y()); | 969 | p->translate(cardRect.x(), cardRect.y()); |
970 | item->paintCard(p, cg); | 970 | item->paintCard(p, cg); |
971 | p->restore(); | 971 | p->restore(); |
972 | } | 972 | } |
973 | } | 973 | } |
974 | 974 | ||
975 | // Followed by the separators if they are in the clip region | 975 | // Followed by the separators if they are in the clip region |
976 | QPtrListIterator<CardViewSeparator> sepIter(d->mSeparatorList); | 976 | QPtrListIterator<CardViewSeparator> sepIter(d->mSeparatorList); |
977 | for (sepIter.toFirst(); sepIter.current(); ++sepIter) | 977 | for (sepIter.toFirst(); sepIter.current(); ++sepIter) |
978 | { | 978 | { |
979 | sep = *sepIter; | 979 | sep = *sepIter; |
980 | sepRect = sep->mRect; | 980 | sepRect = sep->mRect; |
981 | 981 | ||
982 | if (clipRect.intersects(sepRect) || clipRect.contains(sepRect)) | 982 | if (clipRect.intersects(sepRect) || clipRect.contains(sepRect)) |
983 | { | 983 | { |
984 | p->save(); | 984 | p->save(); |
985 | p->translate(sepRect.x(), sepRect.y()); | 985 | p->translate(sepRect.x(), sepRect.y()); |
986 | sep->paintSeparator(p, cg); | 986 | sep->paintSeparator(p, cg); |
987 | p->restore(); | 987 | p->restore(); |
988 | } | 988 | } |
989 | } | 989 | } |
990 | } | 990 | } |
991 | 991 | ||
992 | void CardView::resizeEvent(QResizeEvent *e) | 992 | void CardView::resizeEvent(QResizeEvent *e) |
993 | { | 993 | { |
994 | QScrollView::resizeEvent(e); | 994 | QScrollView::resizeEvent(e); |
995 | 995 | ||
996 | setLayoutDirty(true); | 996 | setLayoutDirty(true); |
997 | } | 997 | } |
998 | 998 | ||
999 | void CardView::calcLayout() | 999 | void CardView::calcLayout() |
1000 | { | 1000 | { |
1001 | //kdDebug() << "CardView::calcLayout:" << endl; | 1001 | //kdDebug() << "CardView::calcLayout:" << endl; |
1002 | 1002 | ||
1003 | // Start in the upper left corner and layout all the | 1003 | // Start in the upper left corner and layout all the |
1004 | // cars using their height and width | 1004 | // cars using their height and width |
1005 | int maxWidth = 0; | 1005 | int maxWidth = 0; |
1006 | int maxHeight = 0; | 1006 | int maxHeight = 0; |
1007 | int xPos = 0; | 1007 | int xPos = 0; |
1008 | int yPos = 0; | 1008 | int yPos = 0; |
1009 | int cardSpacing = d->mItemSpacing; | 1009 | int cardSpacing = d->mItemSpacing; |
1010 | 1010 | ||
1011 | // delete the old separators | 1011 | // delete the old separators |
1012 | d->mSeparatorList.clear(); | 1012 | d->mSeparatorList.clear(); |
1013 | 1013 | ||
1014 | QPtrListIterator<CardViewItem> iter(d->mItemList); | 1014 | QPtrListIterator<CardViewItem> iter(d->mItemList); |
1015 | CardViewItem *item = 0; | 1015 | CardViewItem *item = 0; |
1016 | CardViewSeparator *sep = 0; | 1016 | CardViewSeparator *sep = 0; |
1017 | xPos += cardSpacing; | 1017 | xPos += cardSpacing; |
1018 | 1018 | ||
1019 | for (iter.toFirst(); iter.current(); ++iter) | 1019 | for (iter.toFirst(); iter.current(); ++iter) |
1020 | { | 1020 | { |
1021 | item = *iter; | 1021 | item = *iter; |
1022 | 1022 | ||
1023 | yPos += cardSpacing; | 1023 | yPos += cardSpacing; |
1024 | 1024 | ||
1025 | if (yPos + item->height() + cardSpacing >= height() - horizontalScrollBar()->height()) | 1025 | if (yPos + item->height() + cardSpacing >= height() - horizontalScrollBar()->height()) |
1026 | { | 1026 | { |
1027 | maxHeight = QMAX(maxHeight, yPos); | 1027 | maxHeight = QMAX(maxHeight, yPos); |
1028 | 1028 | ||
1029 | // Drawing in this column would be greater than the height | 1029 | // Drawing in this column would be greater than the height |
1030 | // of the scroll view, so move to next column | 1030 | // of the scroll view, so move to next column |
1031 | yPos = cardSpacing; | 1031 | yPos = cardSpacing; |
1032 | xPos += cardSpacing + maxWidth; | 1032 | xPos += cardSpacing + maxWidth; |
1033 | if (d->mDrawSeparators) | 1033 | if (d->mDrawSeparators) |
1034 | { | 1034 | { |
1035 | // Create a separator since the user asked | 1035 | // Create a separator since the user asked |
1036 | sep = new CardViewSeparator(this); | 1036 | sep = new CardViewSeparator(this); |
1037 | sep->mRect.moveTopLeft(QPoint(xPos, yPos+d->mItemMargin)); | 1037 | sep->mRect.moveTopLeft(QPoint(xPos, yPos+d->mItemMargin)); |
1038 | xPos += d->mSepWidth + cardSpacing; | 1038 | xPos += d->mSepWidth + cardSpacing; |
1039 | d->mSeparatorList.append(sep); | 1039 | d->mSeparatorList.append(sep); |
1040 | } | 1040 | } |
1041 | 1041 | ||
1042 | maxWidth = 0; | 1042 | maxWidth = 0; |
1043 | } | 1043 | } |
1044 | 1044 | ||
1045 | item->d->x = xPos; | 1045 | item->d->x = xPos; |
1046 | item->d->y = yPos; | 1046 | item->d->y = yPos; |
1047 | 1047 | ||
1048 | yPos += item->height(); | 1048 | yPos += item->height(); |
1049 | maxWidth = QMAX(maxWidth, d->mItemWidth); | 1049 | maxWidth = QMAX(maxWidth, d->mItemWidth); |
1050 | } | 1050 | } |
1051 | 1051 | ||
1052 | xPos += maxWidth; | 1052 | xPos += maxWidth; |
1053 | resizeContents( xPos + cardSpacing, maxHeight ); | 1053 | resizeContents( xPos + cardSpacing, maxHeight ); |
1054 | 1054 | ||
1055 | // Update the height of all the separators now that we know the | 1055 | // Update the height of all the separators now that we know the |
1056 | // max height of a column | 1056 | // max height of a column |
1057 | QPtrListIterator<CardViewSeparator> sepIter(d->mSeparatorList); | 1057 | QPtrListIterator<CardViewSeparator> sepIter(d->mSeparatorList); |
1058 | for (sepIter.toFirst(); sepIter.current(); ++sepIter) | 1058 | for (sepIter.toFirst(); sepIter.current(); ++sepIter) |
1059 | { | 1059 | { |
1060 | (*sepIter)->mRect.setHeight(maxHeight - 2*cardSpacing - 2*d->mItemMargin); | 1060 | (*sepIter)->mRect.setHeight(maxHeight - 2*cardSpacing - 2*d->mItemMargin); |
1061 | } | 1061 | } |
1062 | 1062 | ||
1063 | d->mLayoutDirty = false; | 1063 | d->mLayoutDirty = false; |
1064 | } | 1064 | } |
1065 | 1065 | ||
1066 | CardViewItem *CardView::itemAfter(CardViewItem *item) | 1066 | CardViewItem *CardView::itemAfter(CardViewItem *item) |
1067 | { | 1067 | { |
1068 | /*int pos = */d->mItemList.findRef(item); | 1068 | /*int pos = */d->mItemList.findRef(item); |
1069 | return d->mItemList.next();//at(pos+1); | 1069 | return d->mItemList.next();//at(pos+1); |
1070 | } | 1070 | } |
1071 | 1071 | ||
1072 | uint CardView::itemMargin() | 1072 | uint CardView::itemMargin() |
1073 | { | 1073 | { |
1074 | return d->mItemMargin; | 1074 | return d->mItemMargin; |
1075 | } | 1075 | } |
1076 | 1076 | ||
1077 | void CardView::setItemMargin( uint margin ) | 1077 | void CardView::setItemMargin( uint margin ) |
1078 | { | 1078 | { |
1079 | if ( margin == d->mItemMargin ) | 1079 | if ( margin == d->mItemMargin ) |
1080 | return; | 1080 | return; |
1081 | 1081 | ||
1082 | d->mItemMargin = margin; | 1082 | d->mItemMargin = margin; |
1083 | setLayoutDirty( true ); | 1083 | setLayoutDirty( true ); |
1084 | } | 1084 | } |
1085 | 1085 | ||
1086 | uint CardView::itemSpacing() | 1086 | uint CardView::itemSpacing() |
1087 | { | 1087 | { |
1088 | return d->mItemSpacing; | 1088 | return d->mItemSpacing; |
1089 | } | 1089 | } |
1090 | 1090 | ||
1091 | void CardView::setItemSpacing( uint spacing ) | 1091 | void CardView::setItemSpacing( uint spacing ) |
1092 | { | 1092 | { |
1093 | if ( spacing == d->mItemSpacing ) | 1093 | if ( spacing == d->mItemSpacing ) |
1094 | return; | 1094 | return; |
1095 | 1095 | ||
1096 | d->mItemSpacing = spacing; | 1096 | d->mItemSpacing = spacing; |
1097 | setLayoutDirty( true ); | 1097 | setLayoutDirty( true ); |
1098 | } | 1098 | } |
1099 | 1099 | ||
1100 | void CardView::contentsMousePressEvent(QMouseEvent *e) | 1100 | void CardView::contentsMousePressEvent(QMouseEvent *e) |
1101 | { | 1101 | { |
1102 | QScrollView::contentsMousePressEvent(e); | 1102 | QScrollView::contentsMousePressEvent(e); |
1103 | 1103 | ||
1104 | QPoint pos = e->pos(); | 1104 | QPoint pos = e->pos(); |
1105 | d->mLastClickPos = pos; | 1105 | d->mLastClickPos = pos; |
1106 | 1106 | ||
1107 | CardViewItem *item = itemAt(pos); | 1107 | CardViewItem *item = itemAt(pos); |
1108 | 1108 | ||
1109 | if (item == 0) | 1109 | if (item == 0) |
1110 | { | 1110 | { |
1111 | d->mLastClickOnItem = false; | 1111 | d->mLastClickOnItem = false; |
1112 | if ( d->mOnSeparator) | 1112 | if ( d->mOnSeparator) |
1113 | { | 1113 | { |
1114 | d->mResizeAnchor = e->x()+contentsX(); | 1114 | d->mResizeAnchor = e->x()+contentsX(); |
1115 | d->colspace = (2*d->mItemSpacing) /*+ (2*d->mItemMargin)*/; | 1115 | d->colspace = (2*d->mItemSpacing) /*+ (2*d->mItemMargin)*/; |
1116 | int ccw = d->mItemWidth + d->colspace + d->mSepWidth; | 1116 | int ccw = d->mItemWidth + d->colspace + d->mSepWidth; |
1117 | d->first = (contentsX()+d->mSepWidth)/ccw; | 1117 | d->first = (contentsX()+d->mSepWidth)/ccw; |
1118 | d->pressed = (d->mResizeAnchor+d->mSepWidth)/ccw; | 1118 | d->pressed = (d->mResizeAnchor+d->mSepWidth)/ccw; |
1119 | d->span = d->pressed - d->first; | 1119 | d->span = d->pressed - d->first; |
1120 | d->firstX = d->first * ccw; | 1120 | d->firstX = d->first * ccw; |
1121 | if ( d->firstX ) d->firstX -= d->mSepWidth; // (no sep in col 0) | 1121 | if ( d->firstX ) d->firstX -= d->mSepWidth; // (no sep in col 0) |
1122 | } | 1122 | } |
1123 | else | 1123 | else |
1124 | { | 1124 | { |
1125 | selectAll(false); | 1125 | selectAll(false); |
1126 | } | 1126 | } |
1127 | return; | 1127 | return; |
1128 | } | 1128 | } |
1129 | 1129 | ||
1130 | d->mLastClickOnItem = true; | 1130 | d->mLastClickOnItem = true; |
1131 | 1131 | ||
1132 | CardViewItem *other = d->mCurrentItem; | 1132 | CardViewItem *other = d->mCurrentItem; |
1133 | setCurrentItem( item ); | 1133 | setCurrentItem( item ); |
1134 | 1134 | ||
1135 | // Always emit the selection | 1135 | // Always emit the selection |
1136 | emit clicked(item); | 1136 | emit clicked(item); |
1137 | 1137 | ||
1138 | // Check the selection type and update accordingly | 1138 | // Check the selection type and update accordingly |
1139 | if (d->mSelectionMode == CardView::Single) | 1139 | if (d->mSelectionMode == CardView::Single) |
1140 | { | 1140 | { |
1141 | // make sure it isn't already selected | 1141 | // make sure it isn't already selected |
1142 | if (item->isSelected()) | 1142 | if (item->isSelected()) |
1143 | return; | 1143 | return; |
1144 | 1144 | ||
1145 | bool b = signalsBlocked(); | 1145 | bool b = signalsBlocked(); |
1146 | blockSignals(true); | 1146 | blockSignals(true); |
1147 | selectAll(false); | 1147 | selectAll(false); |
1148 | blockSignals(b); | 1148 | blockSignals(b); |
1149 | 1149 | ||
1150 | item->setSelected(true); | 1150 | item->setSelected(true); |
1151 | item->repaintCard(); | 1151 | item->repaintCard(); |
1152 | emit selectionChanged(item); | 1152 | emit selectionChanged(item); |
1153 | } | 1153 | } |
1154 | 1154 | ||
1155 | else if (d->mSelectionMode == CardView::Multi) | 1155 | else if (d->mSelectionMode == CardView::Multi) |
1156 | { | 1156 | { |
1157 | // toggle the selection | 1157 | // toggle the selection |
1158 | item->setSelected(!item->isSelected()); | 1158 | item->setSelected(!item->isSelected()); |
1159 | item->repaintCard(); | 1159 | item->repaintCard(); |
1160 | emit selectionChanged(); | 1160 | emit selectionChanged(); |
1161 | } | 1161 | } |
1162 | 1162 | ||
1163 | else if (d->mSelectionMode == CardView::Extended) | 1163 | else if (d->mSelectionMode == CardView::Extended) |
1164 | { | 1164 | { |
1165 | if ((e->button() & Qt::LeftButton) && | 1165 | if ((e->button() & Qt::LeftButton) && |
1166 | (e->state() & Qt::ShiftButton)) | 1166 | (e->state() & Qt::ShiftButton)) |
1167 | { | 1167 | { |
1168 | if ( item == other ) return; | 1168 | if ( item == other ) return; |
1169 | 1169 | ||
1170 | bool s = ! item->isSelected(); | 1170 | bool s = ! item->isSelected(); |
1171 | 1171 | ||
1172 | if ( s && ! (e->state() & ControlButton) ) | 1172 | if ( s && ! (e->state() & ControlButton) ) |
1173 | { | 1173 | { |
1174 | bool b = signalsBlocked(); | 1174 | bool b = signalsBlocked(); |
1175 | blockSignals(true); | 1175 | blockSignals(true); |
1176 | selectAll(false); | 1176 | selectAll(false); |
1177 | blockSignals(b); | 1177 | blockSignals(b); |
1178 | } | 1178 | } |
1179 | 1179 | ||
1180 | int from, to, a, b; | 1180 | int from, to, a, b; |
1181 | a = d->mItemList.findRef( item ); | 1181 | a = d->mItemList.findRef( item ); |
1182 | b = d->mItemList.findRef( other ); | 1182 | b = d->mItemList.findRef( other ); |
1183 | from = a < b ? a : b; | 1183 | from = a < b ? a : b; |
1184 | to = a > b ? a : b; | 1184 | to = a > b ? a : b; |
1185 | //kdDebug()<<"selecting items "<<from<<" - "<<to<<" ( "<<s<<" )"<<endl; | 1185 | //kdDebug()<<"selecting items "<<from<<" - "<<to<<" ( "<<s<<" )"<<endl; |
1186 | CardViewItem *aItem; | 1186 | CardViewItem *aItem; |
1187 | for ( ; from <= to; from++ ) | 1187 | for ( ; from <= to; from++ ) |
1188 | { | 1188 | { |
1189 | aItem = d->mItemList.at( from ); | 1189 | aItem = d->mItemList.at( from ); |
1190 | aItem->setSelected( s ); | 1190 | aItem->setSelected( s ); |
1191 | repaintItem( aItem ); | 1191 | repaintItem( aItem ); |
1192 | } | 1192 | } |
1193 | emit selectionChanged(); | 1193 | emit selectionChanged(); |
1194 | } | 1194 | } |
1195 | else if ((e->button() & Qt::LeftButton) && | 1195 | else if ((e->button() & Qt::LeftButton) && |
1196 | (e->state() & Qt::ControlButton)) | 1196 | (e->state() & Qt::ControlButton)) |
1197 | { | 1197 | { |
1198 | item->setSelected(!item->isSelected()); | 1198 | item->setSelected(!item->isSelected()); |
1199 | item->repaintCard(); | 1199 | item->repaintCard(); |
1200 | emit selectionChanged(); | 1200 | emit selectionChanged(); |
1201 | } | 1201 | } |
1202 | 1202 | ||
1203 | else if (e->button() & Qt::LeftButton) | 1203 | else if (e->button() & Qt::LeftButton) |
1204 | { | 1204 | { |
1205 | bool b = signalsBlocked(); | 1205 | bool b = signalsBlocked(); |
1206 | blockSignals(true); | 1206 | blockSignals(true); |
1207 | selectAll(false); | 1207 | selectAll(false); |
1208 | blockSignals(b); | 1208 | blockSignals(b); |
1209 | 1209 | ||
1210 | item->setSelected(true); | 1210 | item->setSelected(true); |
1211 | item->repaintCard(); | 1211 | item->repaintCard(); |
1212 | emit selectionChanged(); | 1212 | emit selectionChanged(); |
1213 | } | 1213 | } |
1214 | } | 1214 | } |
1215 | 1215 | ||
1216 | } | 1216 | } |
1217 | 1217 | ||
1218 | void CardView::contentsMouseReleaseEvent(QMouseEvent *e) | 1218 | void CardView::contentsMouseReleaseEvent(QMouseEvent *e) |
1219 | { | 1219 | { |
1220 | QScrollView::contentsMouseReleaseEvent(e); | 1220 | QScrollView::contentsMouseReleaseEvent(e); |
1221 | 1221 | ||
1222 | if ( d->mResizeAnchor ) | 1222 | if ( d->mResizeAnchor ) |
1223 | { | 1223 | { |
1224 | // finish the resizing: | 1224 | // finish the resizing: |
1225 | unsetCursor(); | 1225 | unsetCursor(); |
1226 | // hide rubber bands | 1226 | // hide rubber bands |
1227 | int newiw = d->mItemWidth - ((d->mResizeAnchor - d->mRubberBandAnchor)/d->span); | 1227 | int newiw = d->mItemWidth - ((d->mResizeAnchor - d->mRubberBandAnchor)/d->span); |
1228 | drawRubberBands( 0 ); | 1228 | drawRubberBands( 0 ); |
1229 | // we should move to reflect the new position if we are scrolled. | 1229 | // we should move to reflect the new position if we are scrolled. |
1230 | if ( contentsX() ) | 1230 | if ( contentsX() ) |
1231 | { | 1231 | { |
1232 | int newX = QMAX( 0, ( d->pressed * ( newiw + d->colspace + d->mSepWidth ) ) - e->x() ); | 1232 | int newX = QMAX( 0, ( d->pressed * ( newiw + d->colspace + d->mSepWidth ) ) - e->x() ); |
1233 | setContentsPos( newX, contentsY() ); | 1233 | setContentsPos( newX, contentsY() ); |
1234 | } | 1234 | } |
1235 | // set new item width | 1235 | // set new item width |
1236 | setItemWidth( newiw ); | 1236 | setItemWidth( newiw ); |
1237 | // reset anchors | 1237 | // reset anchors |
1238 | d->mResizeAnchor = 0; | 1238 | d->mResizeAnchor = 0; |
1239 | d->mRubberBandAnchor = 0; | 1239 | d->mRubberBandAnchor = 0; |
1240 | return; | 1240 | return; |
1241 | } | 1241 | } |
1242 | 1242 | ||
1243 | // If there are accel keys, we will not emit signals | 1243 | // If there are accel keys, we will not emit signals |
1244 | if ((e->state() & Qt::ShiftButton) || (e->state() & Qt::ControlButton)) | 1244 | if ((e->state() & Qt::ShiftButton) || (e->state() & Qt::ControlButton)) |
1245 | return; | 1245 | return; |
1246 | 1246 | ||
1247 | // Get the item at this position | 1247 | // Get the item at this position |
1248 | CardViewItem *item = itemAt(e->pos()); | 1248 | CardViewItem *item = itemAt(e->pos()); |
1249 | 1249 | ||
1250 | if (item && KABPrefs::instance()->mHonorSingleClick) | 1250 | if (item && KABPrefs::instance()->mHonorSingleClick) |
1251 | { | 1251 | { |
1252 | emit executed(item); | 1252 | emit executed(item); |
1253 | } | 1253 | } |
1254 | } | 1254 | } |
1255 | 1255 | ||
1256 | void CardView::contentsMouseDoubleClickEvent(QMouseEvent *e) | 1256 | void CardView::contentsMouseDoubleClickEvent(QMouseEvent *e) |
1257 | { | 1257 | { |
1258 | QScrollView::contentsMouseDoubleClickEvent(e); | 1258 | QScrollView::contentsMouseDoubleClickEvent(e); |
1259 | 1259 | ||
1260 | CardViewItem *item = itemAt(e->pos()); | 1260 | CardViewItem *item = itemAt(e->pos()); |
1261 | 1261 | ||
1262 | if (item) | 1262 | if (item) |
1263 | { | 1263 | { |
1264 | d->mCurrentItem = item; | 1264 | d->mCurrentItem = item; |
1265 | } | 1265 | } |
1266 | 1266 | ||
1267 | if (item && !KABPrefs::instance()->mHonorSingleClick) | 1267 | if (item && !KABPrefs::instance()->mHonorSingleClick) |
1268 | { | 1268 | { |
1269 | emit executed(item); | 1269 | emit executed(item); |
1270 | } else | 1270 | } else |
1271 | emit doubleClicked(item); | 1271 | emit doubleClicked(item); |
1272 | } | 1272 | } |
1273 | 1273 | ||
1274 | void CardView::contentsMouseMoveEvent( QMouseEvent *e ) | 1274 | void CardView::contentsMouseMoveEvent( QMouseEvent *e ) |
1275 | { | 1275 | { |
1276 | // resizing | 1276 | // resizing |
1277 | if ( d->mResizeAnchor ) | 1277 | if ( d->mResizeAnchor ) |
1278 | { | 1278 | { |
1279 | int x = e->x(); | 1279 | int x = e->x(); |
1280 | if ( x != d->mRubberBandAnchor ) | 1280 | if ( x != d->mRubberBandAnchor ) |
1281 | drawRubberBands( x ); | 1281 | drawRubberBands( x ); |
1282 | return; | 1282 | return; |
1283 | } | 1283 | } |
1284 | 1284 | ||
1285 | if (d->mLastClickOnItem && (e->state() & Qt::LeftButton) && | 1285 | if (d->mLastClickOnItem && (e->state() & Qt::LeftButton) && |
1286 | ((e->pos() - d->mLastClickPos).manhattanLength() > 4)) { | 1286 | ((e->pos() - d->mLastClickPos).manhattanLength() > 4)) { |
1287 | 1287 | ||
1288 | startDrag(); | 1288 | startDrag(); |
1289 | return; | 1289 | return; |
1290 | } | 1290 | } |
1291 | 1291 | ||
1292 | d->mTimer->start( 500 ); | 1292 | d->mTimer->start( 500 ); |
1293 | 1293 | ||
1294 | // see if we are over a separator | 1294 | // see if we are over a separator |
1295 | // only if we actually have them painted? | 1295 | // only if we actually have them painted? |
1296 | if ( d->mDrawSeparators ) | 1296 | if ( d->mDrawSeparators ) |
1297 | { | 1297 | { |
1298 | int colcontentw = d->mItemWidth + (2*d->mItemSpacing); | 1298 | int colcontentw = d->mItemWidth + (2*d->mItemSpacing); |
1299 | int colw = colcontentw + d->mSepWidth; | 1299 | int colw = colcontentw + d->mSepWidth; |
1300 | int m = e->x()%colw; | 1300 | int m = e->x()%colw; |
1301 | if ( m >= colcontentw && m > 0 ) | 1301 | if ( m >= colcontentw && m > 0 ) |
1302 | { | 1302 | { |
1303 | setCursor( SplitVCursor ); // Why does this fail sometimes? | 1303 | setCursor( SplitVCursor ); // Why does this fail sometimes? |
1304 | d->mOnSeparator = true; | 1304 | d->mOnSeparator = true; |
1305 | } | 1305 | } |
1306 | else | 1306 | else |
1307 | { | 1307 | { |
1308 | setCursor( ArrowCursor ); | 1308 | setCursor( ArrowCursor ); |
1309 | d->mOnSeparator = false; | 1309 | d->mOnSeparator = false; |
1310 | } | 1310 | } |
1311 | } | 1311 | } |
1312 | } | 1312 | } |
1313 | 1313 | ||
1314 | void CardView::enterEvent( QEvent * ) | 1314 | void CardView::enterEvent( QEvent * ) |
1315 | { | 1315 | { |
1316 | d->mTimer->start( 500 ); | 1316 | d->mTimer->start( 500 ); |
1317 | } | 1317 | } |
1318 | 1318 | ||
1319 | void CardView::leaveEvent( QEvent * ) | 1319 | void CardView::leaveEvent( QEvent * ) |
1320 | { | 1320 | { |
1321 | d->mTimer->stop(); | 1321 | d->mTimer->stop(); |
1322 | if (d->mOnSeparator) | 1322 | if (d->mOnSeparator) |
1323 | { | 1323 | { |
1324 | d->mOnSeparator = false; | 1324 | d->mOnSeparator = false; |
1325 | setCursor( ArrowCursor ); | 1325 | setCursor( ArrowCursor ); |
1326 | } | 1326 | } |
1327 | } | 1327 | } |
1328 | 1328 | ||
1329 | void CardView::focusInEvent( QFocusEvent * ) | 1329 | void CardView::focusInEvent( QFocusEvent * ) |
1330 | { | 1330 | { |
1331 | if (!d->mCurrentItem && d->mItemList.count() ) | 1331 | if (!d->mCurrentItem && d->mItemList.count() ) |
1332 | { | 1332 | { |
1333 | setCurrentItem( d->mItemList.first() ); | 1333 | setCurrentItem( d->mItemList.first() ); |
1334 | } | 1334 | } |
1335 | else if ( d->mCurrentItem ) | 1335 | else if ( d->mCurrentItem ) |
1336 | { | 1336 | { |
1337 | d->mCurrentItem->repaintCard(); | 1337 | d->mCurrentItem->repaintCard(); |
1338 | } | 1338 | } |
1339 | } | 1339 | } |
1340 | 1340 | ||
1341 | void CardView::focusOutEvent( QFocusEvent * ) | 1341 | void CardView::focusOutEvent( QFocusEvent * ) |
1342 | { | 1342 | { |
1343 | if (d->mCurrentItem) | 1343 | if (d->mCurrentItem) |
1344 | d->mCurrentItem->repaintCard(); | 1344 | d->mCurrentItem->repaintCard(); |
1345 | } | 1345 | } |
1346 | 1346 | ||
1347 | void CardView::keyPressEvent( QKeyEvent *e ) | 1347 | void CardView::keyPressEvent( QKeyEvent *e ) |
1348 | { | 1348 | { |
1349 | if ( ! ( childCount() && d->mCurrentItem ) ) | 1349 | if ( ! ( childCount() && d->mCurrentItem ) ) |
1350 | { | 1350 | { |
1351 | e->ignore(); | 1351 | e->ignore(); |
1352 | return; | 1352 | return; |
1353 | } | 1353 | } |
1354 | 1354 | ||
1355 | uint pos = d->mItemList.findRef( d->mCurrentItem ); | 1355 | uint pos = d->mItemList.findRef( d->mCurrentItem ); |
1356 | CardViewItem *aItem = 0L; // item that gets the focus | 1356 | CardViewItem *aItem = 0L; // item that gets the focus |
1357 | CardViewItem *old = d->mCurrentItem; | 1357 | CardViewItem *old = d->mCurrentItem; |
1358 | 1358 | ||
1359 | switch ( e->key() ) | 1359 | switch ( e->key() ) |
1360 | { | 1360 | { |
1361 | case Key_Up: | 1361 | case Key_Up: |
1362 | if ( pos > 0 ) | 1362 | if ( pos > 0 ) |
1363 | { | 1363 | { |
1364 | aItem = d->mItemList.at( pos - 1 ); | 1364 | aItem = d->mItemList.at( pos - 1 ); |
1365 | setCurrentItem( aItem ); | 1365 | setCurrentItem( aItem ); |
1366 | } | 1366 | } |
1367 | break; | 1367 | break; |
1368 | case Key_Down: | 1368 | case Key_Down: |
1369 | if ( pos < d->mItemList.count() - 1 ) | 1369 | if ( pos < d->mItemList.count() - 1 ) |
1370 | { | 1370 | { |
1371 | aItem = d->mItemList.at( pos + 1 ); | 1371 | aItem = d->mItemList.at( pos + 1 ); |
1372 | setCurrentItem( aItem ); | 1372 | setCurrentItem( aItem ); |
1373 | } | 1373 | } |
1374 | break; | 1374 | break; |
1375 | case Key_Left: | 1375 | case Key_Left: |
1376 | { | 1376 | { |
1377 | // look for an item in the previous/next column, starting from | 1377 | // look for an item in the previous/next column, starting from |
1378 | // the vertical middle of the current item. | 1378 | // the vertical middle of the current item. |
1379 | // FIXME use nice calculatd measures!!! | 1379 | // FIXME use nice calculatd measures!!! |
1380 | QPoint aPoint( d->mCurrentItem->d->x, d->mCurrentItem->d->y ); | 1380 | QPoint aPoint( d->mCurrentItem->d->x, d->mCurrentItem->d->y ); |
1381 | aPoint -= QPoint( 30,-(d->mCurrentItem->height()/2) ); | 1381 | aPoint -= QPoint( 30,-(d->mCurrentItem->height()/2) ); |
1382 | aItem = itemAt( aPoint ); | 1382 | aItem = itemAt( aPoint ); |
1383 | // maybe we hit some space below an item | 1383 | // maybe we hit some space below an item |
1384 | while ( !aItem && aPoint.y() > 27 ) | 1384 | while ( !aItem && aPoint.y() > 27 ) |
1385 | { | 1385 | { |
1386 | aPoint -= QPoint( 0, 16 ); | 1386 | aPoint -= QPoint( 0, 16 ); |
1387 | aItem = itemAt( aPoint ); | 1387 | aItem = itemAt( aPoint ); |
1388 | } | 1388 | } |
1389 | if ( aItem ) | 1389 | if ( aItem ) |
1390 | setCurrentItem( aItem ); | 1390 | setCurrentItem( aItem ); |
1391 | } | 1391 | } |
1392 | break; | 1392 | break; |
1393 | case Key_Right: | 1393 | case Key_Right: |
1394 | { | 1394 | { |
1395 | // FIXME use nice calculated measures!!! | 1395 | // FIXME use nice calculated measures!!! |
1396 | QPoint aPoint( d->mCurrentItem->d->x + d->mItemWidth, d->mCurrentItem->d->y ); | 1396 | QPoint aPoint( d->mCurrentItem->d->x + d->mItemWidth, d->mCurrentItem->d->y ); |
1397 | aPoint += QPoint( 30,(d->mCurrentItem->height()/2) ); | 1397 | aPoint += QPoint( 30,(d->mCurrentItem->height()/2) ); |
1398 | aItem = itemAt( aPoint ); | 1398 | aItem = itemAt( aPoint ); |
1399 | while ( !aItem && aPoint.y() > 27 ) | 1399 | while ( !aItem && aPoint.y() > 27 ) |
1400 | { | 1400 | { |
1401 | aPoint -= QPoint( 0, 16 ); | 1401 | aPoint -= QPoint( 0, 16 ); |
1402 | aItem = itemAt( aPoint ); | 1402 | aItem = itemAt( aPoint ); |
1403 | } | 1403 | } |
1404 | if ( aItem ) | 1404 | if ( aItem ) |
1405 | setCurrentItem( aItem ); | 1405 | setCurrentItem( aItem ); |
1406 | } | 1406 | } |
1407 | break; | 1407 | break; |
1408 | case Key_Home: | 1408 | case Key_Home: |
1409 | aItem = d->mItemList.first(); | 1409 | aItem = d->mItemList.first(); |
1410 | setCurrentItem( aItem ); | 1410 | setCurrentItem( aItem ); |
1411 | break; | 1411 | break; |
1412 | case Key_End: | 1412 | case Key_End: |
1413 | aItem = d->mItemList.last(); | 1413 | aItem = d->mItemList.last(); |
1414 | setCurrentItem( aItem ); | 1414 | setCurrentItem( aItem ); |
1415 | break; | 1415 | break; |
1416 | case Key_Prior: // PageUp | 1416 | case Key_Prior: // PageUp |
1417 | { | 1417 | { |
1418 | // QListView: "Make the item above the top visible and current" | 1418 | // QListView: "Make the item above the top visible and current" |
1419 | // TODO if contentsY(), pick the top item of the leftmost visible column | 1419 | // TODO if contentsY(), pick the top item of the leftmost visible column |
1420 | if ( contentsX() <= 0 ) | 1420 | if ( contentsX() <= 0 ) |
1421 | return; | 1421 | return; |
1422 | int cw = columnWidth(); | 1422 | int cw = columnWidth(); |
1423 | int theCol = ( QMAX( 0, ( contentsX()/cw) * cw ) ) + d->mItemSpacing; | 1423 | int theCol = ( QMAX( 0, ( contentsX()/cw) * cw ) ) + d->mItemSpacing; |
1424 | aItem = itemAt( QPoint( theCol + 1, d->mItemSpacing + 1 ) ); | 1424 | aItem = itemAt( QPoint( theCol + 1, d->mItemSpacing + 1 ) ); |
1425 | if ( aItem ) | 1425 | if ( aItem ) |
1426 | setCurrentItem( aItem ); | 1426 | setCurrentItem( aItem ); |
1427 | } | 1427 | } |
1428 | break; | 1428 | break; |
1429 | case Key_Next: // PageDown | 1429 | case Key_Next: // PageDown |
1430 | { | 1430 | { |
1431 | // QListView: "Make the item below the bottom visible and current" | 1431 | // QListView: "Make the item below the bottom visible and current" |
1432 | // find the first not fully visible column. | 1432 | // find the first not fully visible column. |
1433 | // TODO: consider if a partly visible (or even hidden) item at the | 1433 | // TODO: consider if a partly visible (or even hidden) item at the |
1434 | // bottom of the rightmost column exists | 1434 | // bottom of the rightmost column exists |
1435 | int cw = columnWidth(); | 1435 | int cw = columnWidth(); |
1436 | int theCol = ( (( contentsX() + visibleWidth() )/cw) * cw ) + d->mItemSpacing + 1; | 1436 | int theCol = ( (( contentsX() + visibleWidth() )/cw) * cw ) + d->mItemSpacing + 1; |
1437 | // if separators are on, we may need to we may be one column further right if only the spacing/sep is hidden | 1437 | // if separators are on, we may need to we may be one column further right if only the spacing/sep is hidden |
1438 | if ( d->mDrawSeparators && cw - (( contentsX() + visibleWidth() )%cw) <= int( d->mItemSpacing + d->mSepWidth ) ) | 1438 | if ( d->mDrawSeparators && cw - (( contentsX() + visibleWidth() )%cw) <= int( d->mItemSpacing + d->mSepWidth ) ) |
1439 | theCol += cw; | 1439 | theCol += cw; |
1440 | 1440 | ||
1441 | // make sure this is not too far right | 1441 | // make sure this is not too far right |
1442 | while ( theCol > contentsWidth() ) | 1442 | while ( theCol > contentsWidth() ) |
1443 | theCol -= columnWidth(); | 1443 | theCol -= columnWidth(); |
1444 | 1444 | ||
1445 | aItem = itemAt( QPoint( theCol, d->mItemSpacing + 1 ) ); | 1445 | aItem = itemAt( QPoint( theCol, d->mItemSpacing + 1 ) ); |
1446 | 1446 | ||
1447 | if ( aItem ) | 1447 | if ( aItem ) |
1448 | setCurrentItem( aItem ); | 1448 | setCurrentItem( aItem ); |
1449 | } | 1449 | } |
1450 | break; | 1450 | break; |
1451 | case Key_Space: | 1451 | case Key_Space: |
1452 | setSelected( d->mCurrentItem, !d->mCurrentItem->isSelected() ); | 1452 | setSelected( d->mCurrentItem, !d->mCurrentItem->isSelected() ); |
1453 | emit selectionChanged(); | 1453 | emit selectionChanged(); |
1454 | break; | 1454 | break; |
1455 | case Key_Return: | 1455 | case Key_Return: |
1456 | case Key_Enter: | 1456 | case Key_Enter: |
1457 | { | 1457 | { |
1458 | emit returnPressed( d->mCurrentItem ); | 1458 | emit returnPressed( d->mCurrentItem ); |
1459 | emit executed( d->mCurrentItem ); | 1459 | emit executed( d->mCurrentItem ); |
1460 | } | 1460 | } |
1461 | break; | 1461 | break; |
1462 | default: | 1462 | default: |
1463 | if ( (e->state() & ControlButton) && e->key() == Key_A ) | 1463 | if ( (e->state() & ControlButton) && e->key() == Key_A ) |
1464 | { | 1464 | { |
1465 | // select all | 1465 | // select all |
1466 | selectAll( true ); | 1466 | selectAll( true ); |
1467 | break; | 1467 | break; |
1468 | } | 1468 | } |
1469 | // if we have a string, do autosearch | 1469 | // if we have a string, do autosearch |
1470 | else if ( ! e->text().isEmpty() && e->text()[0].isPrint() ) | 1470 | else if ( ! e->text().isEmpty() && e->text()[0].isPrint() ) |
1471 | { | 1471 | { |
1472 | 1472 | ||
1473 | } | 1473 | } |
1474 | break; | 1474 | break; |
1475 | } | 1475 | } |
1476 | // handle selection | 1476 | // handle selection |
1477 | if ( aItem ) | 1477 | if ( aItem ) |
1478 | { | 1478 | { |
1479 | if ( d->mSelectionMode == CardView::Extended ) | 1479 | if ( d->mSelectionMode == CardView::Extended ) |
1480 | { | 1480 | { |
1481 | if ( (e->state() & ShiftButton) ) | 1481 | if ( (e->state() & ShiftButton) ) |
1482 | { | 1482 | { |
1483 | // shift button: toggle range | 1483 | // shift button: toggle range |
1484 | // if control button is pressed, leave all items | 1484 | // if control button is pressed, leave all items |
1485 | // and toggle selection current->old current | 1485 | // and toggle selection current->old current |
1486 | // otherwise, ?????? | 1486 | // otherwise, ?????? |
1487 | bool s = ! aItem->isSelected(); | 1487 | bool s = ! aItem->isSelected(); |
1488 | int from, to, a, b; | 1488 | int from, to, a, b; |
1489 | a = d->mItemList.findRef( aItem ); | 1489 | a = d->mItemList.findRef( aItem ); |
1490 | b = d->mItemList.findRef( old ); | 1490 | b = d->mItemList.findRef( old ); |
1491 | from = a < b ? a : b; | 1491 | from = a < b ? a : b; |
1492 | to = a > b ? a : b; | 1492 | to = a > b ? a : b; |
1493 | 1493 | ||
1494 | if ( to - from > 1 ) | 1494 | if ( to - from > 1 ) |
1495 | { | 1495 | { |
1496 | bool b = signalsBlocked(); | 1496 | bool b = signalsBlocked(); |
1497 | blockSignals(true); | 1497 | blockSignals(true); |
1498 | selectAll(false); | 1498 | selectAll(false); |
1499 | blockSignals(b); | 1499 | blockSignals(b); |
1500 | } | 1500 | } |
1501 | 1501 | ||
1502 | //kdDebug()<<"selecting items "<<from<<" - "<<to<<" ( "<<s<<" )"<<endl; | 1502 | //kdDebug()<<"selecting items "<<from<<" - "<<to<<" ( "<<s<<" )"<<endl; |
1503 | CardViewItem *item; | 1503 | CardViewItem *item; |
1504 | for ( ; from <= to; from++ ) | 1504 | for ( ; from <= to; from++ ) |
1505 | { | 1505 | { |
1506 | item = d->mItemList.at( from ); | 1506 | item = d->mItemList.at( from ); |
1507 | item->setSelected( s ); | 1507 | item->setSelected( s ); |
1508 | repaintItem( item ); | 1508 | repaintItem( item ); |
1509 | } | 1509 | } |
1510 | emit selectionChanged(); | 1510 | emit selectionChanged(); |
1511 | } | 1511 | } |
1512 | else if ( (e->state() & ControlButton) ) | 1512 | else if ( (e->state() & ControlButton) ) |
1513 | { | 1513 | { |
1514 | // control button: do nothing | 1514 | // control button: do nothing |
1515 | } | 1515 | } |
1516 | else | 1516 | else |
1517 | { | 1517 | { |
1518 | // no button: move selection to this item | 1518 | // no button: move selection to this item |
1519 | bool b = signalsBlocked(); | 1519 | bool b = signalsBlocked(); |
1520 | blockSignals(true); | 1520 | blockSignals(true); |
1521 | selectAll(false); | 1521 | selectAll(false); |
1522 | blockSignals(b); | 1522 | blockSignals(b); |
1523 | 1523 | ||
1524 | setSelected( aItem, true ); | 1524 | setSelected( aItem, true ); |
1525 | emit selectionChanged(); | 1525 | emit selectionChanged(); |
1526 | } | 1526 | } |
1527 | } | 1527 | } |
1528 | } | 1528 | } |
1529 | } | 1529 | } |
1530 | 1530 | ||
1531 | void CardView::contentsWheelEvent( QWheelEvent * e ) | 1531 | void CardView::contentsWheelEvent( QWheelEvent * e ) |
1532 | { | 1532 | { |
1533 | scrollBy(2*e->delta()/-3, 0); | 1533 | scrollBy(2*e->delta()/-3, 0); |
1534 | } | 1534 | } |
1535 | 1535 | ||
1536 | void CardView::setLayoutDirty(bool dirty) | 1536 | void CardView::setLayoutDirty(bool dirty) |
1537 | { | 1537 | { |
1538 | if (d->mLayoutDirty != dirty) | 1538 | if (d->mLayoutDirty != dirty) |
1539 | { | 1539 | { |
1540 | d->mLayoutDirty = dirty; | 1540 | d->mLayoutDirty = dirty; |
1541 | repaint(); | 1541 | repaint(); |
1542 | } | 1542 | } |
1543 | } | 1543 | } |
1544 | 1544 | ||
1545 | void CardView::setDrawCardBorder(bool enabled) | 1545 | void CardView::setDrawCardBorder(bool enabled) |
1546 | { | 1546 | { |
1547 | if (enabled != d->mDrawCardBorder) | 1547 | if (enabled != d->mDrawCardBorder) |
1548 | { | 1548 | { |
1549 | d->mDrawCardBorder = enabled; | 1549 | d->mDrawCardBorder = enabled; |
1550 | repaint(); | 1550 | repaint(); |
1551 | } | 1551 | } |
1552 | } | 1552 | } |
1553 | 1553 | ||
1554 | bool CardView::drawCardBorder() const | 1554 | bool CardView::drawCardBorder() const |
1555 | { | 1555 | { |
1556 | return d->mDrawCardBorder; | 1556 | return d->mDrawCardBorder; |
1557 | } | 1557 | } |
1558 | 1558 | ||
1559 | void CardView::setDrawColSeparators(bool enabled) | 1559 | void CardView::setDrawColSeparators(bool enabled) |
1560 | { | 1560 | { |
1561 | if (enabled != d->mDrawSeparators) | 1561 | if (enabled != d->mDrawSeparators) |
1562 | { | 1562 | { |
1563 | d->mDrawSeparators = enabled; | 1563 | d->mDrawSeparators = enabled; |
1564 | setLayoutDirty(true); | 1564 | setLayoutDirty(true); |
1565 | } | 1565 | } |
1566 | } | 1566 | } |
1567 | 1567 | ||
1568 | bool CardView::drawColSeparators() const | 1568 | bool CardView::drawColSeparators() const |
1569 | { | 1569 | { |
1570 | return d->mDrawSeparators; | 1570 | return d->mDrawSeparators; |
1571 | } | 1571 | } |
1572 | 1572 | ||
1573 | void CardView::setDrawFieldLabels(bool enabled) | 1573 | void CardView::setDrawFieldLabels(bool enabled) |
1574 | { | 1574 | { |
1575 | if (enabled != d->mDrawFieldLabels) | 1575 | if (enabled != d->mDrawFieldLabels) |
1576 | { | 1576 | { |
1577 | d->mDrawFieldLabels = enabled; | 1577 | d->mDrawFieldLabels = enabled; |
1578 | repaint(); | 1578 | repaint(); |
1579 | } | 1579 | } |
1580 | } | 1580 | } |
1581 | 1581 | ||
1582 | bool CardView::drawFieldLabels() const | 1582 | bool CardView::drawFieldLabels() const |
1583 | { | 1583 | { |
1584 | return d->mDrawFieldLabels; | 1584 | return d->mDrawFieldLabels; |
1585 | } | 1585 | } |
1586 | 1586 | ||
1587 | void CardView::setShowEmptyFields(bool show) | 1587 | void CardView::setShowEmptyFields(bool show) |
1588 | { | 1588 | { |
1589 | if (show != d->mShowEmptyFields) | 1589 | if (show != d->mShowEmptyFields) |
1590 | { | 1590 | { |
1591 | d->mShowEmptyFields = show; | 1591 | d->mShowEmptyFields = show; |
1592 | setLayoutDirty(true); | 1592 | setLayoutDirty(true); |
1593 | } | 1593 | } |
1594 | } | 1594 | } |
1595 | 1595 | ||
1596 | bool CardView::showEmptyFields() const | 1596 | bool CardView::showEmptyFields() const |
1597 | { | 1597 | { |
1598 | return d->mShowEmptyFields; | 1598 | return d->mShowEmptyFields; |
1599 | } | 1599 | } |
1600 | 1600 | ||
1601 | void CardView::startDrag() | 1601 | void CardView::startDrag() |
1602 | { | 1602 | { |
1603 | // The default implementation is a no-op. It must be | 1603 | // The default implementation is a no-op. It must be |
1604 | // reimplemented in a subclass to be useful | 1604 | // reimplemented in a subclass to be useful |
1605 | } | 1605 | } |
1606 | void CardView::tryShowFullText() | 1606 | void CardView::tryShowFullText() |
1607 | { | 1607 | { |
1608 | d->mTimer->stop(); | 1608 | d->mTimer->stop(); |
1609 | // if we have an item | 1609 | // if we have an item |
1610 | QPoint cpos = viewportToContents( viewport()->mapFromGlobal( QCursor::pos() ) ); | 1610 | QPoint cpos = viewportToContents( viewport()->mapFromGlobal( QCursor::pos() ) ); |
1611 | CardViewItem *item = itemAt( cpos ); | 1611 | CardViewItem *item = itemAt( cpos ); |
1612 | if ( item ) | 1612 | if ( item ) |
1613 | { | 1613 | { |
1614 | // query it for a value to display | 1614 | // query it for a value to display |
1615 | //QString s = item ? item->caption() : "(no item)"; | 1615 | //QString s = item ? item->caption() : "(no item)"; |
1616 | //kdDebug()<<"MOUSE REST: "<<s<<endl; | 1616 | //kdDebug()<<"MOUSE REST: "<<s<<endl; |
1617 | QPoint ipos = cpos - itemRect( item ).topLeft(); | 1617 | QPoint ipos = cpos - itemRect( item ).topLeft(); |
1618 | item->showFullString( ipos, d->mTip ); | 1618 | item->showFullString( ipos, d->mTip ); |
1619 | } | 1619 | } |
1620 | } | 1620 | } |
1621 | 1621 | ||
1622 | void CardView::drawRubberBands( int pos ) | 1622 | void CardView::drawRubberBands( int pos ) |
1623 | { | 1623 | { |
1624 | if ( pos && ((pos-d->firstX)/d->span) - d->colspace - d->mSepWidth < MIN_ITEM_WIDTH ) return; | 1624 | if ( pos && ((pos-d->firstX)/d->span) - d->colspace - d->mSepWidth < MIN_ITEM_WIDTH ) return; |
1625 | 1625 | ||
1626 | int tmpcw = (d->mRubberBandAnchor-d->firstX)/d->span; | 1626 | int tmpcw = (d->mRubberBandAnchor-d->firstX)/d->span; |
1627 | int x = d->firstX + tmpcw - d->mSepWidth - contentsX(); | 1627 | int x = d->firstX + tmpcw - d->mSepWidth - contentsX(); |
1628 | int h = visibleHeight(); | 1628 | int h = visibleHeight(); |
1629 | 1629 | ||
1630 | QPainter p( viewport() ); | 1630 | QPainter p( viewport() ); |
1631 | p.setRasterOp( XorROP ); | 1631 | p.setRasterOp( XorROP ); |
1632 | p.setPen( gray ); | 1632 | p.setPen( gray ); |
1633 | p.setBrush( gray ); | 1633 | p.setBrush( gray ); |
1634 | uint n = d->first; | 1634 | uint n = d->first; |
1635 | // erase | 1635 | // erase |
1636 | if ( d->mRubberBandAnchor ) | 1636 | if ( d->mRubberBandAnchor ) |
1637 | do { | 1637 | do { |
1638 | p.drawRect( x, 0, 2, h ); | 1638 | p.drawRect( x, 0, 2, h ); |
1639 | x += tmpcw; | 1639 | x += tmpcw; |
1640 | n++; | 1640 | n++; |
1641 | } while ( x < visibleWidth() && n < d->mSeparatorList.count() ); | 1641 | } while ( x < visibleWidth() && n < d->mSeparatorList.count() ); |
1642 | // paint new | 1642 | // paint new |
1643 | if ( ! pos ) return; | 1643 | if ( ! pos ) return; |
1644 | tmpcw = (pos - d->firstX)/d->span; | 1644 | tmpcw = (pos - d->firstX)/d->span; |
1645 | n = d->first; | 1645 | n = d->first; |
1646 | x = d->firstX + tmpcw - d->mSepWidth - contentsX(); | 1646 | x = d->firstX + tmpcw - d->mSepWidth - contentsX(); |
1647 | do { | 1647 | do { |
1648 | p.drawRect( x, 0, 2, h ); | 1648 | p.drawRect( x, 0, 2, h ); |
1649 | x += tmpcw; | 1649 | x += tmpcw; |
1650 | n++; | 1650 | n++; |
1651 | } while ( x < visibleWidth() && n < d->mSeparatorList.count() ); | 1651 | } while ( x < visibleWidth() && n < d->mSeparatorList.count() ); |
1652 | d->mRubberBandAnchor = pos; | 1652 | d->mRubberBandAnchor = pos; |
1653 | } | 1653 | } |
1654 | 1654 | ||
1655 | 1655 | ||
1656 | int CardView::itemWidth() const | 1656 | int CardView::itemWidth() const |
1657 | { | 1657 | { |
1658 | return d->mItemWidth; | 1658 | return d->mItemWidth; |
1659 | } | 1659 | } |
1660 | 1660 | ||
1661 | void CardView::setItemWidth( int w ) | 1661 | void CardView::setItemWidth( int w ) |
1662 | { | 1662 | { |
1663 | if ( w == d->mItemWidth ) | 1663 | if ( w == d->mItemWidth ) |
1664 | return; | 1664 | return; |
1665 | if ( w < MIN_ITEM_WIDTH ) | 1665 | if ( w < MIN_ITEM_WIDTH ) |
1666 | w = MIN_ITEM_WIDTH; | 1666 | w = MIN_ITEM_WIDTH; |
1667 | d->mItemWidth = w; | 1667 | d->mItemWidth = w; |
1668 | setLayoutDirty( true ); | 1668 | setLayoutDirty( true ); |
1669 | #ifndef KAB_EMBEDDED | 1669 | #ifndef KAB_EMBEDDED |
1670 | updateContents(); | 1670 | updateContents(); |
1671 | #else //KAB_EMBEDDED | 1671 | #else //KAB_EMBEDDED |
1672 | //US updateContents( d->contentsX(), d->contentsY(), visibleWidth(), visibleHeight() ); | 1672 | //US updateContents( d->contentsX(), d->contentsY(), visibleWidth(), visibleHeight() ); |
1673 | qDebug("CardView::setItemWidth has to be verified"); | 1673 | qDebug("CardView::setItemWidth has to be verified"); |
1674 | updateContents( contentsX(), contentsY(), visibleWidth(), visibleHeight() ); | 1674 | updateContents( contentsX(), contentsY(), visibleWidth(), visibleHeight() ); |
1675 | #endif //KAB_EMBEDDED | 1675 | #endif //KAB_EMBEDDED |
1676 | } | 1676 | } |
1677 | 1677 | ||
1678 | void CardView::setHeaderFont( const QFont &fnt ) | 1678 | void CardView::setHeaderFont( const QFont &fnt ) |
1679 | { | 1679 | { |
1680 | d->mHeaderFont = fnt; | 1680 | d->mHeaderFont = fnt; |
1681 | delete d->mBFm; | 1681 | delete d->mBFm; |
1682 | d->mBFm = new QFontMetrics( fnt ); | 1682 | d->mBFm = new QFontMetrics( fnt ); |
1683 | } | 1683 | } |
1684 | 1684 | ||
1685 | QFont CardView::headerFont() const | 1685 | QFont CardView::headerFont() const |
1686 | { | 1686 | { |
1687 | return d->mHeaderFont; | 1687 | return d->mHeaderFont; |
1688 | } | 1688 | } |
1689 | 1689 | ||
1690 | void CardView::setFont( const QFont &fnt ) | 1690 | void CardView::setFont( const QFont &fnt ) |
1691 | { | 1691 | { |
1692 | QScrollView::setFont( fnt ); | 1692 | QScrollView::setFont( fnt ); |
1693 | delete d->mFm; | 1693 | delete d->mFm; |
1694 | d->mFm = new QFontMetrics( fnt ); | 1694 | d->mFm = new QFontMetrics( fnt ); |
1695 | } | 1695 | } |
1696 | 1696 | ||
1697 | int CardView::separatorWidth() | 1697 | int CardView::separatorWidth() |
1698 | { | 1698 | { |
1699 | return d->mSepWidth; | 1699 | return d->mSepWidth; |
1700 | } | 1700 | } |
1701 | 1701 | ||
1702 | void CardView::setSeparatorWidth( int width ) | 1702 | void CardView::setSeparatorWidth( int width ) |
1703 | { | 1703 | { |
1704 | d->mSepWidth = width; | 1704 | d->mSepWidth = width; |
1705 | setLayoutDirty( true ); // hmm, actually I could just adjust the x'es... | 1705 | setLayoutDirty( true ); // hmm, actually I could just adjust the x'es... |
1706 | } | 1706 | } |
1707 | 1707 | ||
1708 | int CardView::maxFieldLines() const | 1708 | int CardView::maxFieldLines() const |
1709 | { | 1709 | { |
1710 | return d->mMaxFieldLines; | 1710 | return d->mMaxFieldLines; |
1711 | } | 1711 | } |
1712 | 1712 | ||
1713 | void CardView::setMaxFieldLines( int howmany ) | 1713 | void CardView::setMaxFieldLines( int howmany ) |
1714 | { | 1714 | { |
1715 | d->mMaxFieldLines = howmany ? howmany : INT_MAX; | 1715 | d->mMaxFieldLines = howmany ? howmany : INT_MAX; |
1716 | // FIXME update, forcing the items to recalc height!! | 1716 | // FIXME update, forcing the items to recalc height!! |
1717 | } | 1717 | } |
1718 | //END Cardview | 1718 | //END Cardview |
1719 | 1719 | ||
1720 | #ifndef KAB_EMBEDDED | 1720 | #ifndef KAB_EMBEDDED |
1721 | #include "cardview.moc" | 1721 | #include "cardview.moc" |
1722 | #endif //KAB_EMBEDDED | 1722 | #endif //KAB_EMBEDDED |