/* * ClearAllAtomsAction.hpp * * Created on: Aug 09, 2010 * Author: heber */ #ifndef CLEARALLATOMSACTION_HPP_ #define CLEARALLATOMSACTION_HPP_ #include "Actions/Action.hpp" void SelectionAllAtoms(); class SelectionClearAllAtomsAction : public Action { friend void SelectionClearAllAtoms(); public: SelectionClearAllAtomsAction(); virtual ~SelectionClearAllAtomsAction(); bool canUndo(); bool shouldUndo(); virtual const std::string getName(); protected: virtual Dialog * fillDialog(Dialog *dialog); private: virtual Action::state_ptr performCall(); virtual Action::state_ptr performUndo(Action::state_ptr); virtual Action::state_ptr performRedo(Action::state_ptr); static const char NAME[]; }; #endif /* CLEARALLATOMSACTION_HPP_ */