/*
* Copyright 2013 Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
* by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranties of
* MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see .
*
* Authors:
* Charles Kerr
*/
#ifndef INDICATOR_DATETIME_SETTINGS_H
#define INDICATOR_DATETIME_SETTINGS_H
#include
#include
#include
namespace unity {
namespace indicator {
namespace datetime {
/**
* \brief Interface that represents user-configurable settings.
*
* See the descriptions in data/com.canonical.indicator.datetime.gschema.xml
* for more information on specific properties.
*/
class Settings
{
public:
Settings() =default;
virtual ~Settings() =default;
core::Property custom_time_format;
core::Property> locations;
core::Property show_calendar;
core::Property show_clock;
core::Property show_date;
core::Property show_day;
core::Property show_detected_location;
core::Property show_events;
core::Property show_locations;
core::Property show_seconds;
core::Property show_week_numbers;
core::Property show_year;
core::Property time_format_mode;
core::Property timezone_name;
core::Property alarm_sound;
core::Property alarm_volume;
core::Property alarm_duration;
};
} // namespace datetime
} // namespace indicator
} // namespace unity
#endif // INDICATOR_DATETIME_SETTINGS_H