kateprojectdirview.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
#ifndef __KATE_PROJECTDIRVIEW_H__
00022
#define __KATE_PROJECTDIRVIEW_H__
00023
00024
#include "katemain.h"
00025
00026
#include "../interfaces/project.h"
00027
00028
#include <kfileiconview.h>
00029
#include <kio/job.h>
00030
#include <kio/jobclasses.h>
00031
00032
class KateProjectDirView :
public KFileIconView
00033 {
00034 Q_OBJECT
00035
00036
public:
00037 KateProjectDirView (
Kate::Project *project,
const QString &dir, QWidget *parent);
00038 ~KateProjectDirView ();
00039
00040
static void addDialog (
Kate::Project *project,
const QString &dir, QWidget *parent);
00041
00042
private slots:
00043
void entries( KIO::Job *job,
const KIO::UDSEntryList& list);
00044
00045
private:
00046
Kate::Project *m_project;
00047 QString m_relDir;
00048 KIO::ListJob *m_listJob;
00049 KURL m_dir;
00050 QStringList m_dirs;
00051 QStringList m_files;
00052 };
00053
00054
#endif
This file is part of the documentation for kate Library Version 3.2.3.