]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/filectrl.h
ignore WinCE build directories
[wxWidgets.git] / interface / filectrl.h
index a24a4822a0225f067b400662d8169428792cbadb..54e93df8f126bd9b2961a6a9d8e3142c2ab6c8b5 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        filectrl.h
-// Purpose:     documentation for wxFileCtrl class
+// Purpose:     interface of wxFileCtrl
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -33,8 +33,7 @@
     @library{wxbase}
     @category{FIXME}
 
-    @seealso
-    wxGenericDirCtrl
+    @see wxGenericDirCtrl
 */
 class wxFileCtrl : public wxWindow
 {
@@ -93,14 +92,14 @@ public:
         Returns the current directory of the file control (i.e. the directory shown by
         it).
     */
-    wxString GetDirectory();
+    wxString GetDirectory() const;
 
     /**
         Returns the currently selected filename.
         For the controls having the @c wxFC_MULTIPLE style, use GetFilenames()
         instead
     */
-    wxString GetFilename();
+    wxString GetFilename() const;
 
     /**
         Fills the array @a filenames with the filenames only of selected items. This
@@ -110,19 +109,19 @@ public:
         
         @remarks filenames is emptied first.
     */
-    void GetFilenames(wxArrayString& filenames);
+    void GetFilenames(wxArrayString& filenames) const;
 
     /**
         Returns the zero-based index of the currently selected filter.
     */
-    int GetFilterIndex();
+    int GetFilterIndex() const;
 
     /**
         Returns the full path (directory and filename) of the currently selected file.
         For the controls having the @c wxFC_MULTIPLE style, use GetPaths()
         instead
     */
-    wxString GetPath();
+    wxString GetPath() const;
 
     /**
         Fills the array @a paths with the full paths of the files chosen. This
@@ -131,12 +130,12 @@ public:
         
         @remarks paths is emptied first.
     */
-    void GetPaths(wxArrayString& paths);
+    void GetPaths(wxArrayString& paths) const;
 
     /**
         Returns the current wildcard.
     */
-    wxString GetWildcard();
+    wxString GetWildcard() const;
 
     /**
         Sets(changes) the current directory displayed in the control.
@@ -170,6 +169,7 @@ public:
 };
 
 
+
 /**
     @class wxFileCtrlEvent
     @wxheader{filectrl.h}
@@ -193,22 +193,23 @@ public:
         In case of a @b EVT_FILECTRL_FOLDERCHANGED, this method returns the new
         directory.
     */
-    wxString GetDirectory();
+    wxString GetDirectory() const;
 
     /**
         Returns the file selected(assuming it is only one file).
     */
-    wxString GetFile();
+    wxString GetFile() const;
 
     /**
         Returns the files selected.
         In case of a @b EVT_FILECTRL_SELECTIONCHANGED, this method returns the
         files selected after the event.
     */
-    wxArrayString GetFiles();
+    wxArrayString GetFiles() const;
 
     /**
         Sets the files changed by this event.
     */
     wxFileCtrlEvent::SetFiles(const wxArrayString files);
 };
+