本文整理汇总了C++中FV_View::setShowPara方法的典型用法代码示例。如果您正苦于以下问题:C++ FV_View::setShowPara方法的具体用法?C++ FV_View::setShowPara怎么用?C++ FV_View::setShowPara使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FV_View
的用法示例。
在下文中一共展示了FV_View::setShowPara方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: _storeWindowData
//.........这里部分代码省略.........
pPrefsScheme->setValue(XAP_PREF_KEY_AutoSaveFileExt, stVal.c_str());
_gatherAutoSaveFilePeriod(stVal);
UT_DEBUGMSG(("Saving Auto Save File with a period of [%s]\n", stVal.c_str()));
pPrefsScheme->setValue(XAP_PREF_KEY_AutoSaveFilePeriod, stVal.c_str());
// Jordi: win32 specific for now
_gatherUILanguage(stVal);
if (stVal.length())
{
UT_DEBUGMSG(("Setting default UI language to [%s]\n", stVal.c_str()));
pPrefsScheme->setValue(AP_PREF_KEY_StringSet, stVal.c_str());
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// If we changed whether the ruler is to be visible
// or hidden, then update the current window:
// (If we didn't change anything, leave it alone)
#if !defined(TOOLKIT_GTK) && !defined(TOOLKIT_COCOA) && !defined (TOOLKIT_WIN)
if (pFrameData && _gatherViewShowRuler() != pFrameData->m_bShowRuler )
{
pFrameData->m_bShowRuler = _gatherViewShowRuler() ;
if (!pFrameData->m_bIsFullScreen)
{
m_pFrame->toggleRuler(pFrameData->m_bShowRuler);
}
}
// Same for status bar
if (pFrameData && _gatherViewShowStatusBar() != pFrameData->m_bShowStatusBar)
{
pFrameData->m_bShowStatusBar = _gatherViewShowStatusBar();
if (!pFrameData->m_bIsFullScreen)
{
m_pFrame->toggleStatusBar(pFrameData->m_bShowStatusBar);
}
}
if(pFrameData) {
for (i = 0; i < m_pApp->getToolbarFactory()->countToolbars(); i++) {
if (_gatherViewShowToolbar(i) != pFrameData->m_bShowBar[i])
{
pFrameData->m_bShowBar[i] = _gatherViewShowToolbar(i);
if (!pFrameData->m_bIsFullScreen)
{
m_pFrame->toggleBar(i, pFrameData->m_bShowBar[i]);
}
}
}
}
#endif
if (pFrameData && _gatherViewUnprintable() != pFrameData->m_bShowPara )
{
pFrameData->m_bShowPara = _gatherViewUnprintable() ;
AV_View * pAVView = m_pFrame->getCurrentView();
UT_return_if_fail (pAVView);
FV_View * pView = static_cast<FV_View *> (pAVView);
pView->setShowPara(pFrameData->m_bShowPara);
}
#if defined(TOOLKIT_GTK)
if ( _gatherEnableSmoothScrolling() != XAP_App::getApp()->isSmoothScrollingEnabled() )
{
XAP_App::getApp()->setEnableSmoothScrolling(_gatherEnableSmoothScrolling());
}
#endif
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// save ruler units value
pPrefsScheme->setValue((gchar*)AP_PREF_KEY_RulerUnits,
(gchar*)UT_dimensionName( _gatherViewRulerUnits()) );
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// save screen color
pPrefsScheme->setValue((gchar*)XAP_PREF_KEY_ColorForTransparent,
_gatherColorForTransparent() );
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// allow XAP_Prefs to notify all the listeners of changes
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// TODO: change to snprintf
gchar szBuffer[40];
sprintf( szBuffer, "%i", _gatherNotebookPageNum() );
pPrefsScheme->setValue((gchar*)AP_PREF_KEY_OptionsTabNumber,
(gchar*)szBuffer );
// allow the prefListeners to receive their calls
pPrefs->endBlockChange();
// if we hit the Save button, then force a save after the gather
if ( m_answer == a_SAVE ) {
pPrefs->savePrefsFile(); // TODO: check the results
}
}