mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 05:49:53 +08:00

Add VTabWidget and VEdit to display content of files. Signed-off-by: Le Tan <tamlokveer@gmail.com>
40 lines
729 B
Prolog
40 lines
729 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2016-10-01T11:03:59
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = VNote
|
|
TEMPLATE = app
|
|
|
|
|
|
SOURCES += main.cpp\
|
|
vmainwindow.cpp \
|
|
vdirectorytree.cpp \
|
|
vnote.cpp \
|
|
vnotebook.cpp \
|
|
vnewdirdialog.cpp \
|
|
vconfigmanager.cpp \
|
|
vfilelist.cpp \
|
|
vnewfiledialog.cpp \
|
|
vtabwidget.cpp \
|
|
vedit.cpp
|
|
|
|
HEADERS += vmainwindow.h \
|
|
vdirectorytree.h \
|
|
vnote.h \
|
|
vnotebook.h \
|
|
vnewdirdialog.h \
|
|
vconfigmanager.h \
|
|
vfilelist.h \
|
|
vnewfiledialog.h \
|
|
vtabwidget.h \
|
|
vedit.h
|
|
|
|
RESOURCES += \
|
|
vnote.qrc
|