~ubuntu-branches/ubuntu/quantal/muse/quantal

« back to all changes in this revision

Viewing changes to muse/widgets/filedialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Fabrice Coutadeur
  • Date: 2010-11-17 21:43:38 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20101117214338-1hvfl7oo2dsqnvrb
Tags: 1.1-0ubuntu1
* New upstream release (LP: #668631)
* Switch to dpkg-source 3.0 (quilt) format
* Switch to dh7 short form
* debian/rules:
  - added --enable-dssi and --enable-osc to conf flags for dssi support
  - added -ljackserver to LDFLAGS to fix a FTBFS because of --as-needed
* debian/control:
  - added build build dependency on liblo-dev and dssi-dev for dssi support
  - bump Standards-version to 3.9.1. No changes required.
* debian/muse.desktop, debian/muse.xpm: dropped as desktop file and icon is
  now shipped upstream.
* fix-desktop-categories.patch: fix Categories tag in upstream desktop file
* 10_es_locale_fix.dpatch: refreshed and converted to quilt as
  fix_es_locale.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
#include <qfiledialog.h>
9
9
 
10
10
class FileDialogButtons;
 
11
class QStringList;
11
12
 
12
13
//---------------------------------------------------------
13
14
//   MFileDialog
53
54
      ~ContentsPreview();
54
55
      };
55
56
 
56
 
QString getSaveFileName(const QString& startWidth, const char** filter,
 
57
//QString getSaveFileName(const QString& startWidth, const char** filter,
 
58
QString getSaveFileName(const QString& startWidth, const QStringList& filters,
57
59
         QWidget* parent, const QString& name);
58
 
QString getOpenFileName(const QString& startWidth, const char** filter,
 
60
//QString getOpenFileName(const QString& startWidth, const char** filter,
 
61
QString getOpenFileName(const QString& startWidth, const QStringList& filters,
59
62
         QWidget* parent, const QString& name, bool* openAll);
60
 
QString getImageFileName(const QString& startWith,
61
 
   const char** filters, QWidget* parent, const QString& name);
 
63
//QString getImageFileName(const QString& startWith, const char** filters, 
 
64
QString getImageFileName(const QString& startWith, const QStringList& filters, 
 
65
         QWidget* parent, const QString& name);
62
66
 
63
67
FILE* fileOpen(QWidget*, QString, const QString&,
64
68
   const char*, bool&, bool = false, bool = false);
78
82
   public:
79
83
      MFile(const QString& path, const QString& ext);
80
84
      ~MFile();
81
 
      FILE* open(const char* mode, const char** pattern,
 
85
      //FILE* open(const char* mode, const char** pattern,
 
86
      FILE* open(const char* mode, const QStringList& pattern,
82
87
         QWidget* parent, bool noError,
83
88
         bool warnIfOverwrite, const QString& caption);
84
89
      };