6 Copyright (c) 1991-2000, Be Incorporated. All rights reserved.
8 Permission is hereby granted, free of charge, to any person obtaining a copy of
9 this software and associated documentation files (the "Software"), to deal in
10 the Software without restriction, including without limitation the rights to
11 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
12 of the Software, and to permit persons to whom the Software is furnished to do
13 so, subject to the following conditions:
15 The above copyright notice and this permission notice applies to all licensees
16 and shall be included in all copies or substantial portions of the Software.
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF TITLE, MERCHANTABILITY,
20 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 BE INCORPORATED BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
22 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION
23 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 Except as contained in this notice, the name of Be Incorporated shall not be
26 used in advertising or otherwise to promote the sale, use or other dealings in
27 this Software without prior written authorization from Be Incorporated.
29 Tracker(TM), Be(R), BeOS(R), and BeIA(TM) are trademarks or registered trademarks
30 of Be Incorporated in the United States and other countries. Other brand product
31 names are registered trademarks or trademarks of their respective holders.
34 #ifndef _FILE_PANEL_PRIV_H
35 #define _FILE_PANEL_PRIV_H
38 #include <FilePanel.h>
40 #include "ContainerWindow.h"
55 class AttributeStreamNode
;
56 class BFilePanelPoseView
;
58 class TFilePanel
: public BContainerWindow
{
60 TFilePanel(file_panel_mode
= B_OPEN_PANEL
,
61 BMessenger
* target
= NULL
, const BEntry
* startDirectory
= NULL
,
62 uint32 nodeFlavors
= B_FILE_NODE
| B_SYMLINK_NODE
,
63 bool multipleSelection
= true, BMessage
* = NULL
, BRefFilter
* = NULL
,
64 uint32 containerWindowFlags
= 0,
65 window_look look
= B_DOCUMENT_WINDOW_LOOK
,
66 window_feel feel
= B_NORMAL_WINDOW_FEEL
,
67 bool hideWhenDone
= true);
69 virtual ~TFilePanel();
71 BFilePanelPoseView
* PoseView() const;
73 virtual bool QuitRequested();
74 virtual void MenusBeginning();
75 virtual void MenusEnded();
76 virtual void DispatchMessage(BMessage
* message
, BHandler
* handler
);
77 virtual void ShowContextMenu(BPoint
, const entry_ref
*, BView
*);
79 void SetClientObject(BFilePanel
*);
80 void SetRefFilter(BRefFilter
*);
81 void SetNodeFlavors(uint32 nodeFlavors
) { fNodeFlavors
= nodeFlavors
; }
82 void SetSaveText(const char* text
);
83 void SetButtonLabel(file_panel_button
, const char* text
);
84 void SetTo(const entry_ref
* ref
);
85 virtual void SelectionChanged();
86 void HandleOpenButton();
87 void HandleSaveButton();
89 bool IsSavePanel() const;
91 const BMessenger
* Target() const;
92 BRefFilter
* Filter() const;
94 void SetTarget(BMessenger
);
95 void SetMessage(BMessage
* message
);
97 virtual status_t
GetNextEntryRef(entry_ref
*);
98 virtual void MessageReceived(BMessage
*);
100 void SetHideWhenDone(bool);
101 bool HidesWhenDone(void);
103 bool TrackingMenu() const;
106 BPoseView
* NewPoseView(Model
* model
, uint32
);
107 virtual void Init(const BMessage
* message
= NULL
);
108 virtual void SaveState(bool hide
= true);
109 virtual void SaveState(BMessage
&) const;
110 virtual void RestoreState();
111 virtual void RestoreWindowState(AttributeStreamNode
*);
112 virtual void RestoreWindowState(const BMessage
&);
113 virtual void RestoreState(const BMessage
&);
115 virtual void AddFileContextMenus(BMenu
*);
116 virtual void AddWindowContextMenus(BMenu
*);
117 virtual void AddDropContextMenus(BMenu
*);
118 virtual void AddVolumeContextMenus(BMenu
*);
120 virtual void SetupNavigationMenu(const entry_ref
*, BMenu
*);
121 virtual void OpenDirectory();
122 virtual void OpenParent();
123 virtual void WindowActivated(bool state
);
125 static filter_result
FSFilter(BMessage
*, BHandler
**, BMessageFilter
*);
126 static filter_result
MessageDropFilter(BMessage
*, BHandler
**,
129 int32
ShowCenteredAlert(const char* text
, const char* button1
,
130 const char* button2
= NULL
, const char* button3
= NULL
);
133 bool SwitchDirToDesktopIfNeeded(entry_ref
&ref
);
134 bool CanOpenParent() const;
135 void SwitchDirMenuTo(const entry_ref
* ref
);
137 bool SelectChildInParent(const entry_ref
* parent
,
138 const node_ref
* child
);
139 void OpenSelectionCommon(BMessage
*);
140 bool IsOpenButtonAlwaysEnabled() const;
146 BMenuField
* fDirMenuField
;
147 BTextControl
* fTextControl
;
149 BFilePanel
* fClientObject
;
150 int32 fSelectionIterator
;
154 bool fIsTrackingMenu
;
156 typedef BContainerWindow _inherited
;
160 class BFilePanelPoseView
: public BPoseView
{
162 BFilePanelPoseView(Model
*);
164 virtual bool IsFilePanel() const;
165 virtual bool FSNotification(const BMessage
*);
167 void SetIsDesktop(bool);
170 // don't do any volume watching and memtamime watching in file panels
172 virtual void StartWatching();
173 virtual void StopWatching();
175 virtual void RestoreState(AttributeStreamNode
*);
176 virtual void RestoreState(const BMessage
&);
177 virtual void SavePoseLocations(BRect
* = NULL
);
179 virtual EntryListBase
* InitDirentIterator(const entry_ref
*);
180 virtual void AddPosesCompleted();
181 virtual bool IsDesktopView() const;
183 void ShowVolumes(bool visible
, bool showShared
);
185 void AdaptToVolumeChange(BMessage
*);
186 void AdaptToDesktopIntegrationChange(BMessage
*);
190 // This flags makes the distinction between the Desktop as
191 // the root of the world and "/boot/home/Desktop" to which
192 // we might have navigated from the home dir.
194 typedef BPoseView _inherited
;
201 BFilePanelPoseView::IsFilePanel() const
208 TFilePanel::IsSavePanel() const
214 inline const BMessenger
*
215 TFilePanel::Target() const
222 TFilePanel::Refresh()
224 fPoseView
->Refresh();
229 TFilePanel::HidesWhenDone(void)
231 return fHideWhenDone
;
236 TFilePanel::SetHideWhenDone(bool on
)
243 TFilePanel::TrackingMenu() const
245 return fIsTrackingMenu
;
248 } // namespace BPrivate
250 using namespace BPrivate
;
253 #endif // _FILE_PANEL_PRIV_H