/********************************************************************** WireEngine - Engine for wireframe display Copyright (C) 2006-2007 Geoffrey R. Hutchison Copyright (C) 2006-2007 Benoit Jacob This file is part of the Avogadro molecular editor project. For more information, see Avogadro 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. Avogadro is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. **********************************************************************/ #ifndef WIREENGINE_H #define WIREENGINE_H #include #include #include "ui_wiresettingswidget.h" namespace Avogadro { class Atom; class Bond; class WireSettingsWidget; //! Wireframe Engine class. class WireEngine : public Engine { Q_OBJECT AVOGADRO_ENGINE("Wireframe", tr("Wireframe"), tr("Renders bonds as wires (lines), ideal for very large (bio)molecules")) public: //! Constructor WireEngine(QObject *parent=0); //! Deconstructor ~WireEngine() {} //! Copy Engine *clone() const; //! \name Render Methods //@{ //! Render an Atom. bool renderOpaque(PainterDevice *pd, const Atom *a); //! Render a Bond. bool renderOpaque(PainterDevice *pd, const Bond *b); bool renderOpaque(PainterDevice *pd); //@} //! Configuration options QWidget* settingsWidget(); /** * Write the engine settings so that they can be saved between sessions. */ void writeSettings(QSettings &settings) const; /** * Read in the settings that have been saved for the engine instance. */ void readSettings(QSettings &settings); private: WireSettingsWidget *m_settingsWidget; int m_showMulti; //!< show multiple bonds int m_showDots; //!< show dots for atoms double radius (const Atom *atom) const; private Q_SLOTS: void settingsWidgetDestroyed(); /** * @param setting whether to show multiple bonds */ void setShowMultipleBonds(int setting); /** * @param setting whether to show dots for atoms */ void setShowDots(int setting); }; class WireSettingsWidget : public QWidget, public Ui::WireSettingsWidget { public: WireSettingsWidget(QWidget *parent=0) : QWidget(parent) { setupUi(this); } }; //! Generates instances of our WireEngine class class WireEngineFactory : public QObject, public PluginFactory { Q_OBJECT Q_INTERFACES(Avogadro::PluginFactory) AVOGADRO_ENGINE_FACTORY(WireEngine) }; } // end namespace Avogadro #endif