| 1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
| 2 | // |
| 3 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 4 | |
| 5 | #ifndef DEFINITIONS_H |
| 6 | #define DEFINITIONS_H |
| 7 | |
| 8 | #include <QString> |
| 9 | #include <QAction> |
| 10 | |
| 11 | namespace SymbolPri{ |
| 12 | static QString recordFileName {".record" }; |
| 13 | static QString definitionsFileName {".definitions" }; |
| 14 | static QString declaredFileName {".declared" }; |
| 15 | static QString declaredAcStr {QAction::tr("jump to declared" )}; |
| 16 | static QString recordAcStr {QAction::tr("jump to record" )}; |
| 17 | static QString definitionsAcStr {QAction::tr("jump to deninitions" )}; |
| 18 | } |
| 19 | #endif // DEFINITIONS_H |
| 20 | |