1 #ifndef FILEZILLA_INTERFACE_QUEUEVIEW_SUCCESSFUL_HEADER
2 #define FILEZILLA_INTERFACE_QUEUEVIEW_SUCCESSFUL_HEADER
3 
4 #include "queueview_failed.h"
5 
6 class CQueueViewSuccessful final : public CQueueViewFailed
7 {
8 public:
9 	CQueueViewSuccessful(CQueue* parent, int index);
10 
AutoClear()11 	bool AutoClear() const { return m_autoClear; }
12 
13 protected:
14 
15 	bool m_autoClear{};
16 
17 	DECLARE_EVENT_TABLE()
18 	void OnContextMenu(wxContextMenuEvent& event);
19 	void OnMenuAutoClear(wxCommandEvent& event);
20 };
21 
22 #endif
23