Skip to content
Snippets Groups Projects
entity_node.cc 3.47 KiB
//------------------------------------------------------------------------------
// This file is part of the OpenStructure project <www.openstructure.org>
//
// Copyright (C) 2008-2009 by the OpenStructure authors
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License as published by the Free
// Software Foundation; either version 3.0 of the License, or (at your option)
// any later version.
// This library 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 Lesser General Public License for more
// details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this library; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
//------------------------------------------------------------------------------
#include <ost/gui/gosty_app.hh>
#include <boost/pointer_cast.hpp>


#include <ost/mol/query.hh>
#include <ost/mol/query_view_wrapper.hh>
#include <ost/mol/view_type_fw.hh>

#include <ost/gui/scene_win/scene_win.hh>

#include "current_selection_node.hh"
#include "entity_part_node.hh"
#include "label_node.hh"
#include "render_modes_node.hh"

#include "entity_node.hh"

#include <QFont>
#include <QString>


namespace ost { namespace gui {

EntityNode::EntityNode(gfx::EntityP& entity, SceneNode* parent):
    GfxSceneNode(entity,parent),custom_view_(NULL){
  SceneWinModel* model = GostyApp::Instance()->GetSceneWin()->GetModel();
  model->AddNode(parent, this);

  new RenderModesNode(entity, this);

  SceneNode* chain_node = new LabelNode("Chains",this);
  model->AddNode(this, chain_node);
  mol::EntityView view = entity->GetView();
  mol::ChainViewList chains = view.GetChainList();
  for(unsigned int i = 0; i<chains.size();i++){
    QString name = chains[i].GetName().c_str();
    name = (name.size() == 0 || name == " ")? "No name" : name;
    mol::Query query("cname='"+chains[i].GetName()+"'");
    model->AddNode(chain_node,new EntityPartNode(name,entity, mol::QueryViewWrapper(query,view),chain_node));
  }

  SceneNode* quick_selection = new LabelNode("Quick Selection",this);
  model->AddNode(this, quick_selection);

  SceneNode* node = new EntityPartNode("Backbone", entity, mol::QueryViewWrapper(mol::Query("aname=CA,C,N,O and peptide=true"),entity->GetView()), quick_selection);
  model->AddNode(quick_selection, node);
  node = new EntityPartNode("Sidechains", entity, mol::QueryViewWrapper(mol::Query("aname!=CA,C,N,O and peptide=true"),mol::QueryFlag::EXCLUSIVE_BONDS,entity->GetView()), quick_selection);
  model->AddNode(quick_selection, node);
  node = new EntityPartNode("Ligands", entity, mol::QueryViewWrapper(mol::Query("ishetatm=1 and rname!=HOH,WAT"),entity->GetView()), quick_selection);
  model->AddNode(quick_selection, node);
  node = new EntityPartNode("Water", entity, mol::QueryViewWrapper(mol::Query("rname=HOH,WAT"),entity->GetView()), quick_selection);
  model->AddNode(quick_selection, node);


  custom_view_ = new LabelNode("Custom Views", this);
  model->AddNode(this, custom_view_);

  node = new EntityPartNode("Full View", entity, mol::QueryViewWrapper(entity->GetView()), this);
  model->AddNode(this, node);

  node = new CurrentSelectionNode(entity, this);
  model->AddNode(this, node);
}

SceneNode* EntityNode::GetCustomViewNode() const{
  return custom_view_;
}

}}