Switch to side-by-side view

--- a/src/qtgui/rclm_wins.cpp
+++ b/src/qtgui/rclm_wins.cpp
@@ -28,6 +28,7 @@
 #include "rtitool.h"
 #include "snippets_w.h"
 #include "fragbuts.h"
+#include "specialindex.h"
 #include "rclmain_w.h"
 
 using namespace std;
@@ -91,6 +92,19 @@
 	// Close and reopen, in hope that makes us visible...
 	fragbuts->close();
         fragbuts->show();
+    }
+}
+
+void RclMain::showSpecIdx()
+{
+    if (specidx == 0) {
+	specidx = new SpecIdxW(0);
+        connect(specidx, SIGNAL(accepted()), this, SLOT(specialIndex()));
+        specidx->show();
+    } else {
+	// Close and reopen, in hope that makes us visible...
+	specidx->close();
+        specidx->show();
     }
 }