mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 22:09:52 +08:00

1. Add VOrphanFile for external local file; 2. Add doc file for shortcuts; 3. Ctrl+E ? to open the shortcuts doc;
18 lines
421 B
C
18 lines
421 B
C
#ifndef VCONSTANTS_H
|
|
#define VCONSTANTS_H
|
|
|
|
// Html: rich text file;
|
|
// Markdown: Markdown text file;
|
|
enum class DocType { Html, Markdown };
|
|
|
|
enum class FileType { Normal, Orphan };
|
|
|
|
enum class ClipboardOpType { Invalid, CopyFile, CopyDir };
|
|
enum class OpenFileMode {Read = 0, Edit};
|
|
|
|
static const qreal c_webZoomFactorMax = 5;
|
|
static const qreal c_webZoomFactorMin = 0.25;
|
|
|
|
static const int c_tabSequenceBase = 1;
|
|
#endif
|