Suppress warning: type uses the anonymous namespace.
Author: Chaobin Zhang git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77630 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -18,9 +18,6 @@
|
|||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
class WXDLLIMPEXP_FWD_CORE ITaskbarList3;
|
class WXDLLIMPEXP_FWD_CORE ITaskbarList3;
|
||||||
class WXDLLIMPEXP_FWD_CORE IObjectArray;
|
|
||||||
class WXDLLIMPEXP_FWD_CORE ICustomDestinationList;
|
|
||||||
class WXDLLIMPEXP_FWD_CORE IApplicationDocumentLists;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class WXDLLIMPEXP_CORE wxTaskBarButtonImpl : public wxTaskBarButton {
|
class WXDLLIMPEXP_CORE wxTaskBarButtonImpl : public wxTaskBarButton {
|
||||||
@@ -66,50 +63,6 @@ private:
|
|||||||
bool m_hasInitThumbnailToolbar;
|
bool m_hasInitThumbnailToolbar;
|
||||||
};
|
};
|
||||||
|
|
||||||
class WXDLLIMPEXP_CORE wxTaskBarJumpListImpl
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
wxTaskBarJumpListImpl(wxTaskBarJumpList *jumpList = NULL,
|
|
||||||
const wxString& appID = wxEmptyString);
|
|
||||||
virtual ~wxTaskBarJumpListImpl();
|
|
||||||
void ShowRecentCategory(bool shown = true);
|
|
||||||
void HideRecentCategory();
|
|
||||||
void ShowFrequentCategory(bool shown = true);
|
|
||||||
void HideFrequentCategory();
|
|
||||||
|
|
||||||
wxTaskBarJumpListCategory& GetTasks();
|
|
||||||
const wxTaskBarJumpListCategory& GetFrequentCategory();
|
|
||||||
const wxTaskBarJumpListCategory& GetRecentCategory();
|
|
||||||
const wxTaskBarJumpListCategories& GetCustomCategories() const;
|
|
||||||
|
|
||||||
void AddCustomCategory(wxTaskBarJumpListCategory* category);
|
|
||||||
wxTaskBarJumpListCategory* RemoveCustomCategory(const wxString& title);
|
|
||||||
void DeleteCustomCategory(const wxString& title);
|
|
||||||
void Update();
|
|
||||||
|
|
||||||
private:
|
|
||||||
bool BeginUpdate();
|
|
||||||
bool CommitUpdate();
|
|
||||||
void AddTasksToDestinationList();
|
|
||||||
void AddCustomCategoriesToDestionationList();
|
|
||||||
void LoadKnownCategory(const wxString& title);
|
|
||||||
|
|
||||||
wxTaskBarJumpList *m_jumpList;
|
|
||||||
|
|
||||||
ICustomDestinationList *m_destinationList;
|
|
||||||
IObjectArray *m_objectArray;
|
|
||||||
|
|
||||||
wxScopedPtr<wxTaskBarJumpListCategory> m_tasks;
|
|
||||||
wxScopedPtr<wxTaskBarJumpListCategory> m_frequent;
|
|
||||||
wxScopedPtr<wxTaskBarJumpListCategory> m_recent;
|
|
||||||
wxTaskBarJumpListCategories m_customCategories;
|
|
||||||
bool m_recent_visible;
|
|
||||||
bool m_frequent_visible;
|
|
||||||
|
|
||||||
// Application User Model ID.
|
|
||||||
wxString m_appID;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // wxUSE_TASKBARBUTTON
|
#endif // wxUSE_TASKBARBUTTON
|
||||||
|
|
||||||
#endif // _WX_MSW_TASKBARBUTTON_H_
|
#endif // _WX_MSW_TASKBARBUTTON_H_
|
||||||
|
@@ -515,6 +515,54 @@ IObjectCollection* CreateObjectCollection()
|
|||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// wxTaskBarJumpListImpl: definition of class for internal taskbar jump list
|
||||||
|
// implementation.
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
class wxTaskBarJumpListImpl
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
wxTaskBarJumpListImpl(wxTaskBarJumpList *jumpList = NULL,
|
||||||
|
const wxString& appID = wxEmptyString);
|
||||||
|
virtual ~wxTaskBarJumpListImpl();
|
||||||
|
void ShowRecentCategory(bool shown = true);
|
||||||
|
void HideRecentCategory();
|
||||||
|
void ShowFrequentCategory(bool shown = true);
|
||||||
|
void HideFrequentCategory();
|
||||||
|
|
||||||
|
wxTaskBarJumpListCategory& GetTasks();
|
||||||
|
const wxTaskBarJumpListCategory& GetFrequentCategory();
|
||||||
|
const wxTaskBarJumpListCategory& GetRecentCategory();
|
||||||
|
const wxTaskBarJumpListCategories& GetCustomCategories() const;
|
||||||
|
|
||||||
|
void AddCustomCategory(wxTaskBarJumpListCategory* category);
|
||||||
|
wxTaskBarJumpListCategory* RemoveCustomCategory(const wxString& title);
|
||||||
|
void DeleteCustomCategory(const wxString& title);
|
||||||
|
void Update();
|
||||||
|
|
||||||
|
private:
|
||||||
|
bool BeginUpdate();
|
||||||
|
bool CommitUpdate();
|
||||||
|
void AddTasksToDestinationList();
|
||||||
|
void AddCustomCategoriesToDestionationList();
|
||||||
|
void LoadKnownCategory(const wxString& title);
|
||||||
|
|
||||||
|
wxTaskBarJumpList *m_jumpList;
|
||||||
|
|
||||||
|
ICustomDestinationList *m_destinationList;
|
||||||
|
IObjectArray *m_objectArray;
|
||||||
|
|
||||||
|
wxScopedPtr<wxTaskBarJumpListCategory> m_tasks;
|
||||||
|
wxScopedPtr<wxTaskBarJumpListCategory> m_frequent;
|
||||||
|
wxScopedPtr<wxTaskBarJumpListCategory> m_recent;
|
||||||
|
wxTaskBarJumpListCategories m_customCategories;
|
||||||
|
bool m_recent_visible;
|
||||||
|
bool m_frequent_visible;
|
||||||
|
|
||||||
|
// Application User Model ID.
|
||||||
|
wxString m_appID;
|
||||||
|
};
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// wxThumbBarButton Implementation.
|
// wxThumbBarButton Implementation.
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
Reference in New Issue
Block a user