40
40
#include < QtDebug>
41
41
#include < QSettings>
42
42
#include < QDesktopWidget>
43
+ #include < QShortcut>
44
+ #include < QInputDialog>
45
+ #include < QListWidget>
43
46
44
47
static Navigator* s_this = 0 ;
45
48
static void report (QtMsgType type, const QString& message )
@@ -311,6 +314,7 @@ Navigator::Navigator(QWidget *parent)
311
314
createSourceTree ();
312
315
createXref ();
313
316
createLog ();
317
+ createAtomList ();
314
318
315
319
s_this = this ;
316
320
s_oldHandler = qInstallMessageHandler (messageHander);
@@ -330,6 +334,8 @@ Navigator::Navigator(QWidget *parent)
330
334
331
335
new Gui::AutoShortcut ( tr (" ALT+Left" ), this , this , SLOT (handleGoBack ()) );
332
336
new Gui::AutoShortcut ( tr (" ALT+Right" ), this , this , SLOT (handleGoForward ()) );
337
+ new QShortcut (tr (" CTRL+SHIFT+F" ),this ,SLOT (onSearchAtom ()));
338
+ new QShortcut (tr (" CTRL+SHIFT+A" ),this ,SLOT (onSelectAtom ()));
333
339
334
340
}
335
341
@@ -361,6 +367,8 @@ static QByteArray decode(const QByteArray& source)
361
367
bytes += " ↑" ;
362
368
else if ( isprint (ch) || isspace (ch) )
363
369
bytes += ch;
370
+ else if ( !bytes.isEmpty () && bytes[bytes.size ()-1 ] == ' %' )
371
+ bytes += ' ' ;
364
372
}
365
373
return bytes;
366
374
}
@@ -426,6 +434,7 @@ void Navigator::load(const QString& path)
426
434
viewer->clear ();
427
435
asts.clear ();
428
436
xref.clear ();
437
+ atomList->clear ();
429
438
root = path;
430
439
QStringList files = collectFiles (path);
431
440
QMap<QString,QTreeWidgetItem*> dirs;
@@ -454,6 +463,7 @@ void Navigator::load(const QString& path)
454
463
item->setText (0 , debang (info.baseName ()) );
455
464
item->setIcon (0 , fip.icon (QFileIconProvider::File));
456
465
item->setData (0 ,Qt::UserRole, f);
466
+ item->setToolTip (0 ,f);
457
467
458
468
QFile in (f);
459
469
if ( !in.open (QFile::ReadOnly) )
@@ -466,7 +476,8 @@ void Navigator::load(const QString& path)
466
476
if ( !r.read (&in, f) )
467
477
{
468
478
qCritical () << " ERROR " << info.baseName () << r.getPos ().row << r.getError ();
469
- }else
479
+ }
480
+ // else
470
481
{
471
482
Lisp::Reader::Object ast = r.getAst ();
472
483
asts.insert (f, ast);
@@ -482,9 +493,17 @@ void Navigator::load(const QString& path)
482
493
out.setDevice(&file);
483
494
ast.print(out);
484
495
}
496
+ #endif
497
+ #if 0
498
+ QFile file(f + ".lisp");
499
+ if( file.open(QFile::WriteOnly) )
500
+ {
501
+ in.reset();
502
+ QByteArray code = decode(in.readAll());
503
+ file.write( code );
504
+ }
485
505
#endif
486
506
}
487
- // return; // TEST
488
507
489
508
#if 0
490
509
Lisp::Lexer lex;
@@ -499,6 +518,8 @@ void Navigator::load(const QString& path)
499
518
qCritical() << t.getName() << t.pos.row << t.pos.col << t.val;
500
519
#endif
501
520
}
521
+
522
+ atomList->addItems (Lisp::Token::getAllSymbols ());
502
523
}
503
524
504
525
void Navigator::logMessage (const QString& str)
@@ -560,6 +581,31 @@ void Navigator::onUpdateLocation(int line, int col)
560
581
pushLocation (Location (viewer->getPath (), line,col,viewer->verticalScrollBar ()->value ()));
561
582
}
562
583
584
+ void Navigator::onSearchAtom ()
585
+ {
586
+ const QString pname = QInputDialog::getText (this , " Search Atom" , " Enter an atom pname (case sensitive)" );
587
+ if ( pname.isEmpty () )
588
+ return ;
589
+ const char * atom = Lisp::Token::getSymbol (pname.toUtf8 ());
590
+ fillXrefForAtom (atom, Lisp::RowCol ());
591
+ }
592
+
593
+ void Navigator::onSelectAtom ()
594
+ {
595
+ const QString pname = QInputDialog::getItem (this , " Select Atom" , " Select an atom from the list:" ,
596
+ Lisp::Token::getAllSymbols () );
597
+ if ( pname.isEmpty () )
598
+ return ;
599
+ const char * atom = Lisp::Token::getSymbol (pname.toUtf8 ());
600
+ fillXrefForAtom (atom, Lisp::RowCol ());
601
+ }
602
+
603
+ void Navigator::onAtomDblClicked (QListWidgetItem* item)
604
+ {
605
+ const char * atom = Lisp::Token::getSymbol (item->text ().toUtf8 ());
606
+ fillXrefForAtom (atom, Lisp::RowCol ());
607
+ }
608
+
563
609
void Navigator::pushLocation (const Navigator::Location& loc)
564
610
{
565
611
if ( d_pushBackLock )
@@ -643,7 +689,7 @@ void Navigator::createXref()
643
689
d_xref->setRootIsDecorated (false );
644
690
vbox->addWidget (d_xref);
645
691
dock->setWidget (pane);
646
- addDockWidget ( Qt::LeftDockWidgetArea , dock );
692
+ addDockWidget ( Qt::RightDockWidgetArea , dock );
647
693
connect (d_xref, SIGNAL (itemDoubleClicked (QTreeWidgetItem*,int )), this , SLOT (onXrefDblClicked ()) );
648
694
}
649
695
@@ -661,6 +707,20 @@ void Navigator::createLog()
661
707
new QShortcut (tr (" ESC" ), dock, SLOT (close ()) );
662
708
}
663
709
710
+ void Navigator::createAtomList ()
711
+ {
712
+ QDockWidget* dock = new QDockWidget ( tr (" Atoms" ), this );
713
+ dock->setObjectName (" AtomList" );
714
+ dock->setAllowedAreas ( Qt::AllDockWidgetAreas );
715
+ dock->setFeatures ( QDockWidget::DockWidgetMovable );
716
+ atomList = new QListWidget (dock);
717
+ atomList->setAlternatingRowColors (true );
718
+ atomList->setSortingEnabled (false );
719
+ dock->setWidget (atomList);
720
+ addDockWidget ( Qt::LeftDockWidgetArea, dock );
721
+ connect ( atomList,SIGNAL (itemDoubleClicked (QListWidgetItem*)),this ,SLOT (onAtomDblClicked (QListWidgetItem*)));
722
+ }
723
+
664
724
void Navigator::closeEvent (QCloseEvent* event)
665
725
{
666
726
QSettings s;
@@ -730,7 +790,7 @@ void Navigator::fillXrefForAtom(const char* atom, const Lisp::RowCol& rc)
730
790
QFont f = d_xref->font ();
731
791
f.setBold (true );
732
792
733
- d_xrefTitle->setText (atom);
793
+ d_xrefTitle->setText (tr ( " Atom: %1 " ). arg ( atom) );
734
794
const QString curMod = viewer->getPath ();
735
795
736
796
QTreeWidgetItem* black = 0 ;
@@ -821,7 +881,7 @@ int main(int argc, char *argv[])
821
881
a.
setOrganizationName (
" [email protected] " );
822
882
a.setOrganizationDomain (" github.com/rochus-keller/Interlisp" );
823
883
a.setApplicationName (" InterlispNavigator" );
824
- a.setApplicationVersion (" 0.2.0 " );
884
+ a.setApplicationVersion (" 0.2.1 " );
825
885
a.setStyle (" Fusion" );
826
886
Navigator w;
827
887
if ( a.arguments ().size () > 1 )
0 commit comments