Show
Ignore:
Timestamp:
04/14/06 13:42:25 (3 years ago)
Author:
jordi
Message:

The main presenter now sets the sensitiveness of a "Reload" action, still to implement, thought.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/tests/DumbMainView.cxx

    r36 r62  
    3838    m_SensitiveGoToPage = TRUE; 
    3939    m_SensitiveGoToPreviousPage = TRUE; 
     40    m_SensitiveReload = TRUE; 
    4041    m_SensitiveRotateLeft = TRUE; 
    4142    m_SensitiveRotateRight = TRUE; 
     
    102103} 
    103104 
     105void 
     106DumbMainView::sensitiveReload (gboolean sensitive) 
     107{ 
     108    m_SensitiveReload = sensitive; 
     109} 
     110 
    104111void  
    105112DumbMainView::sensitiveRotateLeft (gboolean sensitive) 
     
    262269{ 
    263270    return m_SensitiveGoToPreviousPage; 
     271} 
     272 
     273gboolean 
     274DumbMainView::isSensitiveReload () 
     275{ 
     276    return m_SensitiveReload; 
    264277} 
    265278