Program Listing for File persist_display_config.h¶
↰ Return to documentation for file (include/miroil/miroil/persist_display_config.h
)
/*
* Copyright © 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 warranty of
* MERCHANTABILITY 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 <http://www.gnu.org/licenses/>.
*/
#ifndef MIROIL_PERSIST_DISPLAY_CONFIG_H
#define MIROIL_PERSIST_DISPLAY_CONFIG_H
#include <functional>
#include <memory>
namespace mir { class Server; namespace graphics { class DisplayConfigurationPolicy; }}
namespace miroil
{
class DisplayConfigurationPolicy;
class DisplayConfigurationStorage;
class PersistDisplayConfig
{
public:
~PersistDisplayConfig();
PersistDisplayConfig(PersistDisplayConfig const&);
auto operator=(PersistDisplayConfig const&) -> PersistDisplayConfig&;
// TODO factor this out better
using DisplayConfigurationPolicyWrapper = std::function<std::shared_ptr<DisplayConfigurationPolicy>(std::shared_ptr<mir::graphics::DisplayConfigurationPolicy> const& wrapped)>;
PersistDisplayConfig(std::shared_ptr<DisplayConfigurationStorage> const& storage,
DisplayConfigurationPolicyWrapper const& custom_wrapper);
void operator()(mir::Server& server);
private:
struct Self;
std::shared_ptr<Self> self;
};
}
#endif //MIROIL_PERSIST_DISPLAY_CONFIG_H