summaryrefslogtreecommitdiff
path: root/muse/muse/widgets/filedialog.h
blob: ca668a80b5f67459f0401e45ecd27bc6f01ee8bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
//=========================================================
//  MusE
//  Linux Music Editor
//    $Id: filedialog.h,v 1.2.2.2 2008/01/19 13:33:46 wschweer Exp $
//  (C) Copyright 2000 Werner Schweer (ws@seh.de)
//=========================================================

#include <qfiledialog.h>

class FileDialogButtons;

//---------------------------------------------------------
//   MFileDialog
//---------------------------------------------------------

class MFileDialog : public QFileDialog {
      Q_OBJECT

      enum ViewType { GLOBAL_VIEW, PROJECT_VIEW, USER_VIEW }; //!< The three different viewtypes
      static ViewType lastViewUsed;
      static QString  lastUserDir, lastGlobalDir;
      bool showButtons;
      QString baseDir;

   private slots:
      void globalToggled(bool);
      void userToggled(bool);
      void projectToggled(bool);
      void directoryChanged(const QString& directory);

   public:
      FileDialogButtons* buttons;
      MFileDialog(const QString& dir, const QString& filter = QString::null,
         QWidget* parent = 0, bool writeFlag = false);
      };

//---------------------------------------------------------
//   ContentsPreview
//---------------------------------------------------------

class ContentsPreview : public QWidget, public QFilePreview {
      Q_OBJECT

      virtual void previewUrl(const QUrl &url);
      QString path;
      QPixmap* bg;

   public:
      ContentsPreview(QWidget* parent, const char* name=0)
         : QWidget(parent, name) {
            bg = 0;
            }
      ~ContentsPreview();
      };

QString getSaveFileName(const QString& startWidth, const char** filter,
         QWidget* parent, const QString& name);
QString getOpenFileName(const QString& startWidth, const char** filter,
         QWidget* parent, const QString& name, bool* openAll);
QString getImageFileName(const QString& startWith,
   const char** filters, QWidget* parent, const QString& name);

FILE* fileOpen(QWidget*, QString, const QString&,
   const char*, bool&, bool = false, bool = false);


//---------------------------------------------------------
//   MFile
//    "Muse" File
//---------------------------------------------------------

class MFile {
      bool isPopen;
      FILE* f;
      QString path;
      QString ext;

   public:
      MFile(const QString& path, const QString& ext);
      ~MFile();
      FILE* open(const char* mode, const char** pattern,
         QWidget* parent, bool noError,
         bool warnIfOverwrite, const QString& caption);
      };