kdevproject.cpp
43 connect( this, TQT_SIGNAL(addedFilesToProject(const TQStringList& )), this, TQT_SLOT(buildFileMap()) );
44 connect( this, TQT_SIGNAL(removedFilesFromProject(const TQStringList& )), this, TQT_SLOT(buildFileMap()) );
46 connect( this, TQT_SIGNAL(addedFilesToProject(const TQStringList& )), this, TQT_SLOT(slotAddFilesToFileMap(const TQStringList& )) );
47 connect( this, TQT_SIGNAL(removedFilesFromProject(const TQStringList& )), this, TQT_SLOT(slotRemoveFilesFromFileMap(const TQStringList& )) );
virtual void changedFile(const TQString &fileName)
Notifies the project of a change to one of the files.
Definition: kdevproject.cpp:62
void removedFilesFromProject(const TQStringList &fileList)
Emitted when a list of files has been removed from the project.
virtual bool isProjectFile(const TQString &absFileName)
Definition: kdevproject.cpp:81
void addedFilesToProject(const TQStringList &fileList)
Emitted when a new list of files has been added to the project.
KDevProject(const KDevPluginInfo *info, TQObject *parent=0, const char *name=0)
Constructs a project plugin.
Definition: kdevproject.cpp:40
virtual void changedFiles(const TQStringList &fileList)
Notifies the project about changes to the files.
Definition: kdevproject.cpp:71
virtual TQStringList symlinkProjectFiles()
Definition: kdevproject.cpp:123
virtual TQStringList allFiles() const =0
TQString defaultRunDirectory(const TQString &projectPluginName) const
Default implementation of runDirectory method.
Definition: kdevproject.cpp:128
void changedFilesInProject(const TQStringList &fileList)
Emitted when a list of files has changed in the project.
virtual Options options() const
Reimplement this method to set project plugin options.
Definition: kdevproject.cpp:76
virtual TQString projectDirectory() const =0
const KDevPluginInfo * info()
Provides an information about the plugin.
Definition: kdevplugin.cpp:134
KDevelop project interface.
virtual void openProject(const TQString &dirName, const TQString &projectName)
This method is invoked when the project is opened (i.e.
Definition: kdevproject.cpp:118
virtual TQString relativeProjectFile(const TQString &absFileName)
Definition: kdevproject.cpp:86