2007-08-07 16:48:45 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Dominik Riebeling
|
|
|
|
* $Id: installrb.cpp 13990 2007-07-25 22:26:10Z Dominik Wenger $
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <QtGui>
|
|
|
|
|
|
|
|
#include "browsedirtree.h"
|
|
|
|
#include "ui_browsedirtreefrm.h"
|
|
|
|
|
|
|
|
|
|
|
|
BrowseDirtree::BrowseDirtree(QWidget *parent) : QDialog(parent)
|
|
|
|
{
|
|
|
|
ui.setupUi(this);
|
|
|
|
this->setModal(true);
|
|
|
|
ui.tree->setModel(&model);
|
|
|
|
model.setReadOnly(true);
|
|
|
|
// disable size / date / type columns
|
|
|
|
ui.tree->setColumnHidden(1, true);
|
|
|
|
ui.tree->setColumnHidden(2, true);
|
|
|
|
ui.tree->setColumnHidden(3, true);
|
2007-08-12 19:18:11 +00:00
|
|
|
ui.tree->setAlternatingRowColors(true);
|
2007-08-07 16:48:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BrowseDirtree::setDir(QDir &dir)
|
|
|
|
{
|
|
|
|
qDebug() << "BrowseDirtree::setDir()" << model.index(dir.absolutePath());
|
|
|
|
|
2007-08-08 23:23:28 +00:00
|
|
|
// do not try to hilight directory if it's not valid.
|
|
|
|
if(!dir.exists()) return;
|
2007-08-07 16:48:45 +00:00
|
|
|
// hilight the set directory if it's valid
|
|
|
|
if(model.index(dir.absolutePath()).isValid()) {
|
|
|
|
QModelIndex p = model.index(dir.absolutePath());
|
|
|
|
ui.tree->setCurrentIndex(p);
|
|
|
|
ui.tree->scrollTo(p);
|
|
|
|
ui.tree->resizeColumnToContents(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BrowseDirtree::setFilter(QDir::Filters filters)
|
|
|
|
{
|
|
|
|
model.setFilter(filters);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BrowseDirtree::accept()
|
|
|
|
{
|
|
|
|
QString path;
|
|
|
|
path = model.filePath(ui.tree->currentIndex());
|
|
|
|
|
|
|
|
this->close();
|
2007-08-09 16:21:51 +00:00
|
|
|
emit itemChanged(QDir::toNativeSeparators(path));
|
2007-08-07 17:49:35 +00:00
|
|
|
setResult(QDialog::Accepted);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString BrowseDirtree::getSelected()
|
|
|
|
{
|
|
|
|
QString path;
|
|
|
|
path = model.filePath(ui.tree->currentIndex());
|
2007-08-09 16:21:51 +00:00
|
|
|
return QDir::toNativeSeparators(path);
|
2007-08-07 16:48:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|