GUI tools for setting up indexing schedule, initial implementation done

Jean-Francois Dockes Jean-Francois Dockes 2011-12-07

added src/qtgui/rtitool.ui
added src/qtgui/rtitool.cpp
changed src/common/rclconfig.cpp
changed src/common/rclconfig.h
changed src/qtgui/crontool.cpp
changed src/qtgui/crontool.h
changed src/qtgui/crontool.ui
changed src/qtgui/firstidx.ui
changed src/qtgui/idxsched.h
changed src/qtgui/idxsched.ui
changed src/qtgui/rclmain.ui
changed src/qtgui/rclmain_w.cpp
changed src/qtgui/rclmain_w.h
changed src/qtgui/recoll.pro.in
changed src/utils/ecrontab.cpp
changed src/recollinstall.in
copied src/qtgui/firstidx.cpp -> src/qtgui/rtitool.h
src/qtgui/rtitool.ui Diff Switch to side-by-side view
Loading...
src/qtgui/rtitool.cpp Diff Switch to side-by-side view
Loading...
src/common/rclconfig.cpp Diff Switch to side-by-side view
Loading...
src/common/rclconfig.h Diff Switch to side-by-side view
Loading...
src/qtgui/crontool.cpp Diff Switch to side-by-side view
Loading...
src/qtgui/crontool.h Diff Switch to side-by-side view
Loading...
src/qtgui/crontool.ui Diff Switch to side-by-side view
Loading...
src/qtgui/firstidx.ui Diff Switch to side-by-side view
Loading...
src/qtgui/idxsched.h Diff Switch to side-by-side view
Loading...
src/qtgui/idxsched.ui Diff Switch to side-by-side view
Loading...
src/qtgui/rclmain.ui Diff Switch to side-by-side view
Loading...
src/qtgui/rclmain_w.cpp Diff Switch to side-by-side view
Loading...
src/qtgui/rclmain_w.h Diff Switch to side-by-side view
Loading...
src/qtgui/recoll.pro.in Diff Switch to side-by-side view
Loading...
src/utils/ecrontab.cpp Diff Switch to side-by-side view
Loading...
src/recollinstall.in Diff Switch to side-by-side view
Loading...
src/qtgui/firstidx.cpp to src/qtgui/rtitool.h
--- a/src/qtgui/firstidx.cpp
+++ b/src/qtgui/rtitool.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2005 J.F.Dockes
+/*
  *   This program is free software; you can redistribute it and/or modify
  *   it under the terms of the GNU General Public License as published by
  *   the Free Software Foundation; either version 2 of the License, or
@@ -14,4 +14,28 @@
  *   Free Software Foundation, Inc.,
  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  */
-#include "autoconfig.h"
+#ifndef _RTITOOL_W_H_INCLUDED_
+#define _RTITOOL_W_H_INCLUDED_
+
+#include "ui_rtitool.h"
+
+class QPushButton;
+
+class RTIToolW : public QDialog, public Ui::RTIToolW {
+    Q_OBJECT
+    public:
+    RTIToolW(QWidget * parent = 0) 
+	: QDialog(parent)
+    {
+	setupUi(this);
+	init();
+    }
+public slots:
+    void sesclicked(bool);
+    void accept();
+private:
+    void init();
+};
+
+
+#endif /* _RTITOOL_W_H_INCLUDED_ */