Program Listing for File mir_touchpad_config.h

Return to documentation for file (/home/docs/checkouts/readthedocs.org/user_builds/canonical-mir-documentation/checkouts/stable/include/common/mir/input/mir_touchpad_config.h)

/*
 * Copyright © Canonical Ltd.
 *
 * This program is free software: you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License version 2 or 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef MIR_INPUT_TOUCH_PAD_CONFIGURATION_H_
#define MIR_INPUT_TOUCH_PAD_CONFIGURATION_H_

#include <mir_toolkit/common.h>
#include <mir_toolkit/mir_input_device_types.h>

#include <memory>
#include <iosfwd>

struct MirTouchpadConfig
{
    MirTouchpadConfig();
    MirTouchpadConfig(MirTouchpadConfig&& other);
    MirTouchpadConfig(MirTouchpadConfig const& other);
    MirTouchpadConfig& operator=(MirTouchpadConfig const& other);
    ~MirTouchpadConfig();
    MirTouchpadConfig(
        MirTouchpadClickMode click_mode,
        MirTouchpadScrollMode scroll_mode,
        int button_down_scroll_button,
        bool tap_to_click,
        bool disable_while_typing,
        bool disable_with_external_mouse,
        bool middle_mouse_button_emulation);

    MirTouchpadClickMode click_mode() const;
    void click_mode(MirTouchpadClickMode mode);
    MirTouchpadScrollMode scroll_mode() const;
    void scroll_mode(MirTouchpadScrollMode mode);

    int button_down_scroll_button() const;
    void button_down_scroll_button(int);

    bool tap_to_click() const;
    void tap_to_click(bool);

    bool middle_mouse_button_emulation() const;
    void middle_mouse_button_emulation(bool);

    bool disable_with_external_mouse() const;
    void disable_with_external_mouse(bool enabled);

    bool disable_while_typing() const;
    void disable_while_typing(bool);

    bool operator==(MirTouchpadConfig const& rhs) const;

private:
    struct Implementation;
    std::unique_ptr<Implementation> impl;
};

std::ostream& operator<<(std::ostream& out, MirTouchpadConfig const& conf);

#endif