summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--microkde/kdeui/klistview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/microkde/kdeui/klistview.cpp b/microkde/kdeui/klistview.cpp
index f7d2187..60f3084 100644
--- a/microkde/kdeui/klistview.cpp
+++ b/microkde/kdeui/klistview.cpp
@@ -99,769 +99,769 @@ public:
99 dragEnabled (false), 99 dragEnabled (false),
100 autoOpen (true), 100 autoOpen (true),
101 dropVisualizer (true), 101 dropVisualizer (true),
102 dropHighlighter (false), 102 dropHighlighter (false),
103 createChildren (true), 103 createChildren (true),
104 pressedOnSelected (false), 104 pressedOnSelected (false),
105 wasShiftEvent (false), 105 wasShiftEvent (false),
106 fullWidth (false), 106 fullWidth (false),
107 sortAscending(true), 107 sortAscending(true),
108 tabRename(true), 108 tabRename(true),
109 sortColumn(0), 109 sortColumn(0),
110 selectionDirection(0), 110 selectionDirection(0),
111 tooltipColumn (0), 111 tooltipColumn (0),
112 selectionMode (Single), 112 selectionMode (Single),
113 contextMenuKey ( Qt::Key_Menu ),//KGlobalSettings::contextMenuKey()), 113 contextMenuKey ( Qt::Key_Menu ),//KGlobalSettings::contextMenuKey()),
114 showContextMenusOnPress (true),//showContextMenusOnPress (KGlobalSettings::showContextMenusOnPress()), 114 showContextMenusOnPress (true),//showContextMenusOnPress (KGlobalSettings::showContextMenusOnPress()),
115 mDropVisualizerWidth (4) 115 mDropVisualizerWidth (4)
116 { 116 {
117 renameable += 0; 117 renameable += 0;
118//US connect(editor, SIGNAL(done(QListViewItem*,int)), listview, SLOT(doneEditing(QListViewItem*,int))); 118//US connect(editor, SIGNAL(done(QListViewItem*,int)), listview, SLOT(doneEditing(QListViewItem*,int)));
119 } 119 }
120 120
121 ~KListViewPrivate () 121 ~KListViewPrivate ()
122 { 122 {
123//US delete editor; 123//US delete editor;
124 } 124 }
125 125
126 QListViewItem* pCurrentItem; 126 QListViewItem* pCurrentItem;
127 127
128 QTimer autoSelect; 128 QTimer autoSelect;
129 int autoSelectDelay; 129 int autoSelectDelay;
130 130
131 QTimer dragExpand; 131 QTimer dragExpand;
132 QListViewItem* dragOverItem; 132 QListViewItem* dragOverItem;
133 QPoint dragOverPoint; 133 QPoint dragOverPoint;
134 134
135 QPoint startDragPos; 135 QPoint startDragPos;
136 int dragDelay; 136 int dragDelay;
137 137
138//US KListViewLineEdit *editor; 138//US KListViewLineEdit *editor;
139 QValueList<int> renameable; 139 QValueList<int> renameable;
140 140
141 bool cursorInExecuteArea:1; 141 bool cursorInExecuteArea:1;
142 bool bUseSingle:1; 142 bool bUseSingle:1;
143 bool bChangeCursorOverItem:1; 143 bool bChangeCursorOverItem:1;
144 bool itemsMovable:1; 144 bool itemsMovable:1;
145 bool selectedBySimpleMove : 1; 145 bool selectedBySimpleMove : 1;
146 bool selectedUsingMouse:1; 146 bool selectedUsingMouse:1;
147 bool itemsRenameable:1; 147 bool itemsRenameable:1;
148 bool validDrag:1; 148 bool validDrag:1;
149 bool dragEnabled:1; 149 bool dragEnabled:1;
150 bool autoOpen:1; 150 bool autoOpen:1;
151 bool dropVisualizer:1; 151 bool dropVisualizer:1;
152 bool dropHighlighter:1; 152 bool dropHighlighter:1;
153 bool createChildren:1; 153 bool createChildren:1;
154 bool pressedOnSelected:1; 154 bool pressedOnSelected:1;
155 bool wasShiftEvent:1; 155 bool wasShiftEvent:1;
156 bool fullWidth:1; 156 bool fullWidth:1;
157 bool sortAscending:1; 157 bool sortAscending:1;
158 bool tabRename:1; 158 bool tabRename:1;
159 159
160 int sortColumn; 160 int sortColumn;
161 161
162 //+1 means downwards (y increases, -1 means upwards, 0 means not selected), aleXXX 162 //+1 means downwards (y increases, -1 means upwards, 0 means not selected), aleXXX
163 int selectionDirection; 163 int selectionDirection;
164 int tooltipColumn; 164 int tooltipColumn;
165 165
166 SelectionModeExt selectionMode; 166 SelectionModeExt selectionMode;
167 int contextMenuKey; 167 int contextMenuKey;
168 bool showContextMenusOnPress; 168 bool showContextMenusOnPress;
169 169
170 QRect mOldDropVisualizer; 170 QRect mOldDropVisualizer;
171 int mDropVisualizerWidth; 171 int mDropVisualizerWidth;
172 QRect mOldDropHighlighter; 172 QRect mOldDropHighlighter;
173 QListViewItem *afterItemDrop; 173 QListViewItem *afterItemDrop;
174 QListViewItem *parentItemDrop; 174 QListViewItem *parentItemDrop;
175 175
176 QColor alternateBackground; 176 QColor alternateBackground;
177}; 177};
178 178
179/*US 179/*US
180KListViewLineEdit::KListViewLineEdit(KListView *parent) 180KListViewLineEdit::KListViewLineEdit(KListView *parent)
181 : KLineEdit(parent->viewport()), item(0), col(0), p(parent) 181 : KLineEdit(parent->viewport()), item(0), col(0), p(parent)
182{ 182{
183 setFrame( false ); 183 setFrame( false );
184 hide(); 184 hide();
185 connect( parent, SIGNAL( selectionChanged() ), SLOT( slotSelectionChanged() )); 185 connect( parent, SIGNAL( selectionChanged() ), SLOT( slotSelectionChanged() ));
186} 186}
187 187
188KListViewLineEdit::~KListViewLineEdit() 188KListViewLineEdit::~KListViewLineEdit()
189{ 189{
190} 190}
191 191
192void KListViewLineEdit::load(QListViewItem *i, int c) 192void KListViewLineEdit::load(QListViewItem *i, int c)
193{ 193{
194 item=i; 194 item=i;
195 col=c; 195 col=c;
196 196
197 QRect rect(p->itemRect(i)); 197 QRect rect(p->itemRect(i));
198 setText(item->text(c)); 198 setText(item->text(c));
199 199
200 int fieldX = rect.x() - 1; 200 int fieldX = rect.x() - 1;
201 int fieldW = p->columnWidth(col) + 2; 201 int fieldW = p->columnWidth(col) + 2;
202 202
203 int pos = p->header()->mapToIndex(col); 203 int pos = p->header()->mapToIndex(col);
204 for ( int index = 0; index < pos; index++ ) 204 for ( int index = 0; index < pos; index++ )
205 fieldX += p->columnWidth( p->header()->mapToSection( index )); 205 fieldX += p->columnWidth( p->header()->mapToSection( index ));
206 206
207 if ( col == 0 ) { 207 if ( col == 0 ) {
208 int d = i->depth() + (p->rootIsDecorated() ? 1 : 0); 208 int d = i->depth() + (p->rootIsDecorated() ? 1 : 0);
209 d *= p->treeStepSize(); 209 d *= p->treeStepSize();
210 fieldX += d; 210 fieldX += d;
211 fieldW -= d; 211 fieldW -= d;
212 } 212 }
213 213
214 if ( i->pixmap( col ) ) {// add width of pixmap 214 if ( i->pixmap( col ) ) {// add width of pixmap
215 int d = i->pixmap( col )->width(); 215 int d = i->pixmap( col )->width();
216 fieldX += d; 216 fieldX += d;
217 fieldW -= d; 217 fieldW -= d;
218 } 218 }
219 219
220 setGeometry(fieldX, rect.y() - 1, fieldW, rect.height() + 2); 220 setGeometry(fieldX, rect.y() - 1, fieldW, rect.height() + 2);
221 show(); 221 show();
222 setFocus(); 222 setFocus();
223} 223}
224*/ 224*/
225 /*Helper functions to for 225 /*Helper functions to for
226 *tabOrderedRename functionality. 226 *tabOrderedRename functionality.
227 */ 227 */
228 228
229static int nextCol (KListView *pl, QListViewItem *pi, int start, int dir) 229static int nextCol (KListView *pl, QListViewItem *pi, int start, int dir)
230{ 230{
231 if (pi) 231 if (pi)
232 { 232 {
233 //Find the next renameable column in the current row 233 //Find the next renameable column in the current row
234 for (; ((dir == +1) ? (start < pl->columns()) : (start >= 0)); start += dir) 234 for (; ((dir == +1) ? (start < pl->columns()) : (start >= 0)); start += dir)
235 if (pl->isRenameable(start)) 235 if (pl->isRenameable(start))
236 return start; 236 return start;
237 } 237 }
238 238
239 return -1; 239 return -1;
240} 240}
241 241
242static QListViewItem *prevItem (QListViewItem *pi) 242static QListViewItem *prevItem (QListViewItem *pi)
243{ 243{
244 QListViewItem *pa = pi->itemAbove(); 244 QListViewItem *pa = pi->itemAbove();
245 245
246 /*Does what the QListViewItem::previousSibling() 246 /*Does what the QListViewItem::previousSibling()
247 *of my dreams would do. 247 *of my dreams would do.
248 */ 248 */
249 if (pa && pa->parent() == pi->parent()) 249 if (pa && pa->parent() == pi->parent())
250 return pa; 250 return pa;
251 251
252 return NULL; 252 return NULL;
253} 253}
254 254
255static QListViewItem *lastQChild (QListViewItem *pi) 255static QListViewItem *lastQChild (QListViewItem *pi)
256{ 256{
257 if (pi) 257 if (pi)
258 { 258 {
259 /*Since there's no QListViewItem::lastChild(). 259 /*Since there's no QListViewItem::lastChild().
260 *This finds the last sibling for the given 260 *This finds the last sibling for the given
261 *item. 261 *item.
262 */ 262 */
263 for (QListViewItem *pt = pi->nextSibling(); pt; pt = pt->nextSibling()) 263 for (QListViewItem *pt = pi->nextSibling(); pt; pt = pt->nextSibling())
264 pi = pt; 264 pi = pt;
265 } 265 }
266 266
267 return pi; 267 return pi;
268} 268}
269/*US 269/*US
270void KListViewLineEdit::selectNextCell (QListViewItem *pitem, int column, bool forward) 270void KListViewLineEdit::selectNextCell (QListViewItem *pitem, int column, bool forward)
271{ 271{
272 const int ncols = p->columns(); 272 const int ncols = p->columns();
273 const int dir = forward ? +1 : -1; 273 const int dir = forward ? +1 : -1;
274 const int restart = forward ? 0 : (ncols - 1); 274 const int restart = forward ? 0 : (ncols - 1);
275 QListViewItem *top = (pitem && pitem->parent()) 275 QListViewItem *top = (pitem && pitem->parent())
276 ? pitem->parent()->firstChild() 276 ? pitem->parent()->firstChild()
277 : p->firstChild(); 277 : p->firstChild();
278 QListViewItem *pi = pitem; 278 QListViewItem *pi = pitem;
279 279
280 terminate(); //Save current changes 280 terminate(); //Save current changes
281 281
282 do 282 do
283 { 283 {
284*/ 284*/
285 /*Check the rest of the current row for an editable column, 285 /*Check the rest of the current row for an editable column,
286 *if that fails, check the entire next/previous row. The 286 *if that fails, check the entire next/previous row. The
287 *last case goes back to the first item in the current branch 287 *last case goes back to the first item in the current branch
288 *or the last item in the current branch depending on the 288 *or the last item in the current branch depending on the
289 *direction. 289 *direction.
290 */ 290 */
291/*US 291/*US
292 if ((column = nextCol(p, pi, column + dir, dir)) != -1 || 292 if ((column = nextCol(p, pi, column + dir, dir)) != -1 ||
293 (column = nextCol(p, (pi = (forward ? pi->nextSibling() : prevItem(pi))), restart, dir)) != -1 || 293 (column = nextCol(p, (pi = (forward ? pi->nextSibling() : prevItem(pi))), restart, dir)) != -1 ||
294 (column = nextCol(p, (pi = (forward ? top : lastQChild(pitem))), restart, dir)) != -1) 294 (column = nextCol(p, (pi = (forward ? top : lastQChild(pitem))), restart, dir)) != -1)
295 { 295 {
296 if (pi) 296 if (pi)
297 { 297 {
298 p->setCurrentItem(pi); //Calls terminate 298 p->setCurrentItem(pi); //Calls terminate
299 p->rename(pi, column); 299 p->rename(pi, column);
300*/ 300*/
301 /*Some listviews may override rename() to 301 /*Some listviews may override rename() to
302 *prevent certain items from being renamed, 302 *prevent certain items from being renamed,
303 *if this is done, [m_]item will be NULL 303 *if this is done, [m_]item will be NULL
304 *after the rename() call... try again. 304 *after the rename() call... try again.
305 */ 305 */
306/*US 306/*US
307 if (!item) 307 if (!item)
308 continue; 308 continue;
309 309
310 break; 310 break;
311 } 311 }
312 } 312 }
313 } 313 }
314 while (pi && !item); 314 while (pi && !item);
315} 315}
316*/ 316*/
317 317
318/*US 318/*US
319#ifdef KeyPress 319#ifdef KeyPress
320#undef KeyPress 320#undef KeyPress
321#endif 321#endif
322 322
323bool KListViewLineEdit::event (QEvent *pe) 323bool KListViewLineEdit::event (QEvent *pe)
324{ 324{
325 if (pe->type() == QEvent::KeyPress) 325 if (pe->type() == QEvent::KeyPress)
326 { 326 {
327 QKeyEvent *k = (QKeyEvent *) pe; 327 QKeyEvent *k = (QKeyEvent *) pe;
328 328
329 if ((k->key() == Qt::Key_Backtab || k->key() == Qt::Key_Tab) && 329 if ((k->key() == Qt::Key_Backtab || k->key() == Qt::Key_Tab) &&
330 p->tabOrderedRenaming() && p->itemsRenameable() && 330 p->tabOrderedRenaming() && p->itemsRenameable() &&
331 !(k->state() & ControlButton || k->state() & AltButton)) 331 !(k->state() & ControlButton || k->state() & AltButton))
332 { 332 {
333 selectNextCell(item, col, 333 selectNextCell(item, col,
334 (k->key() == Key_Tab && !(k->state() & ShiftButton))); 334 (k->key() == Key_Tab && !(k->state() & ShiftButton)));
335 return true; 335 return true;
336 } 336 }
337 } 337 }
338 338
339 return KLineEdit::event(pe); 339 return KLineEdit::event(pe);
340} 340}
341 341
342void KListViewLineEdit::keyPressEvent(QKeyEvent *e) 342void KListViewLineEdit::keyPressEvent(QKeyEvent *e)
343{ 343{
344 if(e->key() == Qt::Key_Return || e->key() == Qt::Key_Enter ) 344 if(e->key() == Qt::Key_Return || e->key() == Qt::Key_Enter )
345 terminate(true); 345 terminate(true);
346 else if(e->key() == Qt::Key_Escape) 346 else if(e->key() == Qt::Key_Escape)
347 terminate(false); 347 terminate(false);
348 else if (e->key() == Qt::Key_Down || e->key() == Qt::Key_Up) 348 else if (e->key() == Qt::Key_Down || e->key() == Qt::Key_Up)
349 { 349 {
350 terminate(true); 350 terminate(true);
351 KLineEdit::keyPressEvent(e); 351 KLineEdit::keyPressEvent(e);
352 } 352 }
353 else 353 else
354 KLineEdit::keyPressEvent(e); 354 KLineEdit::keyPressEvent(e);
355} 355}
356 356
357void KListViewLineEdit::terminate() 357void KListViewLineEdit::terminate()
358{ 358{
359 terminate(true); 359 terminate(true);
360} 360}
361 361
362void KListViewLineEdit::terminate(bool commit) 362void KListViewLineEdit::terminate(bool commit)
363{ 363{
364 if ( item ) 364 if ( item )
365 { 365 {
366 //kdDebug() << "KListViewLineEdit::terminate " << commit << endl; 366 //kdDebug() << "KListViewLineEdit::terminate " << commit << endl;
367 if (commit) 367 if (commit)
368 item->setText(col, text()); 368 item->setText(col, text());
369 int c=col; 369 int c=col;
370 QListViewItem *i=item; 370 QListViewItem *i=item;
371 col=0; 371 col=0;
372 item=0; 372 item=0;
373 hide(); // will call focusOutEvent, that's why we set item=0 before 373 hide(); // will call focusOutEvent, that's why we set item=0 before
374 emit done(i,c); 374 emit done(i,c);
375 } 375 }
376} 376}
377 377
378void KListViewLineEdit::focusOutEvent(QFocusEvent *ev) 378void KListViewLineEdit::focusOutEvent(QFocusEvent *ev)
379{ 379{
380 QFocusEvent * focusEv = static_cast<QFocusEvent*>(ev); 380 QFocusEvent * focusEv = static_cast<QFocusEvent*>(ev);
381 // Don't let a RMB close the editor 381 // Don't let a RMB close the editor
382 if (focusEv->reason() != QFocusEvent::Popup && focusEv->reason() != QFocusEvent::ActiveWindow) 382 if (focusEv->reason() != QFocusEvent::Popup && focusEv->reason() != QFocusEvent::ActiveWindow)
383 terminate(true); 383 terminate(true);
384} 384}
385 385
386void KListViewLineEdit::paintEvent( QPaintEvent *e ) 386void KListViewLineEdit::paintEvent( QPaintEvent *e )
387{ 387{
388 KLineEdit::paintEvent( e ); 388 KLineEdit::paintEvent( e );
389 389
390 if ( !frame() ) { 390 if ( !frame() ) {
391 QPainter p( this ); 391 QPainter p( this );
392 p.setClipRegion( e->region() ); 392 p.setClipRegion( e->region() );
393 p.drawRect( rect() ); 393 p.drawRect( rect() );
394 } 394 }
395} 395}
396 396
397// selection changed -> terminate. As our "item" can be already deleted, 397// selection changed -> terminate. As our "item" can be already deleted,
398// we can't call terminate(false), because that would emit done() with 398// we can't call terminate(false), because that would emit done() with
399// a dangling pointer to "item". 399// a dangling pointer to "item".
400void KListViewLineEdit::slotSelectionChanged() 400void KListViewLineEdit::slotSelectionChanged()
401{ 401{
402 item = 0; 402 item = 0;
403 col = 0; 403 col = 0;
404 hide(); 404 hide();
405} 405}
406*/ 406*/
407 407
408KListView::KListView( QWidget *parent, const char *name ,bool emulateRightMouse ) 408KListView::KListView( QWidget *parent, const char *name ,bool emulateRightMouse )
409 : QListView( parent, name ), 409 : QListView( parent, name ),
410 d (new KListViewPrivate (this)) 410 d (new KListViewPrivate (this))
411{ 411{
412#ifndef DESKTOP_VERSION 412#ifndef DESKTOP_VERSION
413 if ( emulateRightMouse ) 413 if ( emulateRightMouse )
414 QPEApplication::setStylusOperation( viewport(), QPEApplication::RightOnHold ); 414 QPEApplication::setStylusOperation( viewport(), QPEApplication::RightOnHold );
415#endif 415#endif
416//US setDragAutoScroll(true); 416//US setDragAutoScroll(true);
417 417
418 connect( this, SIGNAL( onViewport() ), 418 connect( this, SIGNAL( onViewport() ),
419 this, SLOT( slotOnViewport() ) ); 419 this, SLOT( slotOnViewport() ) );
420 connect( this, SIGNAL( onItem( QListViewItem * ) ), 420 connect( this, SIGNAL( onItem( QListViewItem * ) ),
421 this, SLOT( slotOnItem( QListViewItem * ) ) ); 421 this, SLOT( slotOnItem( QListViewItem * ) ) );
422 422
423 connect (this, SIGNAL(contentsMoving(int,int)), 423 connect (this, SIGNAL(contentsMoving(int,int)),
424 this, SLOT(cleanDropVisualizer())); 424 this, SLOT(cleanDropVisualizer()));
425 connect (this, SIGNAL(contentsMoving(int,int)), 425 connect (this, SIGNAL(contentsMoving(int,int)),
426 this, SLOT(cleanItemHighlighter())); 426 this, SLOT(cleanItemHighlighter()));
427 427
428/*US 428/*US
429 slotSettingsChanged(KApplication::SETTINGS_MOUSE); 429 slotSettingsChanged(KApplication::SETTINGS_MOUSE);
430 430
431 if (kapp) 431 if (kapp)
432 { 432 {
433 connect( kapp, SIGNAL( settingsChanged(int) ), SLOT( slotSettingsChanged(int) ) ); 433 connect( kapp, SIGNAL( settingsChanged(int) ), SLOT( slotSettingsChanged(int) ) );
434 kapp->addKipcEventMask( KIPC::SettingsChanged ); 434 kapp->addKipcEventMask( KIPC::SettingsChanged );
435 } 435 }
436*/ 436*/
437 slotSettingsChanged(1); //US do this to initialize the connections 437 slotSettingsChanged(1); //US do this to initialize the connections
438 438
439 439
440 connect(&d->autoSelect, SIGNAL( timeout() ), 440 connect(&d->autoSelect, SIGNAL( timeout() ),
441 this, SLOT( slotAutoSelect() ) ); 441 this, SLOT( slotAutoSelect() ) );
442 connect(&d->dragExpand, SIGNAL( timeout() ), 442 connect(&d->dragExpand, SIGNAL( timeout() ),
443 this, SLOT( slotDragExpand() ) ); 443 this, SLOT( slotDragExpand() ) );
444 444
445 // context menu handling 445 // context menu handling
446 if (d->showContextMenusOnPress) 446 if (d->showContextMenusOnPress)
447 { 447 {
448 connect (this, SIGNAL (rightButtonPressed (QListViewItem*, const QPoint&, int)), 448 connect (this, SIGNAL (rightButtonPressed (QListViewItem*, const QPoint&, int)),
449 this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int))); 449 this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int)));
450 } 450 }
451 else 451 else
452 { 452 {
453 connect (this, SIGNAL (rightButtonClicked (QListViewItem*, const QPoint&, int)), 453 connect (this, SIGNAL (rightButtonClicked (QListViewItem*, const QPoint&, int)),
454 this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int))); 454 this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int)));
455 } 455 }
456 456
457 connect (this, SIGNAL (menuShortCutPressed (KListView*, QListViewItem*)), 457 connect (this, SIGNAL (menuShortCutPressed (KListView*, QListViewItem*)),
458 this, SLOT (emitContextMenu (KListView*, QListViewItem*))); 458 this, SLOT (emitContextMenu (KListView*, QListViewItem*)));
459 459
460 460
461 //qDebug("KListView::KListView make alternate color configurable"); 461 //qDebug("KListView::KListView make alternate color configurable");
462 d->alternateBackground = KGlobalSettings::alternateBackgroundColor(); 462 d->alternateBackground = KGlobalSettings::alternateBackgroundColor();
463} 463}
464 464
465 465
466 466
467KListView::~KListView() 467KListView::~KListView()
468{ 468{
469 delete d; 469 delete d;
470} 470}
471 471
472bool KListView::isExecuteArea( const QPoint& point ) 472bool KListView::isExecuteArea( const QPoint& point )
473{ 473{
474 if ( itemAt( point ) ) 474 if ( itemAt( point ) )
475 return isExecuteArea( point.x() ); 475 return isExecuteArea( point.x() );
476 476
477 return false; 477 return false;
478} 478}
479QSize KListView::sizeHint() const 479QSize KListView::sizeHint() const
480{ 480{
481 //qDebug("KListView::QSize sizeHint() "); 481 //qDebug("KListView::QSize sizeHint() ");
482#ifdef DESKTOP_VERSION 482#ifdef DESKTOP_VERSION
483 QListView::sizeHint(); 483 return QListView::sizeHint();
484#else 484#else
485 return QSize ( 40, 40 ); 485 return QSize ( 40, 40 );
486#endif 486#endif
487 487
488} 488}
489bool KListView::isExecuteArea( int x ) 489bool KListView::isExecuteArea( int x )
490{ 490{
491 if( allColumnsShowFocus() ) 491 if( allColumnsShowFocus() )
492 return true; 492 return true;
493 else { 493 else {
494 int offset = 0; 494 int offset = 0;
495 int width = columnWidth( 0 ); 495 int width = columnWidth( 0 );
496 int pos = header()->mapToIndex( 0 ); 496 int pos = header()->mapToIndex( 0 );
497 497
498 for ( int index = 0; index < pos; index++ ) 498 for ( int index = 0; index < pos; index++ )
499 offset += columnWidth( header()->mapToSection( index ) ); 499 offset += columnWidth( header()->mapToSection( index ) );
500 500
501 x += contentsX(); // in case of a horizontal scrollbar 501 x += contentsX(); // in case of a horizontal scrollbar
502 return ( x > offset && x < ( offset + width ) ); 502 return ( x > offset && x < ( offset + width ) );
503 } 503 }
504} 504}
505 505
506void KListView::slotOnItem( QListViewItem *item ) 506void KListView::slotOnItem( QListViewItem *item )
507{ 507{
508 QPoint vp = viewport()->mapFromGlobal( QCursor::pos() ); 508 QPoint vp = viewport()->mapFromGlobal( QCursor::pos() );
509 if ( item && isExecuteArea( vp.x() ) && (d->autoSelectDelay > -1) && d->bUseSingle ) { 509 if ( item && isExecuteArea( vp.x() ) && (d->autoSelectDelay > -1) && d->bUseSingle ) {
510 d->autoSelect.start( d->autoSelectDelay, true ); 510 d->autoSelect.start( d->autoSelectDelay, true );
511 d->pCurrentItem = item; 511 d->pCurrentItem = item;
512 } 512 }
513} 513}
514 514
515void KListView::slotOnViewport() 515void KListView::slotOnViewport()
516{ 516{
517 if ( d->bChangeCursorOverItem ) 517 if ( d->bChangeCursorOverItem )
518 viewport()->unsetCursor(); 518 viewport()->unsetCursor();
519 519
520 d->autoSelect.stop(); 520 d->autoSelect.stop();
521 d->pCurrentItem = 0L; 521 d->pCurrentItem = 0L;
522} 522}
523 523
524void KListView::slotSettingsChanged(int category) 524void KListView::slotSettingsChanged(int category)
525{ 525{
526 //qDebug("KListView::slotSettingsChanged has to be verified"); 526 //qDebug("KListView::slotSettingsChanged has to be verified");
527 527
528 528
529 switch (category) 529 switch (category)
530 { 530 {
531 //US I create my private category (=1) to set the settings 531 //US I create my private category (=1) to set the settings
532 case 1: 532 case 1:
533 d->dragDelay = 2; 533 d->dragDelay = 2;
534 //US set explicitly d->bUseSingle = KGlobalSettings::singleClick(); 534 //US set explicitly d->bUseSingle = KGlobalSettings::singleClick();
535 // qDebug("KListView::slotSettingsChanged: single%i", d->bUseSingle); 535 // qDebug("KListView::slotSettingsChanged: single%i", d->bUseSingle);
536 536
537 disconnect(this, SIGNAL (mouseButtonClicked (int, QListViewItem*, const QPoint &, int)), 537 disconnect(this, SIGNAL (mouseButtonClicked (int, QListViewItem*, const QPoint &, int)),
538 this, SLOT (slotMouseButtonClicked (int, QListViewItem*, const QPoint &, int))); 538 this, SLOT (slotMouseButtonClicked (int, QListViewItem*, const QPoint &, int)));
539 539
540 if( d->bUseSingle ) 540 if( d->bUseSingle )
541 connect (this, SIGNAL (mouseButtonClicked (int, QListViewItem*, const QPoint &, int)), 541 connect (this, SIGNAL (mouseButtonClicked (int, QListViewItem*, const QPoint &, int)),
542 this, SLOT (slotMouseButtonClicked( int, QListViewItem*, const QPoint &, int))); 542 this, SLOT (slotMouseButtonClicked( int, QListViewItem*, const QPoint &, int)));
543 543
544 //US d->bChangeCursorOverItem = KGlobalSettings::changeCursorOverIcon(); 544 //US d->bChangeCursorOverItem = KGlobalSettings::changeCursorOverIcon();
545 //US d->autoSelectDelay = KGlobalSettings::autoSelectDelay(); 545 //US d->autoSelectDelay = KGlobalSettings::autoSelectDelay();
546 546
547 if( !d->bUseSingle || !d->bChangeCursorOverItem ) 547 if( !d->bUseSingle || !d->bChangeCursorOverItem )
548 viewport()->unsetCursor(); 548 viewport()->unsetCursor();
549 549
550 break; 550 break;
551 551
552 /*US 552 /*US
553 case KApplication::SETTINGS_MOUSE: 553 case KApplication::SETTINGS_MOUSE:
554 d->dragDelay = KGlobalSettings::dndEventDelay(); 554 d->dragDelay = KGlobalSettings::dndEventDelay();
555 d->bUseSingle = KGlobalSettings::singleClick(); 555 d->bUseSingle = KGlobalSettings::singleClick();
556 556
557 disconnect(this, SIGNAL (mouseButtonClicked (int, QListViewItem*, const QPoint &, int)), 557 disconnect(this, SIGNAL (mouseButtonClicked (int, QListViewItem*, const QPoint &, int)),
558 this, SLOT (slotMouseButtonClicked (int, QListViewItem*, const QPoint &, int))); 558 this, SLOT (slotMouseButtonClicked (int, QListViewItem*, const QPoint &, int)));
559 559
560 if( d->bUseSingle ) 560 if( d->bUseSingle )
561 connect (this, SIGNAL (mouseButtonClicked (int, QListViewItem*, const QPoint &, int)), 561 connect (this, SIGNAL (mouseButtonClicked (int, QListViewItem*, const QPoint &, int)),
562 this, SLOT (slotMouseButtonClicked( int, QListViewItem*, const QPoint &, int))); 562 this, SLOT (slotMouseButtonClicked( int, QListViewItem*, const QPoint &, int)));
563 563
564 d->bChangeCursorOverItem = KGlobalSettings::changeCursorOverIcon(); 564 d->bChangeCursorOverItem = KGlobalSettings::changeCursorOverIcon();
565 d->autoSelectDelay = KGlobalSettings::autoSelectDelay(); 565 d->autoSelectDelay = KGlobalSettings::autoSelectDelay();
566 566
567 if( !d->bUseSingle || !d->bChangeCursorOverItem ) 567 if( !d->bUseSingle || !d->bChangeCursorOverItem )
568 viewport()->unsetCursor(); 568 viewport()->unsetCursor();
569 569
570 break; 570 break;
571 case KApplication::SETTINGS_POPUPMENU: 571 case KApplication::SETTINGS_POPUPMENU:
572 d->contextMenuKey = KGlobalSettings::contextMenuKey (); 572 d->contextMenuKey = KGlobalSettings::contextMenuKey ();
573 d->showContextMenusOnPress = KGlobalSettings::showContextMenusOnPress (); 573 d->showContextMenusOnPress = KGlobalSettings::showContextMenusOnPress ();
574 574
575 if (d->showContextMenusOnPress) 575 if (d->showContextMenusOnPress)
576 { 576 {
577 disconnect (0L, 0L, this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int))); 577 disconnect (0L, 0L, this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int)));
578 578
579 connect(this, SIGNAL (rightButtonPressed (QListViewItem*, const QPoint&, int)), 579 connect(this, SIGNAL (rightButtonPressed (QListViewItem*, const QPoint&, int)),
580 this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int))); 580 this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int)));
581 } 581 }
582 else 582 else
583 { 583 {
584 disconnect (0L, 0L, this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int))); 584 disconnect (0L, 0L, this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int)));
585 585
586 connect(this, SIGNAL (rightButtonClicked (QListViewItem*, const QPoint&, int)), 586 connect(this, SIGNAL (rightButtonClicked (QListViewItem*, const QPoint&, int)),
587 this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int))); 587 this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int)));
588 } 588 }
589 break; 589 break;
590 */ 590 */
591 591
592 default: 592 default:
593 break; 593 break;
594 } 594 }
595 595
596} 596}
597 597
598void KListView::slotAutoSelect() 598void KListView::slotAutoSelect()
599{ 599{
600 // check that the item still exists 600 // check that the item still exists
601 if( itemIndex( d->pCurrentItem ) == -1 ) 601 if( itemIndex( d->pCurrentItem ) == -1 )
602 return; 602 return;
603 603
604 if (!isActiveWindow()) 604 if (!isActiveWindow())
605 { 605 {
606 d->autoSelect.stop(); 606 d->autoSelect.stop();
607 return; 607 return;
608 } 608 }
609 609
610 //Give this widget the keyboard focus. 610 //Give this widget the keyboard focus.
611 if( !hasFocus() ) 611 if( !hasFocus() )
612 setFocus(); 612 setFocus();
613 613
614 QListViewItem* previousItem = currentItem(); 614 QListViewItem* previousItem = currentItem();
615 setCurrentItem( d->pCurrentItem ); 615 setCurrentItem( d->pCurrentItem );
616 616
617#if 0 617#if 0
618#ifndef Q_WS_QWS 618#ifndef Q_WS_QWS
619 // FIXME(E): Implement for Qt Embedded 619 // FIXME(E): Implement for Qt Embedded
620 if( d->pCurrentItem ) { 620 if( d->pCurrentItem ) {
621 //Shift pressed? 621 //Shift pressed?
622 if( (keybstate & ShiftMask) ) { 622 if( (keybstate & ShiftMask) ) {
623 bool block = signalsBlocked(); 623 bool block = signalsBlocked();
624 blockSignals( true ); 624 blockSignals( true );
625 625
626 //No Ctrl? Then clear before! 626 //No Ctrl? Then clear before!
627 if( !(keybstate & ControlMask) ) 627 if( !(keybstate & ControlMask) )
628 clearSelection(); 628 clearSelection();
629 629
630 bool select = !d->pCurrentItem->isSelected(); 630 bool select = !d->pCurrentItem->isSelected();
631 bool update = viewport()->isUpdatesEnabled(); 631 bool update = viewport()->isUpdatesEnabled();
632 viewport()->setUpdatesEnabled( false ); 632 viewport()->setUpdatesEnabled( false );
633 633
634 bool down = previousItem->itemPos() < d->pCurrentItem->itemPos(); 634 bool down = previousItem->itemPos() < d->pCurrentItem->itemPos();
635 QListViewItemIterator lit( down ? previousItem : d->pCurrentItem ); 635 QListViewItemIterator lit( down ? previousItem : d->pCurrentItem );
636 for ( ; lit.current(); ++lit ) { 636 for ( ; lit.current(); ++lit ) {
637 if ( down && lit.current() == d->pCurrentItem ) { 637 if ( down && lit.current() == d->pCurrentItem ) {
638 d->pCurrentItem->setSelected( select ); 638 d->pCurrentItem->setSelected( select );
639 break; 639 break;
640 } 640 }
641 if ( !down && lit.current() == previousItem ) { 641 if ( !down && lit.current() == previousItem ) {
642 previousItem->setSelected( select ); 642 previousItem->setSelected( select );
643 break; 643 break;
644 } 644 }
645 lit.current()->setSelected( select ); 645 lit.current()->setSelected( select );
646 } 646 }
647 647
648 blockSignals( block ); 648 blockSignals( block );
649 viewport()->setUpdatesEnabled( update ); 649 viewport()->setUpdatesEnabled( update );
650 triggerUpdate(); 650 triggerUpdate();
651 651
652 emit selectionChanged(); 652 emit selectionChanged();
653 653
654 if( selectionMode() == QListView::Single ) 654 if( selectionMode() == QListView::Single )
655 emit selectionChanged( d->pCurrentItem ); 655 emit selectionChanged( d->pCurrentItem );
656 } 656 }
657 else if( (keybstate & ControlMask) ) 657 else if( (keybstate & ControlMask) )
658 setSelected( d->pCurrentItem, !d->pCurrentItem->isSelected() ); 658 setSelected( d->pCurrentItem, !d->pCurrentItem->isSelected() );
659 else { 659 else {
660 bool block = signalsBlocked(); 660 bool block = signalsBlocked();
661 blockSignals( true ); 661 blockSignals( true );
662 662
663 if( !d->pCurrentItem->isSelected() ) 663 if( !d->pCurrentItem->isSelected() )
664 clearSelection(); 664 clearSelection();
665 665
666 blockSignals( block ); 666 blockSignals( block );
667 667
668 setSelected( d->pCurrentItem, true ); 668 setSelected( d->pCurrentItem, true );
669 } 669 }
670 } 670 }
671 else 671 else
672 kdDebug() << "KListView::slotAutoSelect: Thats not supposed to happen!!!!" << endl; 672 kdDebug() << "KListView::slotAutoSelect: Thats not supposed to happen!!!!" << endl;
673#endif 673#endif
674#endif 674#endif
675} 675}
676 676
677void KListView::slotHeaderChanged() 677void KListView::slotHeaderChanged()
678{ 678{
679 if (d->fullWidth && columns()) 679 if (d->fullWidth && columns())
680 { 680 {
681 int w = 0; 681 int w = 0;
682 for (int i = 0; i < columns() - 1; ++i) w += columnWidth(i); 682 for (int i = 0; i < columns() - 1; ++i) w += columnWidth(i);
683 setColumnWidth( columns() - 1, viewport()->width() - w - 1 ); 683 setColumnWidth( columns() - 1, viewport()->width() - w - 1 );
684 } 684 }
685} 685}
686 686
687void KListView::emitExecute( int buttonstate, QListViewItem *item, const QPoint &pos, int c) 687void KListView::emitExecute( int buttonstate, QListViewItem *item, const QPoint &pos, int c)
688{ 688{
689 // qDebug("KListView::emitExecute buttonstate=%i", buttonstate); 689 // qDebug("KListView::emitExecute buttonstate=%i", buttonstate);
690 if( isExecuteArea( viewport()->mapFromGlobal(pos) ) ) { 690 if( isExecuteArea( viewport()->mapFromGlobal(pos) ) ) {
691 691
692 // Double click mode ? 692 // Double click mode ?
693 if ( !d->bUseSingle ) 693 if ( !d->bUseSingle )
694 { 694 {
695 emit executed( item ); 695 emit executed( item );
696 emit executed( item, pos, c ); 696 emit executed( item, pos, c );
697 } 697 }
698 else 698 else
699 { 699 {
700 //US special implementation for embedded systems 700 //US special implementation for embedded systems
701 d->autoSelect.stop(); 701 d->autoSelect.stop();
702 702
703 //Dont emit executed if in SC mode and Shift or Ctrl are pressed 703 //Dont emit executed if in SC mode and Shift or Ctrl are pressed
704 if( !( (buttonstate==ShiftButton) || (buttonstate==ControlButton) )) { 704 if( !( (buttonstate==ShiftButton) || (buttonstate==ControlButton) )) {
705 // if( !( ((keybstate & ShiftMask) || (keybstate & ControlMask)) ) ) { 705 // if( !( ((keybstate & ShiftMask) || (keybstate & ControlMask)) ) ) {
706 706
707 emit executed( item ); 707 emit executed( item );
708 emit executed( item, pos, c ); 708 emit executed( item, pos, c );
709 } 709 }
710 } 710 }
711 } 711 }
712} 712}
713 713
714void KListView::focusInEvent( QFocusEvent *fe ) 714void KListView::focusInEvent( QFocusEvent *fe )
715{ 715{
716 // kdDebug()<<"KListView::focusInEvent()"<<endl; 716 // kdDebug()<<"KListView::focusInEvent()"<<endl;
717 QListView::focusInEvent( fe ); 717 QListView::focusInEvent( fe );
718 if ((d->selectedBySimpleMove) 718 if ((d->selectedBySimpleMove)
719 && (d->selectionMode == FileManager) 719 && (d->selectionMode == FileManager)
720 && (fe->reason()!=QFocusEvent::Popup) 720 && (fe->reason()!=QFocusEvent::Popup)
721 && (fe->reason()!=QFocusEvent::ActiveWindow) 721 && (fe->reason()!=QFocusEvent::ActiveWindow)
722 && (currentItem()!=0)) 722 && (currentItem()!=0))
723 { 723 {
724 currentItem()->setSelected(true); 724 currentItem()->setSelected(true);
725 currentItem()->repaint(); 725 currentItem()->repaint();
726 emit selectionChanged(); 726 emit selectionChanged();
727 }; 727 };
728} 728}
729 729
730void KListView::focusOutEvent( QFocusEvent *fe ) 730void KListView::focusOutEvent( QFocusEvent *fe )
731{ 731{
732 cleanDropVisualizer(); 732 cleanDropVisualizer();
733 cleanItemHighlighter(); 733 cleanItemHighlighter();
734 734
735 d->autoSelect.stop(); 735 d->autoSelect.stop();
736 736
737 if ((d->selectedBySimpleMove) 737 if ((d->selectedBySimpleMove)
738 && (d->selectionMode == FileManager) 738 && (d->selectionMode == FileManager)
739 && (fe->reason()!=QFocusEvent::Popup) 739 && (fe->reason()!=QFocusEvent::Popup)
740 && (fe->reason()!=QFocusEvent::ActiveWindow) 740 && (fe->reason()!=QFocusEvent::ActiveWindow)
741 && (currentItem()!=0) 741 && (currentItem()!=0)
742/*US && (!d->editor->isVisible()) */ 742/*US && (!d->editor->isVisible()) */
743 ) 743 )
744 { 744 {
745 currentItem()->setSelected(false); 745 currentItem()->setSelected(false);
746 currentItem()->repaint(); 746 currentItem()->repaint();
747 emit selectionChanged(); 747 emit selectionChanged();
748 }; 748 };
749 749
750 QListView::focusOutEvent( fe ); 750 QListView::focusOutEvent( fe );
751} 751}
752 752
753void KListView::leaveEvent( QEvent *e ) 753void KListView::leaveEvent( QEvent *e )
754{ 754{
755 d->autoSelect.stop(); 755 d->autoSelect.stop();
756 756
757 QListView::leaveEvent( e ); 757 QListView::leaveEvent( e );
758} 758}
759 759
760bool KListView::event( QEvent *e ) 760bool KListView::event( QEvent *e )
761{ 761{
762 if (e->type() == QEvent::ApplicationPaletteChange) { 762 if (e->type() == QEvent::ApplicationPaletteChange) {
763 //qDebug("KListView::event make alternate color configurable"); 763 //qDebug("KListView::event make alternate color configurable");
764//US d->alternateBackground=KGlobalSettings::alternateBackgroundColor(); 764//US d->alternateBackground=KGlobalSettings::alternateBackgroundColor();
765 d->alternateBackground = QColor(240, 240, 240); 765 d->alternateBackground = QColor(240, 240, 240);
766 } 766 }
767 767
768 return QListView::event(e); 768 return QListView::event(e);
769} 769}
770 770
771void KListView::contentsMousePressEvent( QMouseEvent *e ) 771void KListView::contentsMousePressEvent( QMouseEvent *e )
772{ 772{
773 //qDebug("KListView::contentsMousePressEvent"); 773 //qDebug("KListView::contentsMousePressEvent");
774 if( (selectionModeExt() == Extended) && (e->state() & ShiftButton) && !(e->state() & ControlButton) ) 774 if( (selectionModeExt() == Extended) && (e->state() & ShiftButton) && !(e->state() & ControlButton) )
775 { 775 {
776 bool block = signalsBlocked(); 776 bool block = signalsBlocked();
777 blockSignals( true ); 777 blockSignals( true );
778 778
779 clearSelection(); 779 clearSelection();
780 780
781 blockSignals( block ); 781 blockSignals( block );
782 } 782 }
783 else if ((selectionModeExt()==FileManager) && (d->selectedBySimpleMove)) 783 else if ((selectionModeExt()==FileManager) && (d->selectedBySimpleMove))
784 { 784 {
785 d->selectedBySimpleMove=false; 785 d->selectedBySimpleMove=false;
786 d->selectedUsingMouse=true; 786 d->selectedUsingMouse=true;
787 if (currentItem()!=0) 787 if (currentItem()!=0)
788 { 788 {
789 currentItem()->setSelected(false); 789 currentItem()->setSelected(false);
790 currentItem()->repaint(); 790 currentItem()->repaint();
791// emit selectionChanged(); 791// emit selectionChanged();
792 }; 792 };
793 }; 793 };
794 794
795 QPoint p( contentsToViewport( e->pos() ) ); 795 QPoint p( contentsToViewport( e->pos() ) );
796 QListViewItem *at = itemAt (p); 796 QListViewItem *at = itemAt (p);
797 797
798 // true if the root decoration of the item "at" was clicked (i.e. the +/- sign) 798 // true if the root decoration of the item "at" was clicked (i.e. the +/- sign)
799 bool rootDecoClicked = at 799 bool rootDecoClicked = at
800 && ( p.x() <= header()->cellPos( header()->mapToActual( 0 ) ) + 800 && ( p.x() <= header()->cellPos( header()->mapToActual( 0 ) ) +
801 treeStepSize() * ( at->depth() + ( rootIsDecorated() ? 1 : 0) ) + itemMargin() ) 801 treeStepSize() * ( at->depth() + ( rootIsDecorated() ? 1 : 0) ) + itemMargin() )
802 && ( p.x() >= header()->cellPos( header()->mapToActual( 0 ) ) ); 802 && ( p.x() >= header()->cellPos( header()->mapToActual( 0 ) ) );
803 803
804 if (e->button() == LeftButton && !rootDecoClicked) 804 if (e->button() == LeftButton && !rootDecoClicked)
805 { 805 {
806 //Start a drag 806 //Start a drag
807 d->startDragPos = e->pos(); 807 d->startDragPos = e->pos();
808 808
809 if (at) 809 if (at)
810 { 810 {
811 d->validDrag = true; 811 d->validDrag = true;
812 d->pressedOnSelected = at->isSelected(); 812 d->pressedOnSelected = at->isSelected();
813 } 813 }
814 } 814 }
815 815
816 QListView::contentsMousePressEvent( e ); 816 QListView::contentsMousePressEvent( e );
817} 817}
818 818
819void KListView::contentsMouseMoveEvent( QMouseEvent *e ) 819void KListView::contentsMouseMoveEvent( QMouseEvent *e )
820{ 820{
821 if (!dragEnabled() || d->startDragPos.isNull() || !d->validDrag) { 821 if (!dragEnabled() || d->startDragPos.isNull() || !d->validDrag) {
822 QListView::contentsMouseMoveEvent (e); 822 QListView::contentsMouseMoveEvent (e);
823 return; 823 return;
824 } 824 }
825 825
826 QPoint vp = contentsToViewport(e->pos()); 826 QPoint vp = contentsToViewport(e->pos());
827 QListViewItem *item = itemAt( vp ); 827 QListViewItem *item = itemAt( vp );
828 828
829 //do we process cursor changes at all? 829 //do we process cursor changes at all?
830 if ( item && d->bChangeCursorOverItem && d->bUseSingle ) 830 if ( item && d->bChangeCursorOverItem && d->bUseSingle )
831 { 831 {
832 //Cursor moved on a new item or in/out the execute area 832 //Cursor moved on a new item or in/out the execute area
833 if( (item != d->pCurrentItem) || 833 if( (item != d->pCurrentItem) ||
834 (isExecuteArea(vp) != d->cursorInExecuteArea) ) 834 (isExecuteArea(vp) != d->cursorInExecuteArea) )
835 { 835 {
836 d->cursorInExecuteArea = isExecuteArea(vp); 836 d->cursorInExecuteArea = isExecuteArea(vp);
837 //qDebug("KListView::contentsMouseMoveEvent drag&drop not supported yet"); 837 //qDebug("KListView::contentsMouseMoveEvent drag&drop not supported yet");
838/*US 838/*US
839 if( d->cursorInExecuteArea ) //cursor moved in execute area 839 if( d->cursorInExecuteArea ) //cursor moved in execute area
840 viewport()->setCursor( KCursor::handCursor() ); 840 viewport()->setCursor( KCursor::handCursor() );
841 else //cursor moved out of execute area 841 else //cursor moved out of execute area
842 viewport()->unsetCursor(); 842 viewport()->unsetCursor();
843*/ 843*/
844 } 844 }
845 } 845 }
846 846
847 bool dragOn = dragEnabled(); 847 bool dragOn = dragEnabled();
848 QPoint newPos = e->pos(); 848 QPoint newPos = e->pos();
849 if (dragOn && d->validDrag && 849 if (dragOn && d->validDrag &&
850 (newPos.x() > d->startDragPos.x()+d->dragDelay || 850 (newPos.x() > d->startDragPos.x()+d->dragDelay ||
851 newPos.x() < d->startDragPos.x()-d->dragDelay || 851 newPos.x() < d->startDragPos.x()-d->dragDelay ||
852 newPos.y() > d->startDragPos.y()+d->dragDelay || 852 newPos.y() > d->startDragPos.y()+d->dragDelay ||
853 newPos.y() < d->startDragPos.y()-d->dragDelay)) 853 newPos.y() < d->startDragPos.y()-d->dragDelay))
854 //(d->startDragPos - e->pos()).manhattanLength() > QApplication::startDragDistance()) 854 //(d->startDragPos - e->pos()).manhattanLength() > QApplication::startDragDistance())
855 { 855 {
856 QListView::contentsMouseReleaseEvent( 0 ); 856 QListView::contentsMouseReleaseEvent( 0 );
857 startDrag(); 857 startDrag();
858 d->startDragPos = QPoint(); 858 d->startDragPos = QPoint();
859 d->validDrag = false; 859 d->validDrag = false;
860 } 860 }
861} 861}
862 862
863void KListView::contentsMouseReleaseEvent( QMouseEvent *e ) 863void KListView::contentsMouseReleaseEvent( QMouseEvent *e )
864{ 864{
865 if (e->button() == LeftButton) 865 if (e->button() == LeftButton)
866 { 866 {
867 // If the row was already selected, maybe we want to start an in-place editing 867 // If the row was already selected, maybe we want to start an in-place editing