]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/FileDialog_private.C
Get rid of the static_casts.
[lyx.git] / src / frontends / qt2 / FileDialog_private.C
index 313b80f5c053f84f493f728c4b65d4711c05d208..67c57c71be703a2bcf883755c3bcac8d39543c76 100644 (file)
@@ -1,41 +1,79 @@
 /**
  * \file FileDialog_private.C
- * Copyright 2001 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
 
-#include "LString.h"
+
+#include "QtLyXView.h"
+#include "debug.h"
+#include "funcrequest.h"
+#include "lyxfunc.h"
+#include "FileDialog_private.h"
+#include "qt_helpers.h"
+
+#include "support/lstrings.h"
 
 #include <qapplication.h>
 #include <qfiledialog.h>
+#include <qtoolbutton.h>
 
-#include "QtLyXView.h"
-#include "debug.h"
 
-#include "FileDialog_private.h"
+namespace {
 
-LyXFileDialog::LyXFileDialog(LyXView * lv, kb_action a, string const & p, string const & m, string const & t)
-       : QFileDialog(p.c_str(), m.c_str(), qApp->mainWidget(), t.c_str(), a == LFUN_SELECT_FILE_SYNC),
-       lv_(lv), action_(a)
-{
-       setCaption(t.c_str());
+/// return the Qt form of the label
+string const getLabel(string const & str) {
+       string label;
+       string sc(split(str, label, '|'));
+       if (sc.length() < 2)
+               return label;
+       string::size_type pos = label.find(sc[1]);
+       if (pos == string::npos)
+               return label;
+       label.insert(pos, 1, '&');
+       return label;
 }
 
+} // namespace anon
 
-void LyXFileDialog::done(int what)
+
+LyXFileDialog::LyXFileDialog(string const & p, string const & m,
+                            string const & t,
+               FileDialog::Button const & b1, FileDialog::Button const & b2)
+       : QFileDialog(toqstr(p), toqstr(m),
+                     qApp->focusWidget() ? qApp->focusWidget() : qApp->mainWidget(), toqstr(t), true),
+         b1_(0), b2_(0)
 {
-       lyxerr[Debug::GUI] << "Done FileDialog, value " << what << std::endl;
+       setCaption(toqstr(t));
+
+       if (!b1.first.empty()) {
+               b1_dir_ = b1.second;
+               b1_ = new QToolButton(this);
+               connect(b1_, SIGNAL(clicked()), this, SLOT(buttonClicked()));
+               b1_->setText(toqstr(getLabel(b1.first)));
+               addToolButton(b1_, true);
+       }
 
-       if (action_ == LFUN_SELECT_FILE_SYNC) {
-               QDialog::done(what);
-               return;
-       } else if (what == QDialog::Accepted) {
-               lv_->getLyXFunc()->dispatch(action_, selectedFile().data());
+       if (!b2.first.empty()) {
+               b2_dir_ = b2.second;
+               b2_ = new QToolButton(this);
+               connect(b2_, SIGNAL(clicked()), this, SLOT(buttonClicked()));
+               b2_->setText(toqstr(getLabel(b2.first)));
+               addToolButton(b2_);
        }
+}
 
-       delete this;
+
+void LyXFileDialog::buttonClicked()
+{
+       if (sender() == b1_)
+               setDir(toqstr(b1_dir_));
+       else if (sender() == b2_)
+               setDir(toqstr(b2_dir_));
 }