/*
 * Copyright (c) 2022 Huawei Device Co., Ltd.
 * 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 WEB_HIT_TESTRESULT_H
#define WEB_HIT_TESTRESULT_H

#include <string>

#include "nweb_export.h"

namespace OHOS::NWeb {

class OHOS_NWEB_EXPORT HitTestResult {
public:
    virtual ~HitTestResult() = default;

    /**
     * Default HitTestResult, where the target is unknown.
     */
    static const int UNKNOWN_TYPE = 0;
    /**
     * This type is no longer used.
     */
    static const int ANCHOR_TYPE = 1;
    /**
     * HitTestResult for hitting a phone number.
     */
    static const int PHONE_TYPE = 2;
    /**
     * HitTestResult for hitting a map address.
     */
    static const int GEO_TYPE = 3;
    /**
     * HitTestResult for hitting an email address.
     */
    static const int EMAIL_TYPE = 4;
    /**
     * HitTestResult for hitting an HTML::img tag.
     */
    static const int IMAGE_TYPE = 5;
    /**
     * This type is no longer used.
     */
    static const int IMAGE_ANCHOR_TYPE = 6;
    /**
     * HitTestResult for hitting a HTML::a tag with src=http.
     */
    static const int SRC_ANCHOR_TYPE = 7;
    /**
     * HitTestResult for hitting a HTML::a tag with src=http + HTML::img.
     */
    static const int SRC_IMAGE_ANCHOR_TYPE = 8;
    /**
     * HitTestResult for hitting an edit text area.
     */
    static const int EDIT_TEXT_TYPE = 9;

    virtual void SetType(int type) = 0;

    virtual int GetType() = 0;

    virtual std::string GetExtra() = 0;
};

} // namespace OHOS::NWeb

#endif // WEB_HIT_TESTRESULT_H