Changeset 6141 for trunk/EDIT4/ed4_class.hxx
- Timestamp:
- 14/08/09 16:29:27 (3 years ago)
- Files:
-
- 1 modified
-
trunk/EDIT4/ed4_class.hxx (modified) (12 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/EDIT4/ed4_class.hxx
r5894 r6141 712 712 ED4_base *width_link; //concerning the hierarchy 713 713 ED4_base *height_link; //concerning the hierarchy 714 ED4_extension extension; //contains relativ info about graphical properties714 ED4_extension extension; //contains relative info about graphical properties 715 715 ED4_list linked_objects; //linked list of objects which are depending from this object 716 716 ED4_update_info update_info; //info about things to be done for the object, i.e. refresh; flag structure … … 739 739 virtual void deleted_from_database(); 740 740 741 virtual bool remove_deleted_child s();741 virtual bool remove_deleted_children(); 742 742 743 743 // functions concerned with graphic output … … 752 752 bool is_visible(AW_pos x1, AW_pos y1, AW_pos x2, AW_pos y2, ED4_direction direction); 753 753 754 // functions concerned with links in the hierarchy754 // functions concerned with links in the hierarchy 755 755 virtual ED4_returncode set_links(ED4_base *width_link, ED4_base *height_link); 756 756 virtual ED4_returncode link_changed(ED4_base *link); 757 757 758 // functions concerned with special initialisation758 // functions concerned with special initialization 759 759 virtual void set_properties (ED4_properties prop); 760 760 761 // functions concerned with coordinate transformation761 // functions concerned with coordinate transformation 762 762 763 763 void update_world_coords_cache(); … … 777 777 } 778 778 779 // functions which refer to the object as a child, i.e. travelling down the hierarchy779 // functions which refer to the object as a child, i.e. travelling down the hierarchy 780 780 virtual ED4_returncode set_refresh (int clear=1)=0; 781 781 virtual ED4_returncode resize_requested_by_child(void)=0; … … 784 784 virtual ED4_returncode delete_requested_by_parent(void)=0; 785 785 virtual ED4_returncode delete_requested_by_child(void); 786 virtual ED4_returncode delete_requested_child s(void)=0;786 virtual ED4_returncode delete_requested_children(void)=0; 787 787 788 788 virtual ED4_returncode calc_size_requested_by_parent( void )=0; … … 910 910 virtual void deleted_from_database(); 911 911 912 virtual bool remove_deleted_child s();912 virtual bool remove_deleted_children(); 913 913 914 914 //functions concerned with graphics … … 925 925 926 926 virtual ED4_returncode delete_requested_by_parent(void); 927 virtual ED4_returncode delete_requested_child s(void);927 virtual ED4_returncode delete_requested_children(void); 928 928 929 929 virtual ED4_returncode calc_size_requested_by_parent( void ); … … 941 941 ED4_base *get_defined_level(ED4_level lev) const; 942 942 943 // functions refer ing the consensus943 // functions referring the consensus 944 944 945 945 ED4_returncode create_group( ED4_group_manager **group_manager, GB_CSTR group_name); … … 1008 1008 virtual void deleted_from_database(void); 1009 1009 1010 virtual bool remove_deleted_child s();1010 virtual bool remove_deleted_children(); 1011 1011 1012 1012 //functions concerning graphic output … … 1027 1027 1028 1028 virtual ED4_returncode delete_requested_by_parent(void); 1029 virtual ED4_returncode delete_requested_child s(void);1029 virtual ED4_returncode delete_requested_children(void); 1030 1030 1031 1031 virtual ED4_returncode move_requested_by_parent( ED4_move_info *mi ); … … 1647 1647 // class ED4_AA_sequence_terminal: public ED4_sequence_terminal_basic 1648 1648 // ----------------------------------------------------------------------------------------------------- 1649 // NOTE: ED4_AA_sequence_terminal is a separ te terminal class used to Open Reading Frames (ORFs)1649 // NOTE: ED4_AA_sequence_terminal is a separate terminal class used to Open Reading Frames (ORFs) 1650 1650 // for the corresponding gene (DNA) sequence. It is used in ProteinViewer Module and should not be 1651 // used for drawing aminoacid sequence alone as in prot ien alignment. Aminoacid sequences are1651 // used for drawing aminoacid sequence alone as in protein alignment. Aminoacid sequences are 1652 1652 // handled by the standard "ED4_sequence_terminal" class. 1653 1653 // ------------------------------------------------------------------------------------------------------ … … 1788 1788 virtual int get_length() const { return 1+strlen(id); } 1789 1789 1790 virtual bool remove_deleted_child s();1790 virtual bool remove_deleted_children(); 1791 1791 1792 1792 #if defined(IMPLEMENT_DUMP)
