]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/fileevt.tex
wxDataViewCtrl DnD stubs, some reformating
[wxWidgets.git] / docs / latex / wx / fileevt.tex
CommitLineData
0cf3e587
VZ
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2%% Name: fileevt.tex
3%% Purpose: wxFileCtrlEvent documentation
4%% Author: Diaa M. Sami
5%% Created: 2007-07-25
6%% RCS-ID: $Id: $
7%% Copyright: (c) 2007 Diaa M. Sami
8%% License: wxWindows license
9%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10
11\section{\class{wxFileCtrlEvent}}\label{wxfilectrlevent}
12
13A file control event holds information about events associated with
14\helpref{wxFileCtrl}{wxfilectrl} objects.
15
16\wxheading{Derived from}
17
18\helpref{wxCommandEvent}{wxcommandevent}\\
19\helpref{wxEvent}{wxevent}\\
20\helpref{wxObject}{wxobject}
21
22\wxheading{Include files}
23
24<wx/filectrl.h>
25
26\wxheading{Event table macros}
27
28To process input from a file control, use these event handler macros to direct input to member
29functions that take a wxFileCtrlEvent argument.
30
31\twocolwidtha{7cm}
32\begin{twocollist}\itemsep=0pt
33\twocolitem{{\bf EVT\_FILECTRL\_FILEACTIVATED(id, func)}}{The user activated a file(by double-clicking or pressing Enter)}
34\twocolitem{{\bf EVT\_FILECTRL\_SELECTIONCHANGED(id, func)}}{The user changed the current selection(by selecting or deselecting a file)}
9056c785 35\twocolitem{{\bf EVT\_FILECTRL\_FOLDERCHANGED(id, func)}}{The current folder of the file control has been changed}
0cf3e587
VZ
36\end{twocollist}%
37
38\latexignore{\rtfignore{\wxheading{Members}}}
39
40\membersection{wxFileCtrlEvent::wxFileCtrlEvent}\label{wxfilectrleventctor}
41
42\func{}{wxFileCtrlEvent}{\param{wxEventType }{type}, \param{wxObject }{evtObject}, \param{int }{id}}
43
44Constructor.
45
46\membersection{wxFileCtrlEvent::GetFiles}\label{wxfilectrleventgetfiles}
47
48\constfunc{wxArrayString}{GetFiles}{\void}
49
50Returns the files selected.
51In case of a {\bf EVT\_FILECTRL\_SELECTIONCHANGED}, this method returns the
52files selected after the event.
53
54\membersection{wxFileCtrlEvent::GetDirectory}\label{wxfilectrleventgetdirectory}
55
56\constfunc{wxString}{GetDirectory}{\void}
57
58Returns the current directory.
59In case of a {\bf EVT\_FILECTRL\_FOLDERCHANGED}, this method returns the new directory.
60
61\membersection{wxFileCtrlEvent::GetFile}\label{wxfilectrleventgetfile}
62
63\constfunc{wxString}{GetFile}{\void}
64
65Returns the file selected(assuming it is only one file).
66
67\membersection{wxFileCtrlEvent::SetFiles}\label{wxfilectrleventsetfiles}
68
69\func{}{wxFileCtrlEvent::SetFiles}{\param{const wxArrayString &}{files}}
70
71Sets the files changed by this event.
72
73\membersection{wxFileCtrlEvent::SetDirectory}\label{wxfilectrleventsetdirectory}
74
75\func{}{wxFileCtrlEvent::SetDirectory}{\param{const wxString &}{directory}}
76
77Sets the current directory of this event.