~apinheiro/unity/a11y-emit-children-changed

« back to all changes in this revision

Viewing changes to src/PlacesSettings.cpp

[merge] Dash and multihead fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
PlacesSettings::PlacesSettings ()
27
27
: _settings (NULL),
28
28
  _raw_from_factor (0),
29
 
  _form_factor (DESKTOP)
 
29
  _form_factor (DESKTOP),
 
30
  _dash_blur_type (NO_BLUR)
30
31
{
31
32
  _settings = g_settings_new ("com.canonical.Unity");
32
33
  g_signal_connect (_settings, "changed",
91
92
  //FIXME: We want to calculate this from DPI
92
93
  return 140;
93
94
}
 
95
 
 
96
PlacesSettings::DashBlurType
 
97
PlacesSettings::GetDashBlurType ()
 
98
{
 
99
  return _dash_blur_type;
 
100
}
 
101
 
 
102
void
 
103
PlacesSettings::SetDashBlurType (PlacesSettings::DashBlurType type)
 
104
{
 
105
  _dash_blur_type = type;
 
106
}
 
107