Symbol: Selection
headers/os/interface/TabView.h
138
int32 Selection() const;
headers/os/package/solver/SolverProblemSolution.h
54
const BString& Selection() const;
headers/private/shared/CalendarView.h
107
Selection()
headers/private/shared/CalendarView.h
122
Selection& operator=(const Selection& s)
headers/private/shared/CalendarView.h
129
bool operator==(const Selection& s) const
headers/private/shared/CalendarView.h
135
bool operator!=(const Selection& s) const
headers/private/shared/CalendarView.h
147
const Selection& selection, int32* year,
headers/private/shared/CalendarView.h
177
BRect _RectOfDay(const Selection& selection) const;
headers/private/shared/CalendarView.h
185
Selection fFocusedDay;
headers/private/shared/CalendarView.h
186
Selection fNewFocusedDay;
headers/private/shared/CalendarView.h
189
Selection fSelectedDay;
headers/private/shared/CalendarView.h
190
Selection fNewSelectedDay;
headers/private/shared/CalendarView.h
193
Selection fCurrentDay;
headers/private/shared/CalendarView.h
194
Selection fNewCurrentDay;
src/apps/codycam/CodyCam.cpp
911
tabNum = tabView->Selection();
src/apps/diskusage/ControlsView.cpp
269
ViewForTab(Selection())->MessageReceived(message);
src/apps/diskusage/ControlsView.cpp
401
fVolumeTabView->Selection()))->ShowInfo(info);
src/apps/diskusage/ControlsView.cpp
409
fVolumeTabView->Selection()))->EnableRescan();
src/apps/diskusage/ControlsView.cpp
417
fVolumeTabView->Selection()))->EnableCancel();
src/apps/haikudepot/textview/TextEditor.h
53
inline TextSelection Selection() const
src/apps/haikudepot/ui/MainWindow.cpp
1391
&& fListTabs->Selection() == TAB_PROMINENT_PACKAGES) {
src/apps/haikudepot/ui/MainWindow.cpp
1942
= main_window_tab_to_package_list_view_mode(fListTabs->Selection());
src/apps/icon-o-matic/MainWindow.cpp
1029
fPathListView->SetSelection(fDocument->Selection());
src/apps/icon-o-matic/MainWindow.cpp
1033
fStyleListView->SetSelection(fDocument->Selection());
src/apps/icon-o-matic/MainWindow.cpp
1041
fShapeListView->SetSelection(fDocument->Selection());
src/apps/icon-o-matic/MainWindow.cpp
1045
fTransformerListView->SetSelection(fDocument->Selection());
src/apps/icon-o-matic/MainWindow.cpp
1048
fPropertyListView->SetSelection(fDocument->Selection());
src/apps/icon-o-matic/document/Document.cpp
32
fSelection(new (nothrow) ::Selection()),
src/apps/icon-o-matic/document/Document.h
27
class Selection;
src/apps/icon-o-matic/document/Document.h
38
inline ::Selection* Selection() const
src/apps/icon-o-matic/document/Document.h
63
::Selection* fSelection;
src/apps/icon-o-matic/generic/gui/ListViews.cpp
568
DragSortableListView::SetSelection(Selection* selection)
src/apps/icon-o-matic/generic/gui/ListViews.h
131
Selection* fSelection;
src/apps/icon-o-matic/generic/gui/ListViews.h
28
class Selection;
src/apps/icon-o-matic/generic/gui/ListViews.h
97
void SetSelection(Selection* selection);
src/apps/icon-o-matic/generic/selection/Selectable.cpp
48
Selectable::SetSelection(Selection* selection)
src/apps/icon-o-matic/generic/selection/Selectable.h
14
class Selection;
src/apps/icon-o-matic/generic/selection/Selectable.h
29
void SetSelection(Selection* selection);
src/apps/icon-o-matic/generic/selection/Selectable.h
32
friend class Selection;
src/apps/icon-o-matic/generic/selection/Selectable.h
36
Selection* fSelection;
src/apps/icon-o-matic/generic/selection/Selection.cpp
102
Selection::SelectableAtFast(int32 index) const
src/apps/icon-o-matic/generic/selection/Selection.cpp
109
Selection::CountSelected() const
src/apps/icon-o-matic/generic/selection/Selection.cpp
118
Selection::_DeselectAllExcept(Selectable* except)
src/apps/icon-o-matic/generic/selection/Selection.cpp
18
Selection::Selection()
src/apps/icon-o-matic/generic/selection/Selection.cpp
24
Selection::~Selection()
src/apps/icon-o-matic/generic/selection/Selection.cpp
30
Selection::Select(Selectable* object, bool extend)
src/apps/icon-o-matic/generic/selection/Selection.cpp
72
Selection::Deselect(Selectable* object)
src/apps/icon-o-matic/generic/selection/Selection.cpp
86
Selection::DeselectAll()
src/apps/icon-o-matic/generic/selection/Selection.cpp
95
Selection::SelectableAt(int32 index) const
src/apps/icon-o-matic/generic/selection/Selection.h
18
class Selection : public Observable {
src/apps/icon-o-matic/generic/selection/Selection.h
20
Selection();
src/apps/icon-o-matic/generic/selection/Selection.h
21
virtual ~Selection();
src/apps/icon-o-matic/gui/IconObjectListView.cpp
162
IconObjectListView::SetSelection(Selection* selection)
src/apps/icon-o-matic/gui/IconObjectListView.h
17
class Selection;
src/apps/icon-o-matic/gui/IconObjectListView.h
38
void SetSelection(Selection* selection);
src/apps/icon-o-matic/gui/IconObjectListView.h
46
Selection* fSelection;
src/apps/icon-o-matic/gui/PathListView.h
29
class Selection;
src/apps/icon-o-matic/gui/ShapeListView.h
22
class Selection;
src/apps/icon-o-matic/gui/StyleListView.h
21
class Selection;
src/apps/icon-o-matic/gui/TransformerListView.h
22
class Selection;
src/apps/icon-o-matic/shape/PathManipulator.cpp
1105
Selection temp;
src/apps/icon-o-matic/shape/PathManipulator.cpp
1145
Selection temp;
src/apps/icon-o-matic/shape/PathManipulator.cpp
1322
Selection selection = *fSelection;
src/apps/icon-o-matic/shape/PathManipulator.cpp
1403
Selection temp;
src/apps/icon-o-matic/shape/PathManipulator.cpp
180
inline Selection& operator =(const Selection& other)
src/apps/icon-o-matic/shape/PathManipulator.cpp
186
inline bool operator ==(const Selection& other)
src/apps/icon-o-matic/shape/PathManipulator.cpp
189
inline bool operator !=(const Selection& other)
src/apps/icon-o-matic/shape/PathManipulator.cpp
220
fSelection(new Selection()),
src/apps/icon-o-matic/shape/PathManipulator.cpp
221
fOldSelection(new Selection()),
src/apps/icon-o-matic/shape/PathManipulator.h
166
class Selection;
src/apps/icon-o-matic/shape/PathManipulator.h
167
Selection* fSelection;
src/apps/icon-o-matic/shape/PathManipulator.h
168
Selection* fOldSelection;
src/apps/magnify/Magnify.cpp
2079
short selection = fParent->Selection();
src/apps/magnify/Magnify.h
79
short Selection();
src/apps/pulse/PrefsWindow.cpp
122
BTab *tab = fTabView->TabAt(fTabView->Selection());
src/apps/terminal/TermWindow.cpp
1085
_UpdateSessionTitle(fTabView->Selection());
src/apps/terminal/TermWindow.cpp
1500
return _TermViewContainerViewAt(fTabView->Selection());
src/apps/terminal/TermWindow.cpp
1940
if (index != fTabView->Selection())
src/apps/terminal/TermWindow.cpp
297
_UpdateSessionTitle(fTabView->Selection());
src/kits/interface/TabView.cpp
352
int32 selected = fTabView->Selection();
src/kits/interface/TabView.cpp
706
int32 selection = Selection();
src/kits/interface/TabView.cpp
710
Select(Selection() + 1);
src/kits/interface/TabView.cpp
772
int32 selection = Selection();
src/kits/interface/TabView.cpp
777
Select(Selection() - 1);
src/kits/interface/TabView.cpp
781
Select(Selection() + 1);
src/kits/interface/TabView.cpp
786
&& i != Selection()) {
src/kits/interface/TabView.cpp
821
if (index == Selection())
src/kits/interface/TabView.cpp
825
index = Selection();
src/kits/interface/TabView.cpp
827
BTab* tab = TabAt(Selection());
src/kits/interface/TabView.cpp
884
SetFocusTab(Selection(), focus);
src/kits/shared/CalendarView.cpp
1327
BCalendarView::_RectOfDay(const Selection& selection) const
src/kits/shared/CalendarView.cpp
791
BCalendarView::_GetYearMonthForSelection(const Selection& selection,
src/kits/tracker/PoseViewScripting.cpp
72
doo Tracker count Selection of Poses of Window test
src/kits/tracker/PoseViewScripting.cpp
73
doo Tracker get Selection of Poses of Window test
src/kits/tracker/PoseViewScripting.cpp
77
doo Tracker set Selection of Poses of Window test to [0,2]
src/kits/tracker/PoseViewScripting.cpp
78
doo Tracker set Selection of Poses of Window test to 'test/KT55'
src/kits/tracker/PoseViewScripting.cpp
79
doo Tracker create Selection of Poses of Window test to 'test/EL34'
src/kits/tracker/PoseViewScripting.cpp
80
doo Tracker delete Selection 'test/EL34' of Poses of Window test
src/preferences/notifications/PrefletView.cpp
64
if (index == Selection())
src/preferences/screensaver/ScreenSaverWindow.cpp
1010
if (fadeTab != NULL && Selection() != 0 && fadeTabFrame.Contains(where)
src/preferences/screensaver/ScreenSaverWindow.cpp
1015
} else if (modulesTab != NULL && Selection() != 1
src/preferences/screensaver/ScreenSaverWindow.cpp
1094
fSettings.SetWindowTab(fTabView->Selection());