Skip to content

Commit

Permalink
Adding tabs for job script and molecule preview
Browse files Browse the repository at this point in the history
Signed-off-by: Adarsh Balasubramanian <[email protected]>
  • Loading branch information
badarsh2 committed Jul 29, 2018
1 parent a86e26f commit 3af90c9
Show file tree
Hide file tree
Showing 4 changed files with 242 additions and 162 deletions.
11 changes: 5 additions & 6 deletions avogadro/qtplugins/lammpsinput/lammpsinput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,17 @@ class Molecule;
namespace QtPlugins {

LammpsInput::LammpsInput(QObject* parent_)
: ExtensionPlugin(parent_)
, m_action(new QAction(this))
, m_molecule(nullptr)
, m_dialog(nullptr)
, m_outputFormat(nullptr)
: ExtensionPlugin(parent_), m_action(new QAction(this)), m_molecule(nullptr),
m_dialog(nullptr), m_outputFormat(nullptr)
{
m_action->setEnabled(true);
m_action->setText(tr("&LAMMPS Input"));
connect(m_action, SIGNAL(triggered()), SLOT(menuActivated()));
}

LammpsInput::~LammpsInput() {}
LammpsInput::~LammpsInput()
{
}

QList<QAction*> LammpsInput::actions() const
{
Expand Down
Loading

0 comments on commit 3af90c9

Please sign in to comment.