Functions
core/vgui/vgui_find.cxx File Reference

See vgui_find.h for a description of this file. More...

#include "vgui_find.h"
#include <vgui/vgui_tableau.h>

Go to the source code of this file.

Functions

vgui_tableau_sptr vgui_find_by_type_name (vgui_tableau_sptr const &start, vcl_string const &tn, bool direction_down)
 Search for a tableau by type in the hierarchy.
vgui_tableau_sptr vgui_find_by_name (vgui_tableau_sptr const &start, vcl_string const &name, bool direction_down)
 Search for a tableau by name in the hierarchy.

Detailed Description

See vgui_find.h for a description of this file.

Author:
fsm

Definition in file vgui_find.cxx.


Function Documentation

vgui_tableau_sptr vgui_find_by_name ( vgui_tableau_sptr const &  start,
vcl_string const &  name,
bool  direction_down 
)

Search for a tableau by name in the hierarchy.

If direction_down is true, it will search below param start. Otherwise, it will search above param start. Returns a null pointer if a matching tableau is not found.

Definition at line 39 of file vgui_find.cxx.

vgui_tableau_sptr vgui_find_by_type_name ( vgui_tableau_sptr const &  start,
vcl_string const &  tn,
bool  direction_down 
)

Search for a tableau by type in the hierarchy.

If direction_down is true, it will search below param start. Otherwise, it will search above param start. Returns a null pointer if a matching tableau is not found.

Definition at line 15 of file vgui_find.cxx.