Searched refs:fWindowList (Results 1 - 17 of 17) sorted by relevance

/haiku/src/kits/tracker/
H A DTracker.cpp301 AutoLock<WindowList> lock(&fWindowList);
302 deskWindow = new BDeskWindow(&fWindowList);
368 AutoLock<WindowList> lock(&fWindowList);
370 int32 count = fWindowList.CountItems();
373 = dynamic_cast<BContainerWindow*>(fWindowList.ItemAt(i));
630 AutoLock<WindowList> lock(&fWindowList);
631 int32 count = fWindowList.CountItems();
634 fWindowList.ItemAt(index));
728 AutoLock<WindowList> lock(&fWindowList);
759 AutoLock<WindowList> lock(&fWindowList);
[all...]
H A DTracker.h225 WindowList fWindowList; member in class:BPrivate::TTracker
H A DContainerWindow.h282 LockingList<BWindow>* fWindowList; member in class:BPrivate::BContainerWindow
H A DContainerWindow.cpp364 fWindowList(list),
587 if (fWindowList != NULL) {
588 AutoLock<LockingList<BWindow> > lock(fWindowList);
590 fWindowList->RemoveItem(this, false);
591 windowCount = fWindowList->CountItems();
598 if (fWindowList != NULL && windowCount == 0)
/haiku/src/add-ons/tracker/zipomatic/
H A DZipOMaticWindow.h48 BList fWindowList; member in class:ZippoWindow
H A DZipOMaticWindow.cpp45 fWindowList(windowList),
323 BWindow* win = static_cast<BWindow*>(fWindowList.ItemAt(i));
/haiku/src/bin/
H A Dspybmessage.cpp78 BList fWindowList; member in class:MyHandler
84 fWindowList.MakeEmpty();
100 if (win && !fWindowList.HasItem(win)) {
101 fWindowList.AddItem(win);
/haiku/src/kits/tracker/infowindow/
H A DInfoWindow.h86 LockingList<BWindow>* fWindowList; member in class:BPrivate::BInfoWindow
H A DInfoWindow.cpp102 fWindowList(list),
175 if (fWindowList) {
176 AutoLock<LockingList<BWindow> > lock(fWindowList);
177 fWindowList->RemoveItem(this);
/haiku/src/apps/mail/
H A DMailApp.h114 BList fWindowList; member in class:TMailApp
H A DMailApp.cpp347 for (int32 i = 0; i < fWindowList.CountItems(); i++) {
348 TMailWindow* window = (TMailWindow*)fWindowList.ItemAt(i);
396 fWindowList.RemoveItem(window);
755 for (int32 i = 0; i < fWindowList.CountItems(); i++) {
756 TMailWindow* window = (TMailWindow*)fWindowList.ItemAt(i);
1147 fWindowList.AddItem(window);
/haiku/src/servers/app/stackandtile/
H A DSATGroup.cpp180 int32 oldIndex = fWindowList.IndexOf(window);
182 return fWindowList.MoveItem(oldIndex, index);
202 SATWindow* window = fWindowList.ItemAt(0);
204 for (int32 i = 1; i < fWindowList.CountItems(); i++) {
205 window = fWindowList.ItemAt(i);
247 int32 indexAfter = fWindowList.IndexOf(after);
248 if (!fWindowList.AddItem(window, indexAfter + 1))
250 } else if (fWindowList.AddItem(window) == false)
255 if (fWindowList.CountItems() <= 1)
268 if (!fWindowList
[all...]
H A DSATGroup.h152 const SATWindowList& WindowList() { return fWindowList; }
213 SATWindowList fWindowList; member in class:WindowArea
/haiku/src/servers/app/
H A DServerApp.h142 BObjectList<ServerWindow> fWindowList; member in class:ServerApp
H A DWindow.h45 const StackWindows& WindowList() const { return fWindowList; }
62 StackWindows fWindowList; member in class:WindowStack
H A DServerApp.cpp164 for (int32 i = fWindowList.CountItems(); i-- > 0;) {
165 ServerWindow* window = fWindowList.ItemAt(i);
176 for (int32 i = fWindowList.CountItems(); i-- > 0;) {
177 ServerWindow* window = fWindowList.ItemAt(i);
322 return fWindowList.AddItem(window);
331 fWindowList.RemoveItem(window);
345 for (int32 i = fWindowList.CountItems(); i-- > 0;) {
346 ServerWindow* serverWindow = fWindowList.ItemAt(i);
373 for (int32 i = fWindowList.CountItems(); i-- > 0;) {
374 ServerWindow* serverWindow = fWindowList
[all...]
H A DWindow.cpp2336 return fWindowList.CountItems();
2343 return fWindowList.ItemAt(index);
2351 if (fWindowList.AddItem(window, position) == false)
2353 } else if (fWindowList.AddItem(window) == false)
2357 fWindowList.RemoveItem(window);
2367 if (fWindowList.RemoveItem(window) == false)
2387 return fWindowList.MoveItem(from, to);

Completed in 228 milliseconds