1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
|
/* This file is part of the KDE project
Copyright (C) 2000 David Faure <faure@kde.org>
Copyright (C) 2002-2003 Alexander Kellett <lypanov@kde.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License version 2 or at your option version 3 as published by
the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "toplevel.h"
#include "bookmarkmodel.h"
#include "bookmarkinfo.h"
#include "actionsimpl.h"
#include "exporters.h"
#include "settings.h"
#include "commands.h"
#include "commandhistory.h"
#include "kebsearchline.h"
#include "bookmarklistview.h"
#include <stdlib.h>
#include <QtGui/QClipboard>
#include <QtGui/QSplitter>
#include <QtGui/QLayout>
#include <QtGui/QLabel>
#include <QtGui/QApplication>
#include <kaction.h>
#include <kactioncollection.h>
#include <ktoggleaction.h>
#include <kbookmark.h>
#include <kbookmarkmanager.h>
#include <kdebug.h>
#include <kedittoolbar.h>
#include <kfiledialog.h>
#include <klineedit.h>
#include <klocale.h>
#include <kmessagebox.h>
#include <kstandardaction.h>
CurrentMgr *CurrentMgr::s_mgr = 0;
CurrentMgr::CurrentMgr()
: QObject(0),
m_mgr(0), m_model(0), ignorenext(0)
{
}
CurrentMgr::~CurrentMgr()
{
delete m_model;
//TESTING
m_model=0;
}
KBookmarkGroup CurrentMgr::root()
{
return mgr()->root();
}
KBookmark CurrentMgr::bookmarkAt(const QString &a)
{
return self()->mgr()->findByAddress(a);
}
bool CurrentMgr::managerSave() { return mgr()->save(); }
void CurrentMgr::saveAs(const QString &fileName) { mgr()->saveAs(fileName); }
void CurrentMgr::setUpdate(bool update) { mgr()->setUpdate(update); }
QString CurrentMgr::path() const { return mgr()->path(); }
void CurrentMgr::createManager(const QString &filename, const QString &dbusObjectName) {
if (m_mgr) {
kDebug()<<"ERROR calling createManager twice";
disconnect(m_mgr, 0, 0, 0);
// still todo - delete old m_mgr
}
kDebug()<<"DBus Object name: "<<dbusObjectName;
m_mgr = KBookmarkManager::managerForFile(filename, dbusObjectName);
if ( m_model ) {
m_model->setRoot(root());
} else {
m_model = new KBookmarkModel(root());
}
connect(m_mgr, SIGNAL( changed(const QString &, const QString &) ),
SLOT( slotBookmarksChanged(const QString &, const QString &) ));
}
void CurrentMgr::slotBookmarksChanged(const QString &, const QString &) {
if(ignorenext > 0) //We ignore the first changed signal after every change we did
{
--ignorenext;
return;
}
m_model->setRoot(m_mgr->root());
CmdHistory::self()->clearHistory();
KEBApp::self()->updateActions();
//KEBApp::self()->expandAll();
}
void CurrentMgr::notifyManagers(const KBookmarkGroup& grp)
{
++ignorenext;
mgr()->emitChanged(grp);
}
void CurrentMgr::notifyManagers() {
notifyManagers( root() );
}
void CurrentMgr::reloadConfig() {
mgr()->emitConfigChanged();
}
QString CurrentMgr::makeTimeStr(const QString & in)
{
int secs;
bool ok;
secs = in.toInt(&ok);
if (!ok)
return QString();
return makeTimeStr(secs);
}
QString CurrentMgr::makeTimeStr(int b)
{
QDateTime dt;
dt.setTime_t(b);
return (dt.daysTo(QDateTime::currentDateTime()) > 31)
? KGlobal::locale()->formatDate(dt.date(), KLocale::LongDate)
: KGlobal::locale()->formatDateTime(dt, KLocale::LongDate);
}
/* -------------------------- */
#include <QtDBus/QDBusConnection>
KEBApp *KEBApp::s_topLevel = 0;
KEBApp::KEBApp(
const QString &bookmarksFile, bool readonly,
const QString &address, bool browser, const QString &caption,
const QString &dbusObjectName
) : KXmlGuiWindow(), m_bookmarksFilename(bookmarksFile),
m_caption(caption),
m_dbusObjectName(dbusObjectName), m_readOnly(readonly),m_browser(browser)
{
QDBusConnection::sessionBus().registerObject("/keditbookmarks", this, QDBusConnection::ExportScriptableSlots);
Q_UNUSED(address);//FIXME sets the current item
m_cmdHistory = new CmdHistory(actionCollection());
s_topLevel = this;
createActions();
if (m_browser)
createGUI();
else
createGUI("keditbookmarks-genui.rc");
connect(qApp->clipboard(), SIGNAL( dataChanged() ),
SLOT( slotClipboardDataChanged() ));
KGlobal::locale()->insertCatalog("libkonq");
m_canPaste = false;
CurrentMgr::self()->createManager(m_bookmarksFilename, m_dbusObjectName);
mBookmarkListView = new BookmarkListView();
mBookmarkListView->setModel( CurrentMgr::self()->model() );
mBookmarkListView->setSelectionMode(QAbstractItemView::ExtendedSelection);
mBookmarkListView->loadColumnSetting();
mBookmarkListView->loadFoldedState();
KViewSearchLineWidget *searchline = new KViewSearchLineWidget(mBookmarkListView);
mBookmarkFolderView = new BookmarkFolderView(mBookmarkListView);
mBookmarkFolderView->expandAll();
QWidget * rightSide = new QWidget;
QVBoxLayout *listLayout = new QVBoxLayout(rightSide);
rightSide->setLayout(listLayout);
listLayout->addWidget(searchline);
listLayout->addWidget(mBookmarkListView);
m_bkinfo = new BookmarkInfoWidget(mBookmarkListView);
listLayout->addWidget(m_bkinfo);
QSplitter *hsplitter = new QSplitter(this);
hsplitter->setOrientation(Qt::Horizontal);
hsplitter->addWidget(mBookmarkFolderView);
hsplitter->addWidget(rightSide);
hsplitter->setStretchFactor(1,1);
setCentralWidget(hsplitter);
slotClipboardDataChanged();
setAutoSaveSettings();
connect(mBookmarkListView->selectionModel(), SIGNAL(selectionChanged( const QItemSelection &, const QItemSelection & )),
this, SLOT(selectionChanged()));
connect(mBookmarkFolderView->selectionModel(), SIGNAL(selectionChanged( const QItemSelection &, const QItemSelection & )),
this, SLOT(selectionChanged()));
setCancelFavIconUpdatesEnabled(false);
setCancelTestsEnabled(false);
updateActions();
}
void KEBApp::expandAll()
{
mBookmarkListView->expandAll();
}
void KEBApp::collapseAll()
{
mBookmarkListView->collapseAll();
}
QString KEBApp::bookmarkFilename()
{
return m_bookmarksFilename;
}
void KEBApp::reset(const QString & caption, const QString & bookmarksFileName)
{
//FIXME check this code, probably should be model()->setRoot instead of resetModel()
m_caption = caption;
m_bookmarksFilename = bookmarksFileName;
CurrentMgr::self()->createManager(m_bookmarksFilename, m_dbusObjectName); //FIXME this is still a memory leak (iff called by slotLoad)
CurrentMgr::self()->model()->resetModel();
updateActions();
}
void KEBApp::startEdit( Column c )
{
const QModelIndexList & list = mBookmarkListView->selectionModel()->selectedIndexes();
QModelIndexList::const_iterator it, end;
end = list.constEnd();
for(it = list.constBegin(); it != end; ++it)
if( (*it).column() == int(c) && (mBookmarkListView->model()->flags(*it) & Qt::ItemIsEditable) )
return mBookmarkListView->edit( *it );
}
//FIXME clean up and remove unneeded things
SelcAbilities KEBApp::getSelectionAbilities() const
{
SelcAbilities selctionAbilities;
selctionAbilities.itemSelected = false;
selctionAbilities.group = false;
selctionAbilities.separator = false;
selctionAbilities.urlIsEmpty = false;
selctionAbilities.root = false;
selctionAbilities.multiSelect = false;
selctionAbilities.singleSelect = false;
selctionAbilities.notEmpty = false;
selctionAbilities.deleteEnabled = false;
KBookmark nbk;
QModelIndexList sel = mBookmarkListView->selectionModel()->selectedIndexes();
int columnCount;
if(sel.count())
{
nbk = mBookmarkListView->bookmarkForIndex(sel.first());
columnCount = mBookmarkListView->model()->columnCount();
}
else
{
sel = mBookmarkFolderView->selectionModel()->selectedIndexes();
if(sel.count())
nbk = mBookmarkFolderView->bookmarkForIndex(sel.first());
columnCount = mBookmarkFolderView->model()->columnCount();
}
if ( sel.count() > 0)
{
selctionAbilities.deleteEnabled = true;
selctionAbilities.itemSelected = true;
selctionAbilities.group = nbk.isGroup();
selctionAbilities.separator = nbk.isSeparator();
selctionAbilities.urlIsEmpty = nbk.url().isEmpty();
selctionAbilities.root = nbk.address() == CurrentMgr::self()->root().address();
selctionAbilities.multiSelect = (sel.count() > columnCount);
selctionAbilities.singleSelect = (!selctionAbilities.multiSelect && selctionAbilities.itemSelected);
}
//FIXME check next line, if it actually works
selctionAbilities.notEmpty = CurrentMgr::self()->root().first().hasParent();
/* kDebug()
<<"\nsa.itemSelected "<<selctionAbilities.itemSelected
<<"\nsa.group "<<selctionAbilities.group
<<"\nsa.separator "<<selctionAbilities.separator
<<"\nsa.urlIsEmpty "<<selctionAbilities.urlIsEmpty
<<"\nsa.root "<<selctionAbilities.root
<<"\nsa.multiSelect "<<selctionAbilities.multiSelect
<<"\nsa.singleSelect "<<selctionAbilities.singleSelect
<<"\nsa.deleteEnabled"<<selctionAbilities.deleteEnabled
<<endl;
*/
return selctionAbilities;
}
void KEBApp::setActionsEnabled(SelcAbilities sa) {
KActionCollection * coll = actionCollection();
QStringList toEnable;
if (sa.multiSelect || (sa.singleSelect && !sa.root))
toEnable << "edit_copy";
if (sa.multiSelect || (sa.singleSelect && !sa.root && !sa.urlIsEmpty && !sa.group && !sa.separator))
toEnable << "openlink";
if (!m_readOnly) {
if (sa.notEmpty)
toEnable << "testall" << "updateallfavicons";
if ( sa.deleteEnabled && (sa.multiSelect || (sa.singleSelect && !sa.root)) )
toEnable << "delete" << "edit_cut";
if( sa.singleSelect)
if (m_canPaste)
toEnable << "edit_paste";
if( sa.multiSelect || (sa.singleSelect && !sa.root && !sa.urlIsEmpty && !sa.group && !sa.separator))
toEnable << "testlink" << "updatefavicon";
if (sa.singleSelect && !sa.root && !sa.separator) {
toEnable << "rename" << "changeicon" << "changecomment";
if (!sa.group)
toEnable << "changeurl";
}
if (sa.singleSelect) {
toEnable << "newfolder" << "newbookmark" << "insertseparator";
if (sa.group)
toEnable << "sort" << "recursivesort" << "setastoolbar";
}
}
for ( QStringList::const_iterator it = toEnable.constBegin();
it != toEnable.constEnd(); ++it )
{
//kDebug() <<" enabling action "<<(*it);
coll->action((*it).toAscii().data())->setEnabled(true);
}
}
KBookmark KEBApp::firstSelected() const
{
QModelIndex index;
const QModelIndexList & list = mBookmarkListView->selectionModel()->selectedIndexes();
if(list.count()) // selection in main listview, return bookmark for firstSelected
return mBookmarkListView->bookmarkForIndex(*list.constBegin());
// no selection in main listview, fall back to selection in left tree
const QModelIndexList & list2 = mBookmarkFolderView->selectionModel()->selectedIndexes();
return mBookmarkFolderView->bookmarkForIndex(*list2.constBegin());
}
QString KEBApp::insertAddress() const
{
KBookmark current = firstSelected();
return (current.isGroup())
? (current.address() + "/0") //FIXME internal represantation used
: KBookmark::nextAddress(current.address());
}
bool lessAddress(const QString& first, const QString& second)
{
QString a = first;
QString b = second;
if(a == b)
return false;
QString error("ERROR");
if(a == error)
return false;
if(b == error)
return true;
a += '/';
b += '/';
uint aLast = 0;
uint bLast = 0;
uint aEnd = a.length();
uint bEnd = b.length();
// Each iteration checks one "/"-delimeted part of the address
// "" is treated correctly
while(true)
{
// Invariant: a[0 ... aLast] == b[0 ... bLast]
if(aLast + 1 == aEnd) //The last position was the last slash
return true; // That means a is shorter than b
if(bLast +1 == bEnd)
return false;
uint aNext = a.indexOf("/", aLast + 1);
uint bNext = b.indexOf("/", bLast + 1);
bool okay;
uint aNum = a.mid(aLast + 1, aNext - aLast - 1).toUInt(&okay);
if(!okay)
return false;
uint bNum = b.mid(bLast + 1, bNext - bLast - 1).toUInt(&okay);
if(!okay)
return true;
if(aNum != bNum)
return aNum < bNum;
aLast = aNext;
bLast = bNext;
}
}
bool lessBookmark(const KBookmark & first, const KBookmark & second) //FIXME Using internal represantation
{
return lessAddress(first.address(), second.address());
}
KBookmark::List KEBApp::allBookmarks() const
{
KBookmark::List bookmarks;
selectedBookmarksExpandedHelper(CurrentMgr::self()->root(), bookmarks);
return bookmarks;
}
KBookmark::List KEBApp::selectedBookmarks() const
{
KBookmark::List bookmarks;
const QModelIndexList & list = mBookmarkListView->selectionModel()->selectedIndexes();
if (!list.isEmpty()) {
QModelIndexList::const_iterator it, end;
end = list.constEnd();
for( it = list.constBegin(); it != end; ++it) {
if((*it).column() != 0)
continue;
KBookmark bk = mBookmarkListView->bookmarkModel()->bookmarkForIndex(*it);;
if(bk.address() != CurrentMgr::self()->root().address())
bookmarks.push_back( bk );
}
qSort(bookmarks.begin(), bookmarks.end(), lessBookmark);
} else {
bookmarks.push_back(firstSelected());
}
return bookmarks;
}
KBookmark::List KEBApp::selectedBookmarksExpanded() const
{
KBookmark::List bookmarks = selectedBookmarks();
KBookmark::List result;
KBookmark::List::const_iterator it, end;
end = bookmarks.constEnd();
for(it = bookmarks.constBegin(); it != end; ++it)
{
selectedBookmarksExpandedHelper( *it, result );
}
return result;
}
void KEBApp::selectedBookmarksExpandedHelper(const KBookmark& bk, KBookmark::List & bookmarks) const
{
//FIXME in which order parents should ideally be: parent then child
// or child and then parents
if(bk.isGroup())
{
KBookmarkGroup parent = bk.toGroup();
KBookmark child = parent.first();
while(!child.isNull())
{
selectedBookmarksExpandedHelper(child, bookmarks);
child = parent.next(child);
}
}
else
{
bookmarks.push_back( bk );
}
}
void KEBApp::updateStatus(const QString &url)
{
if(m_bkinfo->bookmark().url() == url)
m_bkinfo->updateStatus();
}
KEBApp::~KEBApp() {
// Save again, just in case the user expanded/collapsed folders (#131127)
CurrentMgr::self()->notifyManagers();
s_topLevel = 0;
delete m_cmdHistory;
delete ActionsImpl::self();
delete mBookmarkListView;
delete CurrentMgr::self();
}
KToggleAction* KEBApp::getToggleAction(const char *action) const {
return static_cast<KToggleAction*>(actionCollection()->action(action));
}
void KEBApp::resetActions() {
stateChanged("disablestuff");
stateChanged("normal");
if (!m_readOnly)
stateChanged("notreadonly");
}
void KEBApp::selectionChanged()
{
updateActions();
}
void KEBApp::updateActions() {
resetActions();
setActionsEnabled(getSelectionAbilities());
}
void KEBApp::slotClipboardDataChanged() {
// kDebug() << "KEBApp::slotClipboardDataChanged";
if (!m_readOnly) {
m_canPaste = KBookmark::List::canDecode(
QApplication::clipboard()->mimeData());
updateActions();
}
}
/* -------------------------- */
void KEBApp::notifyCommandExecuted() {
// kDebug() << "KEBApp::notifyCommandExecuted()";
updateActions();
}
/* -------------------------- */
void KEBApp::slotConfigureToolbars() {
saveMainWindowSettings(KConfigGroup( KGlobal::config(), "MainWindow") );
KEditToolBar dlg(actionCollection(), this);
connect(&dlg, SIGNAL( newToolBarConfig() ),
SLOT( slotNewToolbarConfig() ));
dlg.exec();
}
void KEBApp::slotNewToolbarConfig() {
// called when OK or Apply is clicked
createGUI();
applyMainWindowSettings(KConfigGroup(KGlobal::config(), "MainWindow") );
}
/* -------------------------- */
#include "toplevel.moc"
|