e3e65dac0c
toolbar updates mdi fixes dnd works now Forty Thieves drawing optimization wxDF_Text constants ListCtrl bugs fixed memory leak work imrc now refers to home dir dcclient/memory leak fixed git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@381 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
75 lines
1.7 KiB
C++
75 lines
1.7 KiB
C++
/*
|
|
* 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;
|
|
long m_rootId;
|
|
|
|
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 OnCollapseItem( const wxTreeEvent &event );
|
|
void OnDeleteItem( const wxTreeEvent &event );
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
#endif
|