summaryrefslogtreecommitdiff
path: root/noncore/apps/confedit/listviewconfdir.cpp
blob: 73eaae3cb13433dfdb0cd6d3098675d2757b134f (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
/***************************************************************************
 *                                                                         *
 *   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; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/
  // (c) 2002 Patrick S. Vogtp <tille@handhelds.org>

#include "listviewconfdir.h"
#include "listviewitemconffile.h"

/* OPIE */
#include <opie2/odebug.h>
using namespace Opie::Core;

/* QT */
#include <qmessagebox.h>

ListViewConfDir::ListViewConfDir(QString settingsPath, QWidget *parent, const char *name )
  : QListView(parent,name), confDir(settingsPath)
{

	setRootIsDecorated( true );
	addColumn(tr("Files"));

	if (!confDir.isReadable())
 		QMessageBox::critical(this,tr("Could not open"),tr("The directory ")+settingsPath+tr(" could not be opened."),1,0);
	readConfFiles();

 	connect( this, SIGNAL(expanded(QListViewItem*)), SLOT(expand(QListViewItem*)));
}


ListViewConfDir::~ListViewConfDir()
{
}

void ListViewConfDir::readConfFiles()
{

  confDir.setFilter( QDir::Files | QDir::NoSymLinks );
  confDir.setSorting( QDir::Name );
  confDir.setNameFilter("*.conf");
  const QFileInfoList *list = confDir.entryInfoList();
  QFileInfoListIterator it( *list );
  QFileInfo *fi;

  ListViewItemConfFile *fileEntry;

	while ( (fi=it.current()) )
 	{
    odebug << "opening: >" << fi->fileName().data() << "<" << oendl;
  	fileEntry = new ListViewItemConfFile( fi, this );
        (void)new QListViewItem(fileEntry, "dummy");
  	++it;
  }
}

void ListViewConfDir::expand(QListViewItem *item)
{
 	((ListViewItemConf*)item)->expand();
}