Lines Matching refs:m_nMode
939 ,m_nMode(DEFAULT_BROWSE_MODE) in DbGridControl()
987 SetMode(m_nMode); in Init()
1257 if ( adjustModeForScrollbars( m_nMode, m_bNavigationBar, m_bHideScrollbars ) ) in EnableNavigationBar()
1258 SetMode( m_nMode ); in EnableNavigationBar()
1272 if ( adjustModeForScrollbars( m_nMode, m_bNavigationBar, m_bHideScrollbars ) ) in EnableNavigationBar()
1273 SetMode( m_nMode ); in EnableNavigationBar()
1310 BrowserMode nNewMode = m_nMode; in SetOptions()
1311 if ((m_nMode & BROWSER_CURSOR_WO_FOCUS) == 0) in SetOptions()
1322 if (nNewMode != m_nMode) in SetOptions()
1325 m_nMode = nNewMode; in SetOptions()
1367 if ( adjustModeForScrollbars( m_nMode, m_bNavigationBar, m_bHideScrollbars ) ) in ForceHideScrollbars()
1368 SetMode( m_nMode ); in ForceHideScrollbars()
1385 m_nMode &= ~BROWSER_HIDECURSOR; // without this BROWSER_CURSOR_WO_FOCUS won't have any affect in EnablePermanentCursor()
1386 m_nMode |= BROWSER_CURSOR_WO_FOCUS; in EnablePermanentCursor()
1391 m_nMode |= BROWSER_HIDECURSOR; // no cursor at all in EnablePermanentCursor()
1393 m_nMode &= ~BROWSER_HIDECURSOR; // at least the "non-permanent" cursor in EnablePermanentCursor()
1395 m_nMode &= ~BROWSER_CURSOR_WO_FOCUS; in EnablePermanentCursor()
1397 SetMode(m_nMode); in EnablePermanentCursor()
1408 return ((m_nMode & BROWSER_CURSOR_WO_FOCUS) != 0) && ((m_nMode & BROWSER_HIDECURSOR) == 0); in IsPermanentCursorEnabled()
1426 m_nMode |= BROWSER_MULTISELECTION; in SetMultiSelection()
1428 m_nMode &= ~BROWSER_MULTISELECTION; in SetMultiSelection()
1430 SetMode(m_nMode); in SetMultiSelection()
1531 BrowserMode nOldMode = m_nMode; in setDataSource()
1565 m_nMode = DEFAULT_BROWSE_MODE; in setDataSource()
1569 m_nMode |= BROWSER_CURSOR_WO_FOCUS; in setDataSource()
1570 m_nMode &= ~BROWSER_HIDECURSOR; in setDataSource()
1576 m_nMode |= BROWSER_HIDECURSOR; in setDataSource()
1580 m_nMode |= BROWSER_MULTISELECTION; in setDataSource()
1582 m_nMode &= ~BROWSER_MULTISELECTION; in setDataSource()
1584 adjustModeForScrollbars( m_nMode, m_bNavigationBar, m_bHideScrollbars ); in setDataSource()
1651 if (m_nMode != nOldMode) in setDataSource()
1652 SetMode(m_nMode); in setDataSource()