# -*- coding: utf-8 -*-1# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo2# Copyright (C) 2009-2025 German Aerospace Center (DLR) and others.3# This program and the accompanying materials are made available under the4# terms of the Eclipse Public License 2.0 which is available at5# https://www.eclipse.org/legal/epl-2.0/6# This Source Code may also be made available under the following Secondary7# Licenses when the conditions for such availability set forth in the Eclipse8# Public License 2.0 are satisfied: GNU General Public License, version 29# or later which is available at10# https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html11# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later1213# @file constants.py14# @author Pablo Alvarez Lopez15# @date 28-05-251617# imports18import os1920# files21NETEDIT_APP = os.environ.get("NETEDIT_BINARY", "netedit")22TEXTTEST_SANDBOX = os.environ.get("TEXTTEST_SANDBOX", os.getcwd())23REFERENCE_PNG = os.path.join(os.path.dirname(__file__), "reference.png")2425# Delays between operations26DELAY_KEY = 0.227DELAY_DRAGDROP = 328DELAY_KEY_TAB = 0.229DELAY_MOUSE_MOVE = 0.530DELAY_MOUSE_CLICK = 131DELAY_QUESTION = 232DELAY_SAVING = 133DELAY_RELOAD = 334DELAY_QUIT_NETEDIT = 535DELAY_UNDOREDO = 136DELAY_SELECT = 137DELAY_RECOMPUTE = 338DELAY_RECOMPUTE_VOLATILE = 539DELAY_REMOVESELECTION = 240DELAY_REFERENCE = 15414243