refs #608, generic menus are now available via CGuiApplication and don`t have to be redefined over and over again

This commit is contained in:
Klaus Basan
2016-03-02 23:25:12 +01:00
committed by Mathew Sutcliffe
parent bf9ea12a2b
commit bcb00b1b91
18 changed files with 352 additions and 393 deletions

View File

@@ -15,6 +15,7 @@
#include "corefacadeconfig.h"
#include "cookiemanager.h"
#include "webdataservices.h"
#include "blackcore/data/updateinfo.h"
#include "blackmisc/network/url.h"
#include "blackmisc/network/entityflags.h"
#include "blackmisc/logcategorylist.h"
@@ -79,6 +80,10 @@ namespace BlackCore
//! \threadsafe
BlackCore::Data::CGlobalSetup getGlobalSetup() const;
//! Update info
//! \threadsafe
BlackCore::Data::CUpdateInfo getUpdateInfo() const;
//! Delete all cookies from cookier manager
void deleteAllCookies();
@@ -240,7 +245,10 @@ namespace BlackCore
signals:
//! Setup syncronized
void setupSyncronized();
void setupSyncronized(bool success);
//! Update info syncronized
void updateInfoSynchronized(bool success);
//! Startup has been completed
void startUpCompleted(bool success);