Lines Matching refs:pKey
1726 static OUString readEntryUntranslated( KConfig *pConfig, const char *pKey ) in readEntryUntranslated() argument
1728 return OUString::createFromAscii( pConfig->readEntryUntranslated( pKey ).ascii() ); in readEntryUntranslated()
1733 static Color readColor( KConfig *pConfig, const char *pKey ) in readColor() argument
1735 return toColor( pConfig->readColorEntry( pKey ) ); in readColor()
1831 const char *pKey; in UpdateSettings() local
1833 pKey = "activeBackground"; in UpdateSettings()
1834 if ( pConfig->hasKey( pKey ) ) in UpdateSettings()
1835 aStyleSettings.SetActiveColor( readColor( pConfig, pKey ) ); in UpdateSettings()
1837 pKey = "activeBlend"; in UpdateSettings()
1838 if ( pConfig->hasKey( pKey ) ) in UpdateSettings()
1839 aStyleSettings.SetActiveColor2( readColor( pConfig, pKey ) ); in UpdateSettings()
1841 pKey = "inactiveBackground"; in UpdateSettings()
1842 if ( pConfig->hasKey( pKey ) ) in UpdateSettings()
1843 aStyleSettings.SetDeactiveColor( readColor( pConfig, pKey ) ); in UpdateSettings()
1845 pKey = "inactiveBlend"; in UpdateSettings()
1846 if ( pConfig->hasKey( pKey ) ) in UpdateSettings()
1847 aStyleSettings.SetDeactiveColor2( readColor( pConfig, pKey ) ); in UpdateSettings()
1849 pKey = "inactiveForeground"; in UpdateSettings()
1850 if ( pConfig->hasKey( pKey ) ) in UpdateSettings()
1851 aStyleSettings.SetDeactiveTextColor( readColor( pConfig, pKey ) ); in UpdateSettings()
1853 pKey = "activeForeground"; in UpdateSettings()
1854 if ( pConfig->hasKey( pKey ) ) in UpdateSettings()
1855 aStyleSettings.SetActiveTextColor( readColor( pConfig, pKey ) ); in UpdateSettings()
1857 pKey = "titleFont"; in UpdateSettings()
1858 if ( pConfig->hasKey( pKey ) ) in UpdateSettings()
1860 Font aFont = toFont( pConfig->readFontEntry( pKey ), rSettings.GetUILocale() ); in UpdateSettings()
1867 pKey = "Theme"; in UpdateSettings()
1868 if ( pConfig->hasKey( pKey ) ) in UpdateSettings()
1869 aStyleSettings.SetPreferredSymbolsStyleName( readEntryUntranslated( pConfig, pKey ) ); in UpdateSettings()