/*************************************************************************** * Copyright (C) 2006 Nicolas Hadacek * * * * 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. * ***************************************************************************/ #ifndef PICC_H #define PICC_H #include "tools/base/tool_group.h" namespace PICC { //---------------------------------------------------------------------------- class Base : public Tool::Base { private: virtual TQStringList checkExecutableOptions(bool) const { return "--ver"; } virtual bool checkExecutableResult(bool withWine, TQStringList &lines) const; }; class BaseLite : public Base { public: virtual TQString baseExecutable(bool, Tool::OutputExecutableType) const; }; class BaseNormal : public Base { public: virtual TQString baseExecutable(bool, Tool::OutputExecutableType) const; }; class Base18 : public Base { public: virtual TQString baseExecutable(bool, Tool::OutputExecutableType) const; }; //---------------------------------------------------------------------------- class Group : public Tool::Group { public: virtual Tool::Category checkDevicesCategory() const { return Tool::Category::Compiler; } virtual TQStringList checkDevicesOptions(uint) const { return "--CHIPINFO"; } virtual Tool::ExecutableType preferedExecutableType() const { return Tool::ExecutableType::Unix; } virtual Tool::CompileType compileType() const { return Tool::SeparateFiles; } virtual PURL::FileType implementationType(PURL::ToolType type) const; private: virtual TQValueList getSupportedDevices(const TQString &s) const; virtual Compile::Process *processFactory(const Compile::Data &data) const; virtual Compile::Config *configFactory(::Project *project) const; virtual Tool::SourceGenerator *sourceGeneratorFactory() const { /*TODO*/ return 0; } }; //---------------------------------------------------------------------------- class PICCLiteGroup : public Group { public: virtual TQString name() const { return "picclite"; } virtual TQString label() const { return i18n("PICC Lite Compiler"); } virtual TQString informationText() const; private: virtual BaseData baseFactory(Tool::Category) const; }; //---------------------------------------------------------------------------- class PICCGroup : public Group { public: virtual TQString name() const { return "picc"; } virtual TQString label() const { return i18n("PICC Compiler"); } virtual TQString informationText() const; private: virtual BaseData baseFactory(Tool::Category) const; }; //---------------------------------------------------------------------------- class PICC18Group : public Group { public: virtual TQString name() const { return "picc18"; } virtual TQString label() const { return i18n("PICC-18 Compiler"); } virtual TQString informationText() const; private: virtual BaseData baseFactory(Tool::Category) const; }; } // namespace #endif