//========================================================= // 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) // (C) Copyright 2011 Tim E. Real (terminator356 on sourceforge) // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 of // the License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // //========================================================= #include #include "ui_fdialogbuttons.h" namespace MusEGui { //--------------------------------------------------------- // FileDialogButtonsWidget // Wrapper around Ui::FileDialogButtons //--------------------------------------------------------- class FileDialogButtonsWidget : public QWidget, public Ui::FileDialogButtons { Q_OBJECT public: FileDialogButtonsWidget(QWidget *parent = 0) : QWidget(parent) { setupUi(this); } }; //--------------------------------------------------------- // MFileDialog //--------------------------------------------------------- class MFileDialog : public QFileDialog { Q_OBJECT QString lastUserDir, lastGlobalDir; bool showButtons; QString baseDir; bool readMidiPortsSaved; private slots: void directoryChanged(const QString& directory); void fileChanged(const QString&); public slots: void globalToggled(bool); void userToggled(bool); void projectToggled(bool); public: enum ViewType { GLOBAL_VIEW, PROJECT_VIEW, USER_VIEW }; //!< The three different viewtypes static ViewType lastViewUsed; FileDialogButtonsWidget buttons; MFileDialog(const QString& dir, const QString& filter = QString::null, QWidget* parent = 0, bool writeFlag = false); }; /* ORCAN - Disable previeww for now. It is not available in qt4. We will need to implement it ourselves. //--------------------------------------------------------- // ContentsPreview //--------------------------------------------------------- class ContentsPreview : public QWidget, public Q3FilePreview { Q_OBJECT virtual void previewUrl(const Q3Url &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** filters, QWidget* parent, const QString& name, bool* writeWinState=NULL); QString getOpenFileName(const QString& startWidth, const char** filters, QWidget* parent, const QString& name, bool* doReadMidiPorts, MFileDialog::ViewType viewType = MFileDialog::PROJECT_VIEW); 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** patterns, QWidget* parent, bool noError, bool warnIfOverwrite, const QString& caption); }; } // namespace MusEGui