mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 19:24:08 +00:00
refactor: Move all .cc/.hh files to src/
This commit is contained in:
parent
7feb883408
commit
129345613e
350
goldendict.pro
350
goldendict.pro
|
@ -275,84 +275,25 @@ DEFINES += PROGRAM_VERSION=\\\"$$VERSION\\\"
|
||||||
|
|
||||||
# Input
|
# Input
|
||||||
HEADERS += \
|
HEADERS += \
|
||||||
about.hh \
|
src/about.hh \
|
||||||
ankiconnector.hh \
|
src/ankiconnector.hh \
|
||||||
article_inspect.hh \
|
src/article_inspect.hh \
|
||||||
article_maker.hh \
|
src/article_maker.hh \
|
||||||
article_netmgr.hh \
|
src/article_netmgr.hh \
|
||||||
articlewebpage.hh \
|
src/articlewebpage.hh \
|
||||||
articlewebview.hh \
|
src/articlewebview.hh \
|
||||||
atomic_rename.hh \
|
src/atomic_rename.hh \
|
||||||
audiolink.hh \
|
src/audiolink.hh \
|
||||||
audioplayerfactory.hh \
|
src/audioplayerfactory.hh \
|
||||||
audioplayerinterface.hh \
|
src/audioplayerinterface.hh \
|
||||||
base/globalregex.hh \
|
src/base/globalregex.hh \
|
||||||
base_type.hh \
|
src/base_type.hh \
|
||||||
btreeidx.hh \
|
src/btreeidx.hh \
|
||||||
chunkedstorage.hh \
|
src/chunkedstorage.hh \
|
||||||
config.hh \
|
src/config.hh \
|
||||||
country.hh \
|
src/country.hh \
|
||||||
decompress.hh \
|
src/decompress.hh \
|
||||||
delegate.hh \
|
src/delegate.hh \
|
||||||
dictdfiles.hh \
|
|
||||||
dictheadwords.hh \
|
|
||||||
dictinfo.hh \
|
|
||||||
dictionarybar.hh \
|
|
||||||
dictserver.hh \
|
|
||||||
dictspanewidget.hh \
|
|
||||||
dictzip.hh \
|
|
||||||
editdictionaries.hh \
|
|
||||||
ex.hh \
|
|
||||||
externalaudioplayer.hh \
|
|
||||||
externalviewer.hh \
|
|
||||||
favoritespanewidget.hh \
|
|
||||||
ffmpegaudio.hh \
|
|
||||||
ffmpegaudioplayer.hh \
|
|
||||||
file.hh \
|
|
||||||
filetype.hh \
|
|
||||||
folding.hh \
|
|
||||||
fsencoding.hh \
|
|
||||||
ftshelpers.hh \
|
|
||||||
fulltextsearch.hh \
|
|
||||||
gdappstyle.hh \
|
|
||||||
gddebug.hh \
|
|
||||||
gestures.hh \
|
|
||||||
globalbroadcaster.h \
|
|
||||||
groupcombobox.hh \
|
|
||||||
groups.hh \
|
|
||||||
groups_widgets.hh \
|
|
||||||
headwordsmodel.hh \
|
|
||||||
history.hh \
|
|
||||||
historypanewidget.hh \
|
|
||||||
hotkeywrapper.hh \
|
|
||||||
htmlescape.hh \
|
|
||||||
iconv.hh \
|
|
||||||
iframeschemehandler.hh \
|
|
||||||
inc_case_folding.hh \
|
|
||||||
inc_diacritic_folding.hh \
|
|
||||||
indexedzip.hh \
|
|
||||||
initializing.hh \
|
|
||||||
instances.hh \
|
|
||||||
keyboardstate.hh \
|
|
||||||
langcoder.hh \
|
|
||||||
language.hh \
|
|
||||||
loaddictionaries.hh \
|
|
||||||
mainstatusbar.hh \
|
|
||||||
maintabwidget.hh \
|
|
||||||
mainwindow.hh \
|
|
||||||
mdictparser.hh \
|
|
||||||
mruqmenu.hh \
|
|
||||||
multimediaaudioplayer.hh \
|
|
||||||
mutex.hh \
|
|
||||||
orderandprops.hh \
|
|
||||||
parsecmdline.hh \
|
|
||||||
preferences.hh \
|
|
||||||
resourceschemehandler.hh \
|
|
||||||
ripemd.hh \
|
|
||||||
scanpopup.hh \
|
|
||||||
searchpanewidget.hh \
|
|
||||||
splitfile.hh \
|
|
||||||
sptr.hh \
|
|
||||||
src/dict/aard.hh \
|
src/dict/aard.hh \
|
||||||
src/dict/belarusiantranslit.hh \
|
src/dict/belarusiantranslit.hh \
|
||||||
src/dict/bgl.hh \
|
src/dict/bgl.hh \
|
||||||
|
@ -383,98 +324,104 @@ HEADERS += \
|
||||||
src/dict/xdxf2html.hh \
|
src/dict/xdxf2html.hh \
|
||||||
src/dict/zim.hh \
|
src/dict/zim.hh \
|
||||||
src/dict/zipsounds.hh \
|
src/dict/zipsounds.hh \
|
||||||
|
src/dictdfiles.hh \
|
||||||
|
src/dictheadwords.hh \
|
||||||
|
src/dictinfo.hh \
|
||||||
|
src/dictionarybar.hh \
|
||||||
|
src/dictserver.hh \
|
||||||
|
src/dictspanewidget.hh \
|
||||||
|
src/dictzip.hh \
|
||||||
|
src/editdictionaries.hh \
|
||||||
|
src/ex.hh \
|
||||||
|
src/externalaudioplayer.hh \
|
||||||
|
src/externalviewer.hh \
|
||||||
|
src/favoritespanewidget.hh \
|
||||||
|
src/ffmpegaudio.hh \
|
||||||
|
src/ffmpegaudioplayer.hh \
|
||||||
|
src/file.hh \
|
||||||
|
src/filetype.hh \
|
||||||
|
src/folding.hh \
|
||||||
|
src/fsencoding.hh \
|
||||||
|
src/ftshelpers.hh \
|
||||||
|
src/fulltextsearch.hh \
|
||||||
|
src/gdappstyle.hh \
|
||||||
|
src/gddebug.hh \
|
||||||
|
src/gestures.hh \
|
||||||
|
src/globalbroadcaster.h \
|
||||||
|
src/groupcombobox.hh \
|
||||||
|
src/groups.hh \
|
||||||
|
src/groups_widgets.hh \
|
||||||
|
src/headwordsmodel.hh \
|
||||||
|
src/history.hh \
|
||||||
|
src/historypanewidget.hh \
|
||||||
|
src/hotkeywrapper.hh \
|
||||||
|
src/htmlescape.hh \
|
||||||
src/hunspell.hh \
|
src/hunspell.hh \
|
||||||
|
src/iconv.hh \
|
||||||
|
src/iframeschemehandler.hh \
|
||||||
|
src/inc_case_folding.hh \
|
||||||
|
src/inc_diacritic_folding.hh \
|
||||||
|
src/indexedzip.hh \
|
||||||
|
src/initializing.hh \
|
||||||
|
src/instances.hh \
|
||||||
|
src/keyboardstate.hh \
|
||||||
|
src/langcoder.hh \
|
||||||
|
src/language.hh \
|
||||||
|
src/loaddictionaries.hh \
|
||||||
|
src/mainstatusbar.hh \
|
||||||
|
src/maintabwidget.hh \
|
||||||
|
src/mainwindow.hh \
|
||||||
|
src/mdictparser.hh \
|
||||||
|
src/mruqmenu.hh \
|
||||||
|
src/multimediaaudioplayer.hh \
|
||||||
|
src/mutex.hh \
|
||||||
|
src/orderandprops.hh \
|
||||||
|
src/parsecmdline.hh \
|
||||||
|
src/preferences.hh \
|
||||||
|
src/resourceschemehandler.hh \
|
||||||
|
src/ripemd.hh \
|
||||||
|
src/scanpopup.hh \
|
||||||
|
src/searchpanewidget.hh \
|
||||||
|
src/splitfile.hh \
|
||||||
|
src/sptr.hh \
|
||||||
|
src/stylescombobox.hh \
|
||||||
|
src/termination.hh \
|
||||||
|
src/tiff.hh \
|
||||||
|
src/translatebox.hh \
|
||||||
|
src/ufile.hh \
|
||||||
src/ui/articleview.hh \
|
src/ui/articleview.hh \
|
||||||
src/ui/ftssearchpanel.hh \
|
src/ui/ftssearchpanel.hh \
|
||||||
src/ui/searchpanel.hh \
|
src/ui/searchpanel.hh \
|
||||||
stylescombobox.hh \
|
src/utf8.hh \
|
||||||
termination.hh \
|
src/utils.hh \
|
||||||
tiff.hh \
|
src/webmultimediadownload.hh \
|
||||||
translatebox.hh \
|
src/weburlrequestinterceptor.h \
|
||||||
ufile.hh \
|
src/wordfinder.hh \
|
||||||
utf8.hh \
|
src/wordlist.hh \
|
||||||
utils.hh \
|
src/wstring.hh \
|
||||||
webmultimediadownload.hh \
|
src/wstring_qt.hh \
|
||||||
weburlrequestinterceptor.h \
|
src/zipfile.hh
|
||||||
wordfinder.hh \
|
|
||||||
wordlist.hh \
|
|
||||||
wstring.hh \
|
|
||||||
wstring_qt.hh \
|
|
||||||
zipfile.hh
|
|
||||||
|
|
||||||
FORMS += $$files(src/ui/*.ui)
|
FORMS += $$files(src/ui/*.ui)
|
||||||
|
|
||||||
SOURCES += \
|
SOURCES += \
|
||||||
about.cc \
|
src/about.cc \
|
||||||
ankiconnector.cc \
|
src/ankiconnector.cc \
|
||||||
article_inspect.cc \
|
src/article_inspect.cc \
|
||||||
article_maker.cc \
|
src/article_maker.cc \
|
||||||
article_netmgr.cc \
|
src/article_netmgr.cc \
|
||||||
articlewebpage.cc \
|
src/articlewebpage.cc \
|
||||||
articlewebview.cc \
|
src/articlewebview.cc \
|
||||||
atomic_rename.cc \
|
src/atomic_rename.cc \
|
||||||
audiolink.cc \
|
src/audiolink.cc \
|
||||||
audioplayerfactory.cc \
|
src/audioplayerfactory.cc \
|
||||||
base/globalregex.cc \
|
src/base/globalregex.cc \
|
||||||
btreeidx.cc \
|
src/btreeidx.cc \
|
||||||
chunkedstorage.cc \
|
src/chunkedstorage.cc \
|
||||||
config.cc \
|
src/config.cc \
|
||||||
country.cc \
|
src/country.cc \
|
||||||
decompress.cc \
|
src/decompress.cc \
|
||||||
delegate.cc \
|
src/delegate.cc \
|
||||||
dictdfiles.cc \
|
|
||||||
dictheadwords.cc \
|
|
||||||
dictinfo.cc \
|
|
||||||
dictionarybar.cc \
|
|
||||||
dictserver.cc \
|
|
||||||
dictzip.c \
|
|
||||||
editdictionaries.cc \
|
|
||||||
externalaudioplayer.cc \
|
|
||||||
externalviewer.cc \
|
|
||||||
favoritespanewidget.cc \
|
|
||||||
ffmpegaudio.cc \
|
|
||||||
file.cc \
|
|
||||||
filetype.cc \
|
|
||||||
folding.cc \
|
|
||||||
fsencoding.cc \
|
|
||||||
ftshelpers.cc \
|
|
||||||
fulltextsearch.cc \
|
|
||||||
gdappstyle.cc \
|
|
||||||
gddebug.cc \
|
|
||||||
gestures.cc \
|
|
||||||
globalbroadcaster.cc \
|
|
||||||
groupcombobox.cc \
|
|
||||||
groups.cc \
|
|
||||||
groups_widgets.cc \
|
|
||||||
headwordsmodel.cc \
|
|
||||||
history.cc \
|
|
||||||
historypanewidget.cc \
|
|
||||||
hotkeywrapper.cc \
|
|
||||||
htmlescape.cc \
|
|
||||||
iconv.cc \
|
|
||||||
iframeschemehandler.cc \
|
|
||||||
indexedzip.cc \
|
|
||||||
initializing.cc \
|
|
||||||
instances.cc \
|
|
||||||
keyboardstate.cc \
|
|
||||||
langcoder.cc \
|
|
||||||
language.cc \
|
|
||||||
loaddictionaries.cc \
|
|
||||||
main.cc \
|
|
||||||
mainstatusbar.cc \
|
|
||||||
maintabwidget.cc \
|
|
||||||
mainwindow.cc \
|
|
||||||
mdictparser.cc \
|
|
||||||
mruqmenu.cc \
|
|
||||||
multimediaaudioplayer.cc \
|
|
||||||
mutex.cc \
|
|
||||||
orderandprops.cc \
|
|
||||||
parsecmdline.cc \
|
|
||||||
preferences.cc \
|
|
||||||
resourceschemehandler.cc \
|
|
||||||
ripemd.cc \
|
|
||||||
scanpopup.cc \
|
|
||||||
splitfile.cc \
|
|
||||||
src/dict/aard.cc \
|
src/dict/aard.cc \
|
||||||
src/dict/belarusiantranslit.cc \
|
src/dict/belarusiantranslit.cc \
|
||||||
src/dict/bgl.cc \
|
src/dict/bgl.cc \
|
||||||
|
@ -506,22 +453,75 @@ SOURCES += \
|
||||||
src/dict/xdxf2html.cc \
|
src/dict/xdxf2html.cc \
|
||||||
src/dict/zim.cc \
|
src/dict/zim.cc \
|
||||||
src/dict/zipsounds.cc \
|
src/dict/zipsounds.cc \
|
||||||
|
src/dictdfiles.cc \
|
||||||
|
src/dictheadwords.cc \
|
||||||
|
src/dictinfo.cc \
|
||||||
|
src/dictionarybar.cc \
|
||||||
|
src/dictserver.cc \
|
||||||
|
src/dictzip.c \
|
||||||
|
src/editdictionaries.cc \
|
||||||
|
src/externalaudioplayer.cc \
|
||||||
|
src/externalviewer.cc \
|
||||||
|
src/favoritespanewidget.cc \
|
||||||
|
src/ffmpegaudio.cc \
|
||||||
|
src/file.cc \
|
||||||
|
src/filetype.cc \
|
||||||
|
src/folding.cc \
|
||||||
|
src/fsencoding.cc \
|
||||||
|
src/ftshelpers.cc \
|
||||||
|
src/fulltextsearch.cc \
|
||||||
|
src/gdappstyle.cc \
|
||||||
|
src/gddebug.cc \
|
||||||
|
src/gestures.cc \
|
||||||
|
src/globalbroadcaster.cc \
|
||||||
|
src/groupcombobox.cc \
|
||||||
|
src/groups.cc \
|
||||||
|
src/groups_widgets.cc \
|
||||||
|
src/headwordsmodel.cc \
|
||||||
|
src/history.cc \
|
||||||
|
src/historypanewidget.cc \
|
||||||
|
src/hotkeywrapper.cc \
|
||||||
|
src/htmlescape.cc \
|
||||||
|
src/iconv.cc \
|
||||||
|
src/iframeschemehandler.cc \
|
||||||
|
src/indexedzip.cc \
|
||||||
|
src/initializing.cc \
|
||||||
|
src/instances.cc \
|
||||||
|
src/keyboardstate.cc \
|
||||||
|
src/langcoder.cc \
|
||||||
|
src/language.cc \
|
||||||
|
src/loaddictionaries.cc \
|
||||||
|
src/main.cc \
|
||||||
|
src/mainstatusbar.cc \
|
||||||
|
src/maintabwidget.cc \
|
||||||
|
src/mainwindow.cc \
|
||||||
|
src/mdictparser.cc \
|
||||||
|
src/mruqmenu.cc \
|
||||||
|
src/multimediaaudioplayer.cc \
|
||||||
|
src/mutex.cc \
|
||||||
|
src/orderandprops.cc \
|
||||||
|
src/parsecmdline.cc \
|
||||||
|
src/preferences.cc \
|
||||||
|
src/resourceschemehandler.cc \
|
||||||
|
src/ripemd.cc \
|
||||||
|
src/scanpopup.cc \
|
||||||
|
src/splitfile.cc \
|
||||||
|
src/stylescombobox.cc \
|
||||||
|
src/termination.cc \
|
||||||
|
src/tiff.cc \
|
||||||
|
src/translatebox.cc \
|
||||||
|
src/ufile.cc \
|
||||||
src/ui/articleview.cc \
|
src/ui/articleview.cc \
|
||||||
src/ui/ftssearchpanel.cc \
|
src/ui/ftssearchpanel.cc \
|
||||||
src/ui/searchpanel.cc \
|
src/ui/searchpanel.cc \
|
||||||
stylescombobox.cc \
|
src/utf8.cc \
|
||||||
termination.cc \
|
src/utils.cc \
|
||||||
tiff.cc \
|
src/webmultimediadownload.cc \
|
||||||
translatebox.cc \
|
src/weburlrequestinterceptor.cc \
|
||||||
ufile.cc \
|
src/wordfinder.cc \
|
||||||
utf8.cc \
|
src/wordlist.cc \
|
||||||
utils.cc \
|
src/wstring_qt.cc \
|
||||||
webmultimediadownload.cc \
|
src/zipfile.cc
|
||||||
weburlrequestinterceptor.cc \
|
|
||||||
wordfinder.cc \
|
|
||||||
wordlist.cc \
|
|
||||||
wstring_qt.cc \
|
|
||||||
zipfile.cc
|
|
||||||
|
|
||||||
#speech to text
|
#speech to text
|
||||||
SOURCES += speechclient.cc \
|
SOURCES += speechclient.cc \
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue