Sophie

Sophie

distrib > Fedora > 18 > x86_64 > by-pkgid > 8c86774a3e53d77cc119f53a2b94a57a > files > 831

root-tutorial-5.34.14-2.fc18.noarch.rpm

// @(#)root/qt:$Name:  $:$Id: QtFileDialog.C,v 1.5 2008/09/28 02:22:23 fine Exp $
// Author: Valeri Fine   23/03/2006
#ifndef __CINT__
#  include <QFileDialog> 
#  include <QString> 
#  include "TString.h"
#  include <string>
#endif
TString QtFileDialog() {
  // This is a small ROOT macro to use Qt 3.3 class: begin_html <a href="http://doc.trolltech.com/3.3/qfiledialog.html">QFileDialog</a> end_html
  // See: begin_html <a href="http://doc.trolltech.com/3.3/qfiledialog.html#getOpenFileName">http://doc.trolltech.com/3.3/qfiledialog.html#getOpenFileName</a> end_html
  //
  // To use, invoke ACLiC from the ROOT prompt:
  // root [] .x QtFileDialog.C++
  //
  // To use it with no ACLiC, omit the trailing "++"
  // root [] .x QtFileDialog.C
  //
  // The QtFileDialog returns TString object that contains the selected file name.
  // returns its pointer.
  // The macro QtMultiFileDialog.C provides an advanced example.
  //
  // The full list of the Qt classes available from Cint is defined by
  // begin_html <a href="http://root.bnl.gov/QtRoot/htmldoc/src/qtclasses.h.html">by $ROOTSYS/cint/lib/qtclasses.h</a> end_html
  //
  // All Qt classes can be used from ACLiC though.
  
#ifdef __CINT__
  // Load the qt cint dictionary.
  // One is recommended to do that at once somewhere.
  // For example  from his/her custom rootlogon.C script
  gSystem->Load("$ROOTSYS/cint/cint/include/qtcint");
#endif
  QString fileName = QFileDialog::getOpenFileName ();
  std::string flnm = fileName.toStdString();
  return TString(flnm.c_str());
}