Home
last modified time | relevance | path

Searched refs:selectable (Results 1 – 15 of 15) sorted by relevance

/haiku/src/apps/cortex/DiagramView/
H A DDiagramItem.h226 bool selectable) in makeSelectable() argument
227 { m_selectable = selectable; } in makeSelectable()
/haiku/src/apps/icon-o-matic/generic/gui/
H A DListViews.cpp584 DragSortableListView::IndexOfSelectable(Selectable* selectable) const in IndexOfSelectable()
626 Selectable* selectable = SelectableFor(item); in SelectionChanged() local
627 if (selectable) in SelectionChanged()
628 selectables.AddItem((void*)selectable); in SelectionChanged()
641 Selectable* selectable = (Selectable*)selectables.ItemAtFast(i); in SelectionChanged() local
642 fSelection->Select(selectable, i > 0); in SelectionChanged()
H A DListViews.h99 virtual int32 IndexOfSelectable(Selectable* selectable) const;
/haiku/src/apps/icon-o-matic/gui/
H A DTransformerListView.h58 virtual int32 IndexOfSelectable(Selectable* selectable) const;
H A DShapeListView.h64 virtual int32 IndexOfSelectable(Selectable* selectable) const;
H A DStyleListView.h60 virtual int32 IndexOfSelectable(Selectable* selectable) const;
H A DPathListView.h63 virtual int32 IndexOfSelectable(Selectable* selectable) const;
H A DShapeListView.cpp541 ShapeListView::IndexOfSelectable(Selectable* selectable) const in IndexOfSelectable()
543 Shape* shape = dynamic_cast<Shape*>(selectable); in IndexOfSelectable()
545 Transformer* transformer = dynamic_cast<Transformer*>(selectable); in IndexOfSelectable()
H A DTransformerListView.cpp364 TransformerListView::IndexOfSelectable(Selectable* selectable) const in IndexOfSelectable()
366 Transformer* transformer = dynamic_cast<Transformer*>(selectable); in IndexOfSelectable()
H A DStyleListView.cpp576 StyleListView::IndexOfSelectable(Selectable* selectable) const in IndexOfSelectable()
578 Style* style = dynamic_cast<Style*>(selectable); in IndexOfSelectable()
H A DPathListView.cpp654 PathListView::IndexOfSelectable(Selectable* selectable) const in IndexOfSelectable()
656 VectorPath* path = dynamic_cast<VectorPath*>(selectable); in IndexOfSelectable()
/haiku/docs/user/interface/
H A DTextView.dox183 to be selectable or editable off. A non-editable, non-selectable text
1186 \fn void BTextView::MakeSelectable(bool selectable)
1187 \brief Sets whether or not the text is selectable.
1189 \param selectable Pass in \c true to set the text to be selectable,
1190 \c false to set the text to be not selectable.
1198 \brief Returns whether or not the text is selectable.
1200 \return \c true if the text is selectable,
1201 \c false if the text is not selectable.
/haiku/src/apps/autoraise/
H A DAutoRaise.txt7 …dow autoraiser. It will bring to front whatever window is under the mouse after a selectable delay.
/haiku/headers/os/interface/
H A DTextView.h189 void MakeSelectable(bool selectable = true);
/haiku/src/kits/interface/
H A DTextView.cpp2348 BTextView::MakeSelectable(bool selectable) in MakeSelectable() argument
2350 if (selectable == fSelectable) in MakeSelectable()
2353 fSelectable = selectable; in MakeSelectable()