]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/kde/tocdlg.h
remove all kde files
[lyx.git] / src / frontends / kde / tocdlg.h
diff --git a/src/frontends/kde/tocdlg.h b/src/frontends/kde/tocdlg.h
deleted file mode 100644 (file)
index e185fb9..0000000
+++ /dev/null
@@ -1,98 +0,0 @@
-/**
- * \file tocdlg.h
- * Copyright 2001 the LyX Team
- * Read the file COPYING
- *
- * \author John Levon
- */
-
-#ifndef TOCDLG_H
-#define TOCDLG_H
-
-#include <config.h>
-#include <gettext.h>
-
-#include <debug.h>
-#include <qlabel.h> 
-#include <qdialog.h>
-#include <qlayout.h>
-#include <qpushbutton.h>
-#include <qcombobox.h>
-#include <qlistview.h>
-#include <qslider.h>
-
-#include "FormToc.h"
-
-class TocDialog : public QDialog {
-       Q_OBJECT
-public:
-       TocDialog(FormToc * form, QWidget * parent=0, char const * name=0,
-                           bool modal=false, WFlags f=0);
-       ~TocDialog();
-
-       // widgets
-
-       QComboBox * menu;
-       QListView * tree;
-       QPushButton * buttonUpdate;
-       QPushButton * buttonClose;
-       QSlider * depth;
-       QLabel * depthlabel; 
-
-protected:
-       void closeEvent(QCloseEvent * e);
-
-private:
-       FormToc * form_;
-
-       // layouts 
-
-       QHBoxLayout * topLayout;
-       QVBoxLayout * layout;
-       QHBoxLayout * buttonLayout;
-
-private slots:
-       /// adaptor to FormToc::select
-       void select_adaptor(QListViewItem * item) {
-               form_->select(item->text(0));
-       }
-
-       /// adaptor to FormToc::set_depth
-       void depth_adaptor(int depth) {
-               form_->set_depth(depth);
-       }
-
-       /// adaptor to FormToc::update
-       void update_adaptor(void) {
-               form_->update();
-       }
-
-       // adaptors to FormToc::set_type
-       void activate_adaptor(int index) {
-               switch (index) {
-                       case 0:
-                               form_->set_type(Buffer::TOC_TOC);
-                               break;
-                       case 1:
-                               form_->set_type(Buffer::TOC_LOF);
-                               break;
-                       case 2:
-                               form_->set_type(Buffer::TOC_LOT);
-                               break;
-                       case 3:
-                               form_->set_type(Buffer::TOC_LOA);
-                               break;
-                       default:
-                               lyxerr[Debug::GUI] << "Unknown TOC combo selection." << std::endl;
-                               break;
-               }
-       }
-
-       /// adaptor to FormToc::close
-       void close_adaptor(void) {
-               form_->close();
-               hide();
-       }
-};
-
-#endif // TOCDLG_H