Source Code (Use browser search to find items of interest.)
Class Index
kdevelop'Component (./kdevelop/kdevelop/component.h:35)
class Component
{
public:
/**
* Creates a configuration page for use in the
* KDevelop settings dialog.
*/
virtual void createConfigWidget(CustomizeDialog *parent);
/**
* The user has changed the path to kdelibs/qt.
*/
virtual void docPathChanged();
/**
* The user has abort the compilation.
*/
virtual void compilationAborted();
/**
* A project has been opened.
*/
virtual void projectOpened(CProject *prj);
/**
* The project has beeen closed.
*/
virtual void projectClosed();
/**
* A file has been added to the project. The filename is
* given relative to the project dir.
*/
virtual void addedFileToProject(const QString&);
/**
* A file has been removed from the project. The filename is
* given relative to the project dir.
*/
virtual void removedFileFromProject(const QString&);
/**
* A file has been saved. The filename is
* given relative to the project dir.
*/
virtual void savedFile(const QString&);
};
kdevelop'Component::createConfigWidget() (./kdevelop/kdevelop/component.cpp:4)
void Component::createConfigWidget(CustomizeDialog *parent)
{
}
kdevelop'Component::docPathChanged() (./kdevelop/kdevelop/component.cpp:8)
void Component::docPathChanged()
{
}
kdevelop'Component::compilationAborted() (./kdevelop/kdevelop/component.cpp:12)
void Component::compilationAborted()
{
}
kdevelop'Component::projectOpened() (./kdevelop/kdevelop/component.cpp:16)
void Component::projectOpened(CProject *prj)
{
}
kdevelop'Component::projectClosed() (./kdevelop/kdevelop/component.cpp:20)
void Component::projectClosed()
{
}
kdevelop'Component::addedFileToProject() (./kdevelop/kdevelop/component.cpp:24)
void Component::addedFileToProject(const QString&)
{
}
kdevelop'Component::removedFileFromProject() (./kdevelop/kdevelop/component.cpp:28)
void Component::removedFileFromProject(const QString&)
{
}
kdevelop'Component::savedFile() (./kdevelop/kdevelop/component.cpp:32)
void Component::savedFile(const QString&)
{
}