mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 11:14:06 +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
|
||||
HEADERS += \
|
||||
about.hh \
|
||||
ankiconnector.hh \
|
||||
article_inspect.hh \
|
||||
article_maker.hh \
|
||||
article_netmgr.hh \
|
||||
articlewebpage.hh \
|
||||
articlewebview.hh \
|
||||
atomic_rename.hh \
|
||||
audiolink.hh \
|
||||
audioplayerfactory.hh \
|
||||
audioplayerinterface.hh \
|
||||
base/globalregex.hh \
|
||||
base_type.hh \
|
||||
btreeidx.hh \
|
||||
chunkedstorage.hh \
|
||||
config.hh \
|
||||
country.hh \
|
||||
decompress.hh \
|
||||
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/about.hh \
|
||||
src/ankiconnector.hh \
|
||||
src/article_inspect.hh \
|
||||
src/article_maker.hh \
|
||||
src/article_netmgr.hh \
|
||||
src/articlewebpage.hh \
|
||||
src/articlewebview.hh \
|
||||
src/atomic_rename.hh \
|
||||
src/audiolink.hh \
|
||||
src/audioplayerfactory.hh \
|
||||
src/audioplayerinterface.hh \
|
||||
src/base/globalregex.hh \
|
||||
src/base_type.hh \
|
||||
src/btreeidx.hh \
|
||||
src/chunkedstorage.hh \
|
||||
src/config.hh \
|
||||
src/country.hh \
|
||||
src/decompress.hh \
|
||||
src/delegate.hh \
|
||||
src/dict/aard.hh \
|
||||
src/dict/belarusiantranslit.hh \
|
||||
src/dict/bgl.hh \
|
||||
|
@ -383,98 +324,104 @@ HEADERS += \
|
|||
src/dict/xdxf2html.hh \
|
||||
src/dict/zim.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/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/ftssearchpanel.hh \
|
||||
src/ui/searchpanel.hh \
|
||||
stylescombobox.hh \
|
||||
termination.hh \
|
||||
tiff.hh \
|
||||
translatebox.hh \
|
||||
ufile.hh \
|
||||
utf8.hh \
|
||||
utils.hh \
|
||||
webmultimediadownload.hh \
|
||||
weburlrequestinterceptor.h \
|
||||
wordfinder.hh \
|
||||
wordlist.hh \
|
||||
wstring.hh \
|
||||
wstring_qt.hh \
|
||||
zipfile.hh
|
||||
src/utf8.hh \
|
||||
src/utils.hh \
|
||||
src/webmultimediadownload.hh \
|
||||
src/weburlrequestinterceptor.h \
|
||||
src/wordfinder.hh \
|
||||
src/wordlist.hh \
|
||||
src/wstring.hh \
|
||||
src/wstring_qt.hh \
|
||||
src/zipfile.hh
|
||||
|
||||
FORMS += $$files(src/ui/*.ui)
|
||||
|
||||
SOURCES += \
|
||||
about.cc \
|
||||
ankiconnector.cc \
|
||||
article_inspect.cc \
|
||||
article_maker.cc \
|
||||
article_netmgr.cc \
|
||||
articlewebpage.cc \
|
||||
articlewebview.cc \
|
||||
atomic_rename.cc \
|
||||
audiolink.cc \
|
||||
audioplayerfactory.cc \
|
||||
base/globalregex.cc \
|
||||
btreeidx.cc \
|
||||
chunkedstorage.cc \
|
||||
config.cc \
|
||||
country.cc \
|
||||
decompress.cc \
|
||||
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/about.cc \
|
||||
src/ankiconnector.cc \
|
||||
src/article_inspect.cc \
|
||||
src/article_maker.cc \
|
||||
src/article_netmgr.cc \
|
||||
src/articlewebpage.cc \
|
||||
src/articlewebview.cc \
|
||||
src/atomic_rename.cc \
|
||||
src/audiolink.cc \
|
||||
src/audioplayerfactory.cc \
|
||||
src/base/globalregex.cc \
|
||||
src/btreeidx.cc \
|
||||
src/chunkedstorage.cc \
|
||||
src/config.cc \
|
||||
src/country.cc \
|
||||
src/decompress.cc \
|
||||
src/delegate.cc \
|
||||
src/dict/aard.cc \
|
||||
src/dict/belarusiantranslit.cc \
|
||||
src/dict/bgl.cc \
|
||||
|
@ -506,22 +453,75 @@ SOURCES += \
|
|||
src/dict/xdxf2html.cc \
|
||||
src/dict/zim.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/ftssearchpanel.cc \
|
||||
src/ui/searchpanel.cc \
|
||||
stylescombobox.cc \
|
||||
termination.cc \
|
||||
tiff.cc \
|
||||
translatebox.cc \
|
||||
ufile.cc \
|
||||
utf8.cc \
|
||||
utils.cc \
|
||||
webmultimediadownload.cc \
|
||||
weburlrequestinterceptor.cc \
|
||||
wordfinder.cc \
|
||||
wordlist.cc \
|
||||
wstring_qt.cc \
|
||||
zipfile.cc
|
||||
src/utf8.cc \
|
||||
src/utils.cc \
|
||||
src/webmultimediadownload.cc \
|
||||
src/weburlrequestinterceptor.cc \
|
||||
src/wordfinder.cc \
|
||||
src/wordlist.cc \
|
||||
src/wstring_qt.cc \
|
||||
src/zipfile.cc
|
||||
|
||||
#speech to text
|
||||
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