ui: Showing indexing progress in windows task bar

* implemented showing indexing progress in windows taskbar button
* renamed TaskShowStatusDialog
* added "Qt5WinExtras.dll" for windows builds
This commit is contained in:
mlangkabel
2018-01-16 11:16:08 +01:00
parent 43c223368c
commit 2c52425d99
18 changed files with 177 additions and 59 deletions
+2 -1
View File
@@ -7,7 +7,8 @@
#include "project/SourceGroup.h"
#include "settings/SourceGroupSettingsCxx.h"
class SourceGroupCxx: public SourceGroup
class SourceGroupCxx
: public SourceGroup
{
public:
SourceGroupCxx();
+3 -2
View File
@@ -7,7 +7,8 @@
#include "project/SourceGroupCxx.h"
#include "settings/SourceGroupSettingsCxxCdb.h"
class SourceGroupCxxCdb: public SourceGroupCxx
class SourceGroupCxxCdb
: public SourceGroupCxx
{
public:
SourceGroupCxxCdb(std::shared_ptr<SourceGroupSettingsCxxCdb> settings);
@@ -22,7 +23,7 @@ public:
private:
virtual std::shared_ptr<SourceGroupSettingsCxx> getSourceGroupSettingsCxx() override;
virtual std::shared_ptr<const SourceGroupSettingsCxx> getSourceGroupSettingsCxx() const override;
virtual std::vector<FilePath> getAllSourcePaths() const;
virtual std::vector<FilePath> getAllSourcePaths() const override;
std::shared_ptr<SourceGroupSettingsCxxCdb> m_settings;
};