~ubuntu-branches/ubuntu/karmic/codelite/karmic-backports

« back to all changes in this revision

Viewing changes to Subversion2/svn_checkout_dialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Ubuntu Archive Backport
  • Date: 2010-03-10 00:42:25 UTC
  • mfrom: (10.1.3 lucid)
  • Revision ID: james.westby@ubuntu.com-20100310004225-ccjgjj2vvdy4q7qs
Tags: 2.2.0.3681+dfsg-0ubuntu1~karmic1
Automated backport upload; no source changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __svn_checkout_dialog__
 
2
#define __svn_checkout_dialog__
 
3
 
 
4
/**
 
5
@file
 
6
Subclass of SvnCheckoutDialogBase, which is generated by wxFormBuilder.
 
7
*/
 
8
 
 
9
#include "subversion2_ui.h"
 
10
class Subversion2;
 
11
 
 
12
/** Implementing SvnCheckoutDialogBase */
 
13
class SvnCheckoutDialog : public SvnCheckoutDialogBase
 
14
{
 
15
        Subversion2 *m_plugin;
 
16
protected:
 
17
        // Handlers for SvnCheckoutDialogBase events.
 
18
        void OnBrowseDirectory      ( wxCommandEvent  &event );
 
19
        void OnOkUI                 ( wxUpdateUIEvent &event );
 
20
 
 
21
        virtual void OnOK( wxCommandEvent& event );
 
22
 
 
23
public:
 
24
        /** Constructor */
 
25
        SvnCheckoutDialog( wxWindow* parent, Subversion2 *plugin );
 
26
        virtual ~SvnCheckoutDialog();
 
27
 
 
28
        wxString GetURL();
 
29
        wxString GetTargetDir();
 
30
};
 
31
 
 
32
#endif // __svn_checkout_dialog__