
Additionaly, I transfer the copyright for nearly all modifications I made to the XMMS2 Team (The only exception are the files under directory widgets)
52 lines
1.3 KiB
C++
52 lines
1.3 KiB
C++
/**
|
|
* This file is a part of Promoe, an XMMS2 Client.
|
|
*
|
|
* Copyright (C) 2005-2008 XMMS2 Team
|
|
*
|
|
* 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.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef __BROWSEDIALOG_H__
|
|
#define __BROWSEDIALOG_H__
|
|
|
|
class BrowseModel;
|
|
|
|
#include <QDialog>
|
|
class QTreeView;
|
|
class QComboBox;
|
|
class QLineEdit;
|
|
class QItemSelectionModel;
|
|
class QModelIndex;
|
|
class QString;
|
|
|
|
class BrowseDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
BrowseDialog (QWidget *parent);
|
|
|
|
public slots:
|
|
void setPath (const QModelIndex &index);
|
|
void setPath (const QString &path);
|
|
void navigateToPrevious ();
|
|
void dirChanged (const QString &path);
|
|
void accept ();
|
|
QStringList getFiles ();
|
|
|
|
private:
|
|
QTreeView *m_list;
|
|
QComboBox *m_lookInCombo;
|
|
QLineEdit *m_lookInEdit;
|
|
QLineEdit *m_fileNameEdit;
|
|
QComboBox *m_fileTypeCombo;
|
|
BrowseModel *m_model;
|
|
QItemSelectionModel *m_selections;
|
|
};
|
|
#endif
|