Subdirectory provided by Embedded Artists

Dependencies:   DM_FATFileSystem DM_HttpServer DM_USBHost EthernetInterface USBDevice mbed-rpc mbed-rtos mbed-src

Dependents:   lpc4088_displaymodule_hello_world_Sept_2018

Fork of DMSupport by Embedded Artists

Display/TouchPanel.h

Committer:
embeddedartists
Date:
2014-12-19
Revision:
10:1ac4b213f0f7
Parent:
9:a33326afd686
Child:
22:1a58a518435c

File content as of revision 10:1ac4b213f0f7:

/*
 *  Copyright 2014 Embedded Artists AB
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

#ifndef TOUCHPANEL_H
#define TOUCHPANEL_H

#include "bios.h"

/**
 * An abstract class that represents touch panels.
 */
class TouchPanel {
public:

    typedef struct {
        uint16_t x;
        uint16_t y;
        uint16_t z;
    } touchCoordinate_t;

    enum TouchError {
        TouchError_Ok                =   BiosError_Ok,
        TouchError_ConfigError       =   BiosError_ConfigError,
        TouchError_WrongBPP          =   BiosError_WrongBPP,
        TouchError_InvalidParam      =   BiosError_InvalidParam,
        TouchError_NoInit            =   BiosError_NoInit,
        TouchError_CalibrationError  =   BiosError_Calibration,        
        TouchError_MemoryError,
        TouchError_TouchNotSupported,
        TouchError_Timeout,
    };

    /**
     * Read coordinates from the touch panel.
     *
     * @param coord pointer to coordinate object. The read coordinates will be
     * written to this object.
     *
     *  @returns
     *       Ok on success
     *       An error code on failure
     */
    virtual TouchError read(touchCoordinate_t &coord) = 0;

    /**
     * Start to calibrate the display
     *
     *  @returns
     *       Ok on success
     *       An error code on failure
     */
    virtual TouchError calibrateStart() = 0;

    /**
     * Get the next calibration point. Draw an indicator on the screen
     * at the coordinates and ask the user to press/click on the indicator.
     * Please note that waitForCalibratePoint() must be called after this
     * method.
     *
     * @param x    the x coordinate is written to this argument
     * @param y    the y coordinate is written to this argument
     * @param last true if this is the last coordinate in the series
     *
     *  @returns
     *       Ok on success
     *       An error code on failure
     */
    virtual TouchError getNextCalibratePoint(uint16_t* x, uint16_t* y, bool* last=NULL) = 0;

    /**
     * Wait for a calibration point to have been pressed and recored.
     * This method must be called just after getNextCalibratePoint().
     *
     * @param morePoints true is written to this argument if there
     * are more calibrations points available; otherwise it will be false
     * @param timeout maximum number of milliseconds to wait for
     * a calibration point. Set this argument to 0 to wait indefinite.
     *
     *  @returns
     *       Ok on success
     *       An error code on failure
     */
    virtual TouchError waitForCalibratePoint(bool* morePoints, uint32_t timeout) = 0;
};

#endif