]> git.lyx.org Git - lyx.git/commitdiff
Log:
authorAbdelrazak Younes <younes@lyx.org>
Fri, 31 Mar 2006 13:17:44 +0000 (13:17 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Fri, 31 Mar 2006 13:17:44 +0000 (13:17 +0000)
* convert to automatic slot connections
* fix TOC navigation
* delete non useful commented out code

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13536 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/QTocDialog.C
src/frontends/qt4/QTocDialog.h

index b3c706c8ff364f460a1b6d7287cf9fc3d3955510..cc077605fff6a0e145c38607d1c78d0b8219a7ba 100644 (file)
@@ -44,23 +44,52 @@ QTocDialog::QTocDialog(QToc * form)
        // disable sorting
        tocTW->setSortingEnabled(false);
        tocTW->setColumnCount(1);
+
        // hide the pointless QHeader
 //     QWidget * w = static_cast<QWidget*>(tocTW->child("list view header"));
 //     if (w)
 //             w->hide();
 
-       connect(closePB, SIGNAL(clicked()),
-               form, SLOT(slotClose()));
-
-       connect( tocTW, SIGNAL(itemClicked(QTreeWidgetItem*)), this, SLOT(select_adaptor(QTreeWidgetItem*)));
-    connect( typeCO, SIGNAL( activated(int) ), this, SLOT( activate_adaptor(int) ) );
-    connect( updatePB, SIGNAL( clicked() ), this, SLOT( update_adaptor() ) );
-    connect( depthSL, SIGNAL( valueChanged(int) ), this, SLOT( depth_adaptor(int) ) );
+//     connect(closePB, SIGNAL(clicked()),
+//             form, SLOT(slotClose()));
 }
 
 
 QTocDialog::~QTocDialog()
 {
+       accept();
+}
+
+void QTocDialog::on_tocTW_currentItemChanged(QTreeWidgetItem * current,
+                                                                QTreeWidgetItem * previous)
+{
+       form_->select(fromqstr(current->text(0)));
+               lyxerr[Debug::GUI]
+                       << fromqstr(current->text(0)) << " selected" << endl;
+}
+
+void QTocDialog::on_closePB_clicked()
+{
+       accept();
+}
+
+void QTocDialog::on_updatePB_clicked()
+{
+       form_->update();
+}
+
+void QTocDialog::on_depthSL_valueChanged(int depth) 
+{
+       if (depth == depth_)
+               return;
+
+       depth_ = depth;
+       updateToc(true);
+}
+
+void QTocDialog::on_typeCO_activated(int value)
+{
+       updateToc();
 }
 
 void QTocDialog::on_moveUpPB_clicked()
@@ -149,7 +178,6 @@ void QTocDialog::updateToc(bool newdepth)
 
                if (iter->depth == 1) {
                        topLevelItem = new QTreeWidgetItem(tocTW);
-//                     tocTW->addTopLevelItem(topLevelItem);
                        topLevelItem->setText(0, toqstr(iter->str));
                        if (iter->depth < depth_) tocTW->collapseItem(topLevelItem);
 
@@ -197,7 +225,6 @@ void QTocDialog::populateItem(QTreeWidgetItem * parentItem, toc::Toc::const_iter
 
                item = new QTreeWidgetItem(parentItem);
                item->setText(0, toqstr(iter->str));
-//             parentItem->addChild(item);
 
                if (iter->depth < depth_) tocTW->collapseItem(item);
 //             else tocTW->expandItem(item);
@@ -212,33 +239,6 @@ void QTocDialog::populateItem(QTreeWidgetItem * parentItem, toc::Toc::const_iter
        }
 }
 
-void QTocDialog::activate_adaptor(int)
-{
-       updateToc();
-}
-
-
-void QTocDialog::depth_adaptor(int depth)
-{
-       if (depth == depth_)
-               return;
-
-       depth_ = depth;
-       updateToc(true);
-}
-
-
-void QTocDialog::select_adaptor(QTreeWidgetItem * item)
-{
-       form_->select(fromqstr(item->text(0)));
-}
-
-
-void QTocDialog::update_adaptor()
-{
-       form_->update();
-}
-
 
 void QTocDialog::closeEvent(QCloseEvent * e)
 {
@@ -249,55 +249,3 @@ void QTocDialog::closeEvent(QCloseEvent * e)
 } // namespace frontend
 } // namespace lyx
 
-
-/*
-       stack<pair<QTreeWidgetItem *, QTreeWidgetItem *> > istack;
-       QTreeWidgetItem * last = 0;
-       QTreeWidgetItem * parent = 0;
-       QTreeWidgetItem * item;
-
-       // Yes, it is this ugly. Two reasons - root items must have
-       // a QListView parent, rather than QListViewItem; and the
-       // TOC can move in and out an arbitrary number of levels
-
-       for (toc::Toc::const_iterator iter = form_->get_toclist().begin();
-            iter != form_->get_toclist().end(); ++iter) {
-
-               if (iter->depth == 0) {
-                       TocTW
-
-               if (iter->depth == curdepth) {
-                       // insert it after the last one we processed
-                       if (!parent)
-                               item = (last ? new QTreeWidgetItem(tocTW,last) : new QTreeWidgetItem(tocTW));
-                       else
-                               item = (last ? new QTreeWidgetItem(parent,last) : new QTreeWidgetItem(parent));
-               } else if (iter->depth > curdepth) {
-                       int diff = iter->depth - curdepth;
-                       // first save old parent and last
-                       while (diff--)
-                               istack.push(pair< QTreeWidgetItem *, QTreeWidgetItem * >(parent,last));
-                       item = (last ? new QTreeWidgetItem(last) : new QTreeWidgetItem(tocTW));
-                       parent = last;
-               } else {
-                       int diff = curdepth - iter->depth;
-                       pair<QTreeWidgetItem *, QTreeWidgetItem * > top;
-                       // restore context
-                       while (diff--) {
-                               top = istack.top();
-                               istack.pop();
-                       }
-                       parent = top.first;
-                       last = top.second;
-                       // insert it after the last one we processed
-                       if (!parent)
-                               item = (last ? new QTreeWidgetItem(tocTW,last) : new QTreeWidgetItem(tocTW));
-                       else
-                               item = (last ? new QTreeWidgetItem(parent,last) : new QTreeWidgetItem(parent));
-               }
-               item->setText(0, toqstr(iter->str));
-               item->setOpen(iter->depth < depth_);
-               curdepth = iter->depth;
-               last = item;
-       }
-*/
\ No newline at end of file
index 9c8e1b8447051eb1483880b8b62a43b0e29b7356..95fc361371230b018a0082d1145c59e219383693 100644 (file)
@@ -39,13 +39,15 @@ public:
        /// update the float types
        void updateType();
 
-public slots:
-       void activate_adaptor(int);
-       void depth_adaptor(int);
-       void select_adaptor(QTreeWidgetItem *);
-       void update_adaptor();
-
 protected slots:
+       ///
+       void on_tocTW_currentItemChanged(QTreeWidgetItem * current,
+               QTreeWidgetItem * previous);
+
+       void on_closePB_clicked();
+       void on_updatePB_clicked();
+       void on_depthSL_valueChanged(int depth);
+       void on_typeCO_activated(int value);
        void on_moveUpPB_clicked();
        void on_moveDownPB_clicked();
        void on_moveInPB_clicked();