示例#1
0
bool EtkBox::getHomogeneous ()
{
    return etk_box_homogeneous_get(ETK_BOX (_o));
}
示例#2
0
/**
 * @brief Gets whether or not the action-area's hbox is homogeneous
 * @param dialog a dialog
 * @return Returns ETK_TRUE if the action-area's hbox is homogeneous, ETK_FALSE otherwise
 */
Etk_Bool etk_dialog_action_area_homogeneous_get(Etk_Dialog *dialog)
{
   if (!dialog)
      return ETK_FALSE;
   return etk_box_homogeneous_get(ETK_BOX(dialog->action_area_hbox));
}