Ignore:
Timestamp:
06/19/14 03:49:49 (11 years ago)
Author:
epyon
Message:
  • decoupling - uid_store independent of nv::object
  • decoupling - nv::object no longer linked with lua in any way
  • decoupling - gui::element related object methods moved to element
  • uid_store can operate on void* or specialized base class
  • root class no longer carries uid store nor lua state (will be removed later)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/nv/gui/gui_element.hh

    r257 r266  
    186186                         */
    187187                        virtual void recalculate_absolute_children();
     188
     189                        /**
     190                         * Moves element to back of child list (top of stack)
     191                         *
     192                         * @returns true if object found, false otherwise
     193                         */
     194                        bool move_to_top( element* child );
     195
     196                        /**
     197                         * Moves element to front of child list (bottom of stack)
     198                         *
     199                         * @returns true if object found, false otherwise
     200                         */
     201                        bool move_to_bottom( element* child );
    188202
    189203                protected:
Note: See TracChangeset for help on using the changeset viewer.