├── .editorconfig ├── .gitignore ├── .gitmodules ├── .travis.yml ├── COPYING ├── README.md ├── acquisition.pro ├── appveyor.yml ├── assets ├── ElderBackground_1x1.png ├── ElderBackground_1x3.png ├── ElderBackground_1x4.png ├── ElderBackground_2x1.png ├── ElderBackground_2x2.png ├── ElderBackground_2x3.png ├── ElderBackground_2x4.png ├── ElderItemSymbol.png ├── Fontin-SmallCaps.ttf ├── ItemsHeaderCurrencyLeft.png ├── ItemsHeaderCurrencyMiddle.png ├── ItemsHeaderCurrencyRight.png ├── ItemsHeaderGemLeft.png ├── ItemsHeaderGemMiddle.png ├── ItemsHeaderGemRight.png ├── ItemsHeaderMagicLeft.png ├── ItemsHeaderMagicMiddle.png ├── ItemsHeaderMagicRight.png ├── ItemsHeaderRareLeft.png ├── ItemsHeaderRareMiddle.png ├── ItemsHeaderRareRight.png ├── ItemsHeaderRareSingleLineLeft.png ├── ItemsHeaderRareSingleLineMiddle.png ├── ItemsHeaderRareSingleLineRight.png ├── ItemsHeaderUniqueLeft.png ├── ItemsHeaderUniqueMiddle.png ├── ItemsHeaderUniqueRight.png ├── ItemsHeaderUniqueSingleLineLeft.png ├── ItemsHeaderUniqueSingleLineMiddle.png ├── ItemsHeaderUniqueSingleLineRight.png ├── ItemsHeaderWhiteLeft.png ├── ItemsHeaderWhiteMiddle.png ├── ItemsHeaderWhiteRight.png ├── SeparatorCurrency.png ├── SeparatorGem.png ├── SeparatorMagic.png ├── SeparatorQuest.png ├── SeparatorRare.png ├── SeparatorUnique.png ├── SeparatorWhite.png ├── ShaperBackground_1x1.png ├── ShaperBackground_1x3.png ├── ShaperBackground_1x4.png ├── ShaperBackground_2x1.png ├── ShaperBackground_2x2.png ├── ShaperBackground_2x3.png ├── ShaperBackground_2x4.png ├── ShaperItemSymbol.png ├── Socket_A.png ├── Socket_D.png ├── Socket_G.png ├── Socket_I.png ├── Socket_Link_Horizontal.png ├── Socket_Link_Vertical.png ├── Socket_S.png ├── icon.ico ├── icon.png └── icon.svg ├── deploy-win.sh ├── deps ├── QsLog │ ├── QsLog.cpp │ ├── QsLog.h │ ├── QsLog.pri │ ├── QsLogChanges.txt │ ├── QsLogDest.cpp │ ├── QsLogDest.h │ ├── QsLogDestConsole.cpp │ ├── QsLogDestConsole.h │ ├── QsLogDestFile.cpp │ ├── QsLogDestFile.h │ ├── QsLogDisableForThisFile.h │ ├── QsLogLevel.h │ ├── QsLogReadme.txt │ ├── examplemain.cpp │ └── log_example.pro ├── qdarkstyle │ ├── rc │ │ ├── Hmovetoolbar.png │ │ ├── Hsepartoolbar.png │ │ ├── Vmovetoolbar.png │ │ ├── Vsepartoolbar.png │ │ ├── branch_closed-on.png │ │ ├── branch_closed.png │ │ ├── branch_open-on.png │ │ ├── branch_open.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_disabled.png │ │ ├── checkbox_checked_focus.png │ │ ├── checkbox_indeterminate.png │ │ ├── checkbox_indeterminate_disabled.png │ │ ├── checkbox_indeterminate_focus.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_disabled.png │ │ ├── checkbox_unchecked_focus.png │ │ ├── close-hover.png │ │ ├── close-pressed.png │ │ ├── close.png │ │ ├── down_arrow.png │ │ ├── down_arrow_disabled.png │ │ ├── left_arrow.png │ │ ├── left_arrow_disabled.png │ │ ├── radio_checked.png │ │ ├── radio_checked_disabled.png │ │ ├── radio_checked_focus.png │ │ ├── radio_unchecked.png │ │ ├── radio_unchecked_disabled.png │ │ ├── radio_unchecked_focus.png │ │ ├── right_arrow.png │ │ ├── right_arrow_disabled.png │ │ ├── sizegrip.png │ │ ├── stylesheet-branch-end.png │ │ ├── stylesheet-branch-more.png │ │ ├── stylesheet-vline.png │ │ ├── transparent.png │ │ ├── undock.png │ │ ├── up_arrow.png │ │ └── up_arrow_disabled.png │ ├── style.qrc │ └── style.qss ├── rapidjson │ ├── allocators.h │ ├── document.h │ ├── encodedstream.h │ ├── encodings.h │ ├── error │ │ ├── en.h │ │ └── error.h │ ├── filereadstream.h │ ├── filestream.h │ ├── filewritestream.h │ ├── internal │ │ ├── dtoa.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── stack.h │ │ └── strfunc.h │ ├── memorybuffer.h │ ├── memorystream.h │ ├── msinttypes │ │ ├── inttypes.h │ │ └── stdint.h │ ├── prettywriter.h │ ├── rapidjson.h │ ├── reader.h │ ├── stringbuffer.h │ └── writer.h └── sqlite │ ├── sqlite3.c │ └── sqlite3.h ├── forms ├── logindialog.ui ├── mainwindow.ui └── steamlogindialog.ui ├── install-travis-deps.sh ├── installer.iss ├── resources.qrc ├── resources.rc ├── src ├── application.cpp ├── application.h ├── autoonline.cpp ├── autoonline.h ├── bucket.cpp ├── bucket.h ├── buyoutmanager.cpp ├── buyoutmanager.h ├── column.cpp ├── column.h ├── currencymanager.cpp ├── currencymanager.h ├── datastore.h ├── filesystem.cpp ├── filesystem.h ├── filters.cpp ├── filters.h ├── flowlayout.cpp ├── flowlayout.h ├── imagecache.cpp ├── imagecache.h ├── item.cpp ├── item.h ├── itemconstants.h ├── itemlocation.cpp ├── itemlocation.h ├── items_model.cpp ├── items_model.h ├── itemsmanager.cpp ├── itemsmanager.h ├── itemsmanagerworker.cpp ├── itemsmanagerworker.h ├── itemtooltip.cpp ├── itemtooltip.h ├── logindialog.cpp ├── logindialog.h ├── logpanel.cpp ├── logpanel.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── memorydatastore.cpp ├── memorydatastore.h ├── modlist.cpp ├── modlist.h ├── modsfilter.cpp ├── modsfilter.h ├── porting.cpp ├── porting.h ├── rapidjson_util.h ├── replytimeout.cpp ├── replytimeout.h ├── search.cpp ├── search.h ├── selfdestructingreply.h ├── shop.cpp ├── shop.h ├── sqlitedatastore.cpp ├── sqlitedatastore.h ├── steamlogindialog.cpp ├── steamlogindialog.h ├── tabcache.cpp ├── tabcache.h ├── updatechecker.cpp ├── updatechecker.h ├── util.cpp ├── util.h ├── version.cpp ├── version.h ├── version_defines.h ├── verticalscrollarea.cpp └── verticalscrollarea.h └── test ├── testdata.cpp ├── testdata.h ├── testitem.cpp ├── testitem.h ├── testitemsmanager.cpp ├── testitemsmanager.h ├── testmain.cpp ├── testmain.h ├── testshop.cpp ├── testshop.h ├── testutil.cpp └── testutil.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/README.md -------------------------------------------------------------------------------- /acquisition.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/acquisition.pro -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/appveyor.yml -------------------------------------------------------------------------------- /assets/ElderBackground_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ElderBackground_1x1.png -------------------------------------------------------------------------------- /assets/ElderBackground_1x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ElderBackground_1x3.png -------------------------------------------------------------------------------- /assets/ElderBackground_1x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ElderBackground_1x4.png -------------------------------------------------------------------------------- /assets/ElderBackground_2x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ElderBackground_2x1.png -------------------------------------------------------------------------------- /assets/ElderBackground_2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ElderBackground_2x2.png -------------------------------------------------------------------------------- /assets/ElderBackground_2x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ElderBackground_2x3.png -------------------------------------------------------------------------------- /assets/ElderBackground_2x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ElderBackground_2x4.png -------------------------------------------------------------------------------- /assets/ElderItemSymbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ElderItemSymbol.png -------------------------------------------------------------------------------- /assets/Fontin-SmallCaps.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/Fontin-SmallCaps.ttf -------------------------------------------------------------------------------- /assets/ItemsHeaderCurrencyLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderCurrencyLeft.png -------------------------------------------------------------------------------- /assets/ItemsHeaderCurrencyMiddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderCurrencyMiddle.png -------------------------------------------------------------------------------- /assets/ItemsHeaderCurrencyRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderCurrencyRight.png -------------------------------------------------------------------------------- /assets/ItemsHeaderGemLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderGemLeft.png -------------------------------------------------------------------------------- /assets/ItemsHeaderGemMiddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderGemMiddle.png -------------------------------------------------------------------------------- /assets/ItemsHeaderGemRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderGemRight.png -------------------------------------------------------------------------------- /assets/ItemsHeaderMagicLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderMagicLeft.png -------------------------------------------------------------------------------- /assets/ItemsHeaderMagicMiddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderMagicMiddle.png -------------------------------------------------------------------------------- /assets/ItemsHeaderMagicRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderMagicRight.png -------------------------------------------------------------------------------- /assets/ItemsHeaderRareLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderRareLeft.png -------------------------------------------------------------------------------- /assets/ItemsHeaderRareMiddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderRareMiddle.png -------------------------------------------------------------------------------- /assets/ItemsHeaderRareRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderRareRight.png -------------------------------------------------------------------------------- /assets/ItemsHeaderRareSingleLineLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderRareSingleLineLeft.png -------------------------------------------------------------------------------- /assets/ItemsHeaderRareSingleLineMiddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderRareSingleLineMiddle.png -------------------------------------------------------------------------------- /assets/ItemsHeaderRareSingleLineRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderRareSingleLineRight.png -------------------------------------------------------------------------------- /assets/ItemsHeaderUniqueLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderUniqueLeft.png -------------------------------------------------------------------------------- /assets/ItemsHeaderUniqueMiddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderUniqueMiddle.png -------------------------------------------------------------------------------- /assets/ItemsHeaderUniqueRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderUniqueRight.png -------------------------------------------------------------------------------- /assets/ItemsHeaderUniqueSingleLineLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderUniqueSingleLineLeft.png -------------------------------------------------------------------------------- /assets/ItemsHeaderUniqueSingleLineMiddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderUniqueSingleLineMiddle.png -------------------------------------------------------------------------------- /assets/ItemsHeaderUniqueSingleLineRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderUniqueSingleLineRight.png -------------------------------------------------------------------------------- /assets/ItemsHeaderWhiteLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderWhiteLeft.png -------------------------------------------------------------------------------- /assets/ItemsHeaderWhiteMiddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderWhiteMiddle.png -------------------------------------------------------------------------------- /assets/ItemsHeaderWhiteRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ItemsHeaderWhiteRight.png -------------------------------------------------------------------------------- /assets/SeparatorCurrency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/SeparatorCurrency.png -------------------------------------------------------------------------------- /assets/SeparatorGem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/SeparatorGem.png -------------------------------------------------------------------------------- /assets/SeparatorMagic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/SeparatorMagic.png -------------------------------------------------------------------------------- /assets/SeparatorQuest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/SeparatorQuest.png -------------------------------------------------------------------------------- /assets/SeparatorRare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/SeparatorRare.png -------------------------------------------------------------------------------- /assets/SeparatorUnique.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/SeparatorUnique.png -------------------------------------------------------------------------------- /assets/SeparatorWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/SeparatorWhite.png -------------------------------------------------------------------------------- /assets/ShaperBackground_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ShaperBackground_1x1.png -------------------------------------------------------------------------------- /assets/ShaperBackground_1x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ShaperBackground_1x3.png -------------------------------------------------------------------------------- /assets/ShaperBackground_1x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ShaperBackground_1x4.png -------------------------------------------------------------------------------- /assets/ShaperBackground_2x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ShaperBackground_2x1.png -------------------------------------------------------------------------------- /assets/ShaperBackground_2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ShaperBackground_2x2.png -------------------------------------------------------------------------------- /assets/ShaperBackground_2x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ShaperBackground_2x3.png -------------------------------------------------------------------------------- /assets/ShaperBackground_2x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ShaperBackground_2x4.png -------------------------------------------------------------------------------- /assets/ShaperItemSymbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/ShaperItemSymbol.png -------------------------------------------------------------------------------- /assets/Socket_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/Socket_A.png -------------------------------------------------------------------------------- /assets/Socket_D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/Socket_D.png -------------------------------------------------------------------------------- /assets/Socket_G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/Socket_G.png -------------------------------------------------------------------------------- /assets/Socket_I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/Socket_I.png -------------------------------------------------------------------------------- /assets/Socket_Link_Horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/Socket_Link_Horizontal.png -------------------------------------------------------------------------------- /assets/Socket_Link_Vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/Socket_Link_Vertical.png -------------------------------------------------------------------------------- /assets/Socket_S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/Socket_S.png -------------------------------------------------------------------------------- /assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/icon.ico -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/assets/icon.svg -------------------------------------------------------------------------------- /deploy-win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deploy-win.sh -------------------------------------------------------------------------------- /deps/QsLog/QsLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/QsLog/QsLog.cpp -------------------------------------------------------------------------------- /deps/QsLog/QsLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/QsLog/QsLog.h -------------------------------------------------------------------------------- /deps/QsLog/QsLog.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/QsLog/QsLog.pri -------------------------------------------------------------------------------- /deps/QsLog/QsLogChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/QsLog/QsLogChanges.txt -------------------------------------------------------------------------------- /deps/QsLog/QsLogDest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/QsLog/QsLogDest.cpp -------------------------------------------------------------------------------- /deps/QsLog/QsLogDest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/QsLog/QsLogDest.h -------------------------------------------------------------------------------- /deps/QsLog/QsLogDestConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/QsLog/QsLogDestConsole.cpp -------------------------------------------------------------------------------- /deps/QsLog/QsLogDestConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/QsLog/QsLogDestConsole.h -------------------------------------------------------------------------------- /deps/QsLog/QsLogDestFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/QsLog/QsLogDestFile.cpp -------------------------------------------------------------------------------- /deps/QsLog/QsLogDestFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/QsLog/QsLogDestFile.h -------------------------------------------------------------------------------- /deps/QsLog/QsLogDisableForThisFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/QsLog/QsLogDisableForThisFile.h -------------------------------------------------------------------------------- /deps/QsLog/QsLogLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/QsLog/QsLogLevel.h -------------------------------------------------------------------------------- /deps/QsLog/QsLogReadme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/QsLog/QsLogReadme.txt -------------------------------------------------------------------------------- /deps/QsLog/examplemain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/QsLog/examplemain.cpp -------------------------------------------------------------------------------- /deps/QsLog/log_example.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/QsLog/log_example.pro -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/Hmovetoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/Hmovetoolbar.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/Hsepartoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/Hsepartoolbar.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/Vmovetoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/Vmovetoolbar.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/Vsepartoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/Vsepartoolbar.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/branch_closed-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/branch_closed-on.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/branch_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/branch_closed.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/branch_open-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/branch_open-on.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/branch_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/branch_open.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/checkbox_checked.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/checkbox_checked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/checkbox_checked_disabled.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/checkbox_checked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/checkbox_checked_focus.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/checkbox_indeterminate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/checkbox_indeterminate.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/checkbox_indeterminate_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/checkbox_indeterminate_disabled.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/checkbox_indeterminate_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/checkbox_indeterminate_focus.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/checkbox_unchecked.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/checkbox_unchecked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/checkbox_unchecked_disabled.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/checkbox_unchecked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/checkbox_unchecked_focus.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/close-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/close-hover.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/close-pressed.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/close.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/down_arrow.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/down_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/down_arrow_disabled.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/left_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/left_arrow.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/left_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/left_arrow_disabled.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/radio_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/radio_checked.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/radio_checked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/radio_checked_disabled.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/radio_checked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/radio_checked_focus.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/radio_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/radio_unchecked.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/radio_unchecked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/radio_unchecked_disabled.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/radio_unchecked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/radio_unchecked_focus.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/right_arrow.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/right_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/right_arrow_disabled.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/sizegrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/sizegrip.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/stylesheet-branch-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/stylesheet-branch-end.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/stylesheet-branch-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/stylesheet-branch-more.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/stylesheet-vline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/stylesheet-vline.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/transparent.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/undock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/undock.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/up_arrow.png -------------------------------------------------------------------------------- /deps/qdarkstyle/rc/up_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/rc/up_arrow_disabled.png -------------------------------------------------------------------------------- /deps/qdarkstyle/style.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/style.qrc -------------------------------------------------------------------------------- /deps/qdarkstyle/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/qdarkstyle/style.qss -------------------------------------------------------------------------------- /deps/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/allocators.h -------------------------------------------------------------------------------- /deps/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/document.h -------------------------------------------------------------------------------- /deps/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /deps/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/encodings.h -------------------------------------------------------------------------------- /deps/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/error/en.h -------------------------------------------------------------------------------- /deps/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/error/error.h -------------------------------------------------------------------------------- /deps/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /deps/rapidjson/filestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/filestream.h -------------------------------------------------------------------------------- /deps/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /deps/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /deps/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /deps/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /deps/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /deps/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /deps/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /deps/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /deps/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/memorystream.h -------------------------------------------------------------------------------- /deps/rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /deps/rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /deps/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /deps/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /deps/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/reader.h -------------------------------------------------------------------------------- /deps/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /deps/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/rapidjson/writer.h -------------------------------------------------------------------------------- /deps/sqlite/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/sqlite/sqlite3.c -------------------------------------------------------------------------------- /deps/sqlite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/deps/sqlite/sqlite3.h -------------------------------------------------------------------------------- /forms/logindialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/forms/logindialog.ui -------------------------------------------------------------------------------- /forms/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/forms/mainwindow.ui -------------------------------------------------------------------------------- /forms/steamlogindialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/forms/steamlogindialog.ui -------------------------------------------------------------------------------- /install-travis-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/install-travis-deps.sh -------------------------------------------------------------------------------- /installer.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/installer.iss -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/resources.qrc -------------------------------------------------------------------------------- /resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/resources.rc -------------------------------------------------------------------------------- /src/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/application.cpp -------------------------------------------------------------------------------- /src/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/application.h -------------------------------------------------------------------------------- /src/autoonline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/autoonline.cpp -------------------------------------------------------------------------------- /src/autoonline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/autoonline.h -------------------------------------------------------------------------------- /src/bucket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/bucket.cpp -------------------------------------------------------------------------------- /src/bucket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/bucket.h -------------------------------------------------------------------------------- /src/buyoutmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/buyoutmanager.cpp -------------------------------------------------------------------------------- /src/buyoutmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/buyoutmanager.h -------------------------------------------------------------------------------- /src/column.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/column.cpp -------------------------------------------------------------------------------- /src/column.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/column.h -------------------------------------------------------------------------------- /src/currencymanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/currencymanager.cpp -------------------------------------------------------------------------------- /src/currencymanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/currencymanager.h -------------------------------------------------------------------------------- /src/datastore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/datastore.h -------------------------------------------------------------------------------- /src/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/filesystem.cpp -------------------------------------------------------------------------------- /src/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/filesystem.h -------------------------------------------------------------------------------- /src/filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/filters.cpp -------------------------------------------------------------------------------- /src/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/filters.h -------------------------------------------------------------------------------- /src/flowlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/flowlayout.cpp -------------------------------------------------------------------------------- /src/flowlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/flowlayout.h -------------------------------------------------------------------------------- /src/imagecache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/imagecache.cpp -------------------------------------------------------------------------------- /src/imagecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/imagecache.h -------------------------------------------------------------------------------- /src/item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/item.cpp -------------------------------------------------------------------------------- /src/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/item.h -------------------------------------------------------------------------------- /src/itemconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/itemconstants.h -------------------------------------------------------------------------------- /src/itemlocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/itemlocation.cpp -------------------------------------------------------------------------------- /src/itemlocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/itemlocation.h -------------------------------------------------------------------------------- /src/items_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/items_model.cpp -------------------------------------------------------------------------------- /src/items_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/items_model.h -------------------------------------------------------------------------------- /src/itemsmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/itemsmanager.cpp -------------------------------------------------------------------------------- /src/itemsmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/itemsmanager.h -------------------------------------------------------------------------------- /src/itemsmanagerworker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/itemsmanagerworker.cpp -------------------------------------------------------------------------------- /src/itemsmanagerworker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/itemsmanagerworker.h -------------------------------------------------------------------------------- /src/itemtooltip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/itemtooltip.cpp -------------------------------------------------------------------------------- /src/itemtooltip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/itemtooltip.h -------------------------------------------------------------------------------- /src/logindialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/logindialog.cpp -------------------------------------------------------------------------------- /src/logindialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/logindialog.h -------------------------------------------------------------------------------- /src/logpanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/logpanel.cpp -------------------------------------------------------------------------------- /src/logpanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/logpanel.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/mainwindow.cpp -------------------------------------------------------------------------------- /src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/mainwindow.h -------------------------------------------------------------------------------- /src/memorydatastore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/memorydatastore.cpp -------------------------------------------------------------------------------- /src/memorydatastore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/memorydatastore.h -------------------------------------------------------------------------------- /src/modlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/modlist.cpp -------------------------------------------------------------------------------- /src/modlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/modlist.h -------------------------------------------------------------------------------- /src/modsfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/modsfilter.cpp -------------------------------------------------------------------------------- /src/modsfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/modsfilter.h -------------------------------------------------------------------------------- /src/porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/porting.cpp -------------------------------------------------------------------------------- /src/porting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/porting.h -------------------------------------------------------------------------------- /src/rapidjson_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/rapidjson_util.h -------------------------------------------------------------------------------- /src/replytimeout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/replytimeout.cpp -------------------------------------------------------------------------------- /src/replytimeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/replytimeout.h -------------------------------------------------------------------------------- /src/search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/search.cpp -------------------------------------------------------------------------------- /src/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/search.h -------------------------------------------------------------------------------- /src/selfdestructingreply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/selfdestructingreply.h -------------------------------------------------------------------------------- /src/shop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/shop.cpp -------------------------------------------------------------------------------- /src/shop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/shop.h -------------------------------------------------------------------------------- /src/sqlitedatastore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/sqlitedatastore.cpp -------------------------------------------------------------------------------- /src/sqlitedatastore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/sqlitedatastore.h -------------------------------------------------------------------------------- /src/steamlogindialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/steamlogindialog.cpp -------------------------------------------------------------------------------- /src/steamlogindialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/steamlogindialog.h -------------------------------------------------------------------------------- /src/tabcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/tabcache.cpp -------------------------------------------------------------------------------- /src/tabcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/tabcache.h -------------------------------------------------------------------------------- /src/updatechecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/updatechecker.cpp -------------------------------------------------------------------------------- /src/updatechecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/updatechecker.h -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/util.h -------------------------------------------------------------------------------- /src/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/version.cpp -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/version.h -------------------------------------------------------------------------------- /src/version_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/version_defines.h -------------------------------------------------------------------------------- /src/verticalscrollarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/verticalscrollarea.cpp -------------------------------------------------------------------------------- /src/verticalscrollarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/src/verticalscrollarea.h -------------------------------------------------------------------------------- /test/testdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/test/testdata.cpp -------------------------------------------------------------------------------- /test/testdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/test/testdata.h -------------------------------------------------------------------------------- /test/testitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/test/testitem.cpp -------------------------------------------------------------------------------- /test/testitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/test/testitem.h -------------------------------------------------------------------------------- /test/testitemsmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/test/testitemsmanager.cpp -------------------------------------------------------------------------------- /test/testitemsmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/test/testitemsmanager.h -------------------------------------------------------------------------------- /test/testmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/test/testmain.cpp -------------------------------------------------------------------------------- /test/testmain.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int test_main(); -------------------------------------------------------------------------------- /test/testshop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/test/testshop.cpp -------------------------------------------------------------------------------- /test/testshop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/test/testshop.h -------------------------------------------------------------------------------- /test/testutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/test/testutil.cpp -------------------------------------------------------------------------------- /test/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/acquisition/HEAD/test/testutil.h --------------------------------------------------------------------------------