2.일괄처리방식 search 마지막에 스페이스 있을 경우 분석결과가 나오지 않는 오류
3.형태소분석 위젯 순서 변경
4.anlayzer new column 할 경우 QTableWidgetItem(QString(" ")) 수행되도록 수정
5.엑셀에서 붙혀 넣기할 때 row 가 추가될 경우 빈 cell에 공백 추가하기(4번과 유사함)
git-svn-id: svn://192.168.0.12/source@255 8346c931-da38-4b9b-9d4c-e48b93cbd075
106 lines
2.2 KiB
Prolog
106 lines
2.2 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2015-04-06T11:16:08
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui sql network webkit webkitwidgets
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
DEFINES += NOMINMAX
|
|
|
|
TARGET = MorphereAnalyzer
|
|
TEMPLATE = app
|
|
|
|
|
|
SOURCES += \
|
|
stable.cpp \
|
|
../Json/sjson.cpp \
|
|
sdictionary.cpp \
|
|
tablealgorithm_interface.cpp \
|
|
yalgorithm.cpp \
|
|
ymorpherethread.cpp \
|
|
ychildrenthread.cpp \
|
|
ymorpherewidget.cpp \
|
|
ymbasicwidget.cpp \
|
|
ymonedepthwidget.cpp \
|
|
ymnxnmatrixwidget.cpp \
|
|
ymfilter.cpp \
|
|
ymfilterchildren.cpp \
|
|
ymtwodepthwidget.cpp \
|
|
ymuploadwidget.cpp \
|
|
ymplatformwidget.cpp \
|
|
ymtwodepthawidget.cpp \
|
|
subwindow.cpp \
|
|
main.cpp \
|
|
mainwindow.cpp \
|
|
sbatchrun.cpp \
|
|
scolumn.cpp \
|
|
scountdlg.cpp \
|
|
sdatadlg.cpp \
|
|
sfilterdlg.cpp \
|
|
sfilterobject.cpp \
|
|
sloaddlg.cpp \
|
|
ymcenterkeywordwidget.cpp
|
|
|
|
HEADERS += \
|
|
stable.h \
|
|
../Json/sjson.h \
|
|
../common.h \
|
|
char_property.h \
|
|
common.h \
|
|
connector.h \
|
|
context_id.h \
|
|
darts.h \
|
|
dictionary.h \
|
|
dictionary_rewriter.h \
|
|
feature_index.h \
|
|
freelist.h \
|
|
iconv_utils.h \
|
|
lbfgs.h \
|
|
learner_node.h \
|
|
learner_tagger.h \
|
|
mecab.h \
|
|
mmap.h \
|
|
nbest_generator.h \
|
|
param.h \
|
|
scoped_ptr.h \
|
|
stream_wrapper.h \
|
|
string_buffer.h \
|
|
thread.h \
|
|
tokenizer.h \
|
|
ucs.h \
|
|
ucstable.h \
|
|
utils.h \
|
|
viterbi.h \
|
|
winmain.h \
|
|
writer.h \
|
|
sdictionary.h \
|
|
dataalgorithm_interface.h \
|
|
tablealgorithm_interface.h \
|
|
yalgorithm.h \
|
|
ymorpherethread.h \
|
|
ychildrenthread.h \
|
|
ymorpherewidget.h \
|
|
ymbasicwidget.h \
|
|
ymonedepthwidget.h \
|
|
ymnxnmatrixwidget.h \
|
|
ymfilter.h \
|
|
ymfilterchildren.h \
|
|
ymtwodepthwidget.h \
|
|
ymuploadwidget.h \
|
|
ymplatformwidget.h \
|
|
ymtwodepthawidget.h \
|
|
subwindow.h \
|
|
mainwindow.h \
|
|
sbatchrun.h \
|
|
scolumn.h \
|
|
scountdlg.h \
|
|
sdatadlg.h \
|
|
sfilterdlg.h \
|
|
sfilterobject.h \
|
|
sloaddlg.h \
|
|
ymcenterkeywordwidget.h
|
|
|
|
FORMS += mainwindow.ui
|