// -*- C++ -*-
/*
* Gnome Crystal
* atomsdlg.h
*
* Copyright (C) 2002-2006 Jean Bréfort <jean.brefort@normalesup.org>
*
* 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.
*
* This program 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*/
#ifndef GCRYSTAL_ATOMSDLG_H
#define GCRYSTAL_ATOMSDLG_H
#include <gcu/dialog.h>
#include <gcu/gtkperiodic.h>
#include <vector>
using namespace std;
class gcDocument;
class gcApplication;
struct AtomsStruct;
using namespace gcu;
class gcAtomsDlg: public Dialog
{
public:
gcAtomsDlg (gcApplication *App, gcDocument* pDoc);
virtual ~gcAtomsDlg ();
virtual bool Apply ();
void AtomAdd ();
void AtomDelete ();
void AtomDeleteAll ();
void AtomSelect (GtkTreeSelection *Selection);
void OnElement (guint Z);
void OnEdited (GtkCellRendererText *cell, const gchar *path_string, const gchar *new_text);
void SetCustomColor (bool custom);
void SetRadiusType (int type);
void SetRadiusIndex (int index);
void SetCharge (int charge);
void PopulateRadiiMenu ();
private:
gcDocument *m_pDoc;
GtkListStore *AtomList;
GtkTreeSelection *Selection;
GtkPeriodic* periodic;
GtkToggleButton* CustomColor;
GtkColorButton *AtomColor;
GtkEntry *AtomR;
unsigned short m_nElt;
GArray *m_Atoms;
gint m_AtomSelected;
GtkTreeIter m_Iter;
GtkWidget *DeleteBtn, *DeleteAllBtn;
GtkComboBox *RadiusTypeMenu, *RadiusMenu;
GtkSpinButton *ChargeBtn;
const GcuAtomicRadius **m_Radii;
GcuAtomicRadius m_Radius;
gint m_RadiusType, m_Charge;
vector<int> m_RadiiIndex;
unsigned long m_RadiiSignalID;
};
#endif //GCRYSTAL_ATOMSDLG_H
syntax highlighted by Code2HTML, v. 0.9.1