~ubuntu-branches/debian/sid/filezilla/sid

« back to all changes in this revision

Viewing changes to src/interface/clearprivatedata.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Cécile (Le_Vert)
  • Date: 2008-07-05 21:00:24 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080705210024-mvzp21zlyheschi6
Tags: 3.0.11.1-1
* wxWidgets 2.8 just entered unstable ! Upload to unstable.
* New upstream release.
* Bump Standards-Version to 3.8.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __CLEARPRIVATEDATA_H__
 
2
#define __CLEARPRIVATEDATA_H__
 
3
 
 
4
#include "dialogex.h"
 
5
 
 
6
class CMainFrame;
 
7
class CClearPrivateDataDialog : public wxDialogEx
 
8
{
 
9
public:
 
10
 
 
11
        static CClearPrivateDataDialog* Create(CMainFrame* pMainFrame) { return new CClearPrivateDataDialog(pMainFrame); }
 
12
        void Show();
 
13
 
 
14
        void Delete();
 
15
 
 
16
protected:
 
17
        CClearPrivateDataDialog(CMainFrame* pMainFrame);
 
18
        ~CClearPrivateDataDialog() { }
 
19
 
 
20
        bool ClearReconnect();
 
21
 
 
22
        void RemoveXmlFile(const wxString& name);
 
23
 
 
24
        CMainFrame* const m_pMainFrame;
 
25
 
 
26
        wxTimer m_timer;
 
27
 
 
28
        DECLARE_EVENT_TABLE();
 
29
        void OnTimer(wxTimerEvent& event);
 
30
};
 
31
 
 
32
#endif //__CLEARPRIVATEDATA_H__
 
33