Lines Matching refs:pConfig

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()
1827 KConfig *pConfig = KGlobal::config(); in UpdateSettings() local
1828 if ( pConfig ) in UpdateSettings()
1830 pConfig->setGroup( "WM" ); in UpdateSettings()
1834 if ( pConfig->hasKey( pKey ) ) in UpdateSettings()
1835 aStyleSettings.SetActiveColor( readColor( pConfig, pKey ) ); in UpdateSettings()
1838 if ( pConfig->hasKey( pKey ) ) in UpdateSettings()
1839 aStyleSettings.SetActiveColor2( readColor( pConfig, pKey ) ); in UpdateSettings()
1842 if ( pConfig->hasKey( pKey ) ) in UpdateSettings()
1843 aStyleSettings.SetDeactiveColor( readColor( pConfig, pKey ) ); in UpdateSettings()
1846 if ( pConfig->hasKey( pKey ) ) in UpdateSettings()
1847 aStyleSettings.SetDeactiveColor2( readColor( pConfig, pKey ) ); in UpdateSettings()
1850 if ( pConfig->hasKey( pKey ) ) in UpdateSettings()
1851 aStyleSettings.SetDeactiveTextColor( readColor( pConfig, pKey ) ); in UpdateSettings()
1854 if ( pConfig->hasKey( pKey ) ) in UpdateSettings()
1855 aStyleSettings.SetActiveTextColor( readColor( pConfig, pKey ) ); in UpdateSettings()
1858 if ( pConfig->hasKey( pKey ) ) in UpdateSettings()
1860 Font aFont = toFont( pConfig->readFontEntry( pKey ), rSettings.GetUILocale() ); in UpdateSettings()
1865 pConfig->setGroup( "Icons" ); in UpdateSettings()
1868 if ( pConfig->hasKey( pKey ) ) in UpdateSettings()
1869 aStyleSettings.SetPreferredSymbolsStyleName( readEntryUntranslated( pConfig, pKey ) ); in UpdateSettings()