func (ds *displaySettings) unifiedBackgroundColor(w gtki.Widget) { doInUIThread(func() { styleContext, _ := w.GetStyleContext() styleContext.AddProvider(ds.provider, 9999) styleContext.AddClass("currentBackgroundColor") }) }
func (ds *displaySettings) control(w gtki.Widget) { doInUIThread(func() { styleContext, _ := w.GetStyleContext() styleContext.AddProvider(ds.provider, 9999) styleContext.AddClass("currentFontSetting") }) }
func getFontSizeFrom(w gtki.Widget) uint { styleContext, _ := w.GetStyleContext() property, _ := styleContext.GetProperty2("font", gtki.STATE_FLAG_NORMAL) fontDescription := property.(pangoi.FontDescription) return uint(fontDescription.GetSize() / pangoi.PANGO_SCALE) }
func (ds *displaySettings) defaultSettingsOn(w gtki.Widget) { doInUIThread(func() { styleContext, _ := w.GetStyleContext() styleContext.AddProvider(ds.provider, 9999) }) }