-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.h
More file actions
25 lines (20 loc) · 792 Bytes
/
constants.h
File metadata and controls
25 lines (20 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/////////////////////////////////////////////////////////////////////////////
// Name: constants.h
// Purpose: Constants and text snippets
// Author: Jan Buchholz
// Created: 2025-11-23
// Changed: 2026-04-09
/////////////////////////////////////////////////////////////////////////////
#pragma once
#include <QString>
#define APPNAME "MarkdownEditorQt"
#define APP_FOLDER "MarkdownEditorQt"
#define SET_COMPANY "org.jan.buchholz"
#define SET_WGEOMETRY "mainwindow/geometry"
#define SET_WSTATE "mainwindow/windowState"
#define SET_LASTFOLDER "file/lastfolder"
#define SET_SYNC "options/sync"
#define SET_EDITORFONT "options/editorfont"
#define PLACEHOLDER " [*]"
inline const QString APPVERSION = "v2.0";
int constexpr DEF_ICONSIZE = 16;