Initial revision
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
74
user/wxFile/dirctrl.h
Normal file
74
user/wxFile/dirctrl.h
Normal file
@@ -0,0 +1,74 @@
|
||||
/*
|
||||
* File: DirCtrl.h
|
||||
* Purpose: dir tree control
|
||||
* Author: Robert Roebling
|
||||
* Created: 1997
|
||||
* Updated:
|
||||
* Copyright:
|
||||
*/
|
||||
|
||||
#ifndef __DIRCTRLH__
|
||||
#define __DIRCTRLH__
|
||||
|
||||
#ifdef __GNUG__
|
||||
#pragma interface
|
||||
#endif
|
||||
|
||||
#include "wx/treectrl.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// classes
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
class wxDirInfo;
|
||||
class wxDirCtrl;
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// wxDirInfo
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
class wxDirInfo: public wxObject
|
||||
{
|
||||
DECLARE_DYNAMIC_CLASS(wxDirInfo)
|
||||
|
||||
public:
|
||||
|
||||
wxString m_name;
|
||||
wxString m_path;
|
||||
bool m_showHidden;
|
||||
|
||||
|
||||
wxDirInfo() {};
|
||||
wxDirInfo( const wxString &path );
|
||||
wxString GetName(void) const;
|
||||
wxString GetPath(void) const;
|
||||
};
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// wxDirCtrl
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
class wxDirCtrl: public wxTreeCtrl
|
||||
{
|
||||
DECLARE_DYNAMIC_CLASS(wxDirCtrl)
|
||||
|
||||
public:
|
||||
|
||||
bool m_showHidden;
|
||||
int m_dragX,m_dragY;
|
||||
|
||||
wxDirCtrl(void);
|
||||
wxDirCtrl(wxWindow *parent, const wxWindowID id = -1, const wxString &dir = "/",
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxTR_HAS_BUTTONS,
|
||||
const wxString& name = "wxTreeCtrl" )
|
||||
;
|
||||
void OnExpandItem( const wxTreeEvent &event );
|
||||
void OnDeleteItem( const wxTreeEvent &event );
|
||||
void OnMouse( wxMouseEvent &event );
|
||||
|
||||
DECLARE_EVENT_TABLE()
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user