Home
last modified time | relevance | path

Searched refs:Focusable (Results 1 – 25 of 370) sorted by relevance

12345678910>>...15

/dports/x11-wm/fluxbox/fluxbox-1.3.7/src/
H A DFocusableList.hh36 class Focusable;
60 void pushFront(Focusable &win);
61 void pushBack(Focusable &win);
62 void moveToFront(Focusable &win);
63 void moveToBack(Focusable &win);
64 void remove(Focusable &win);
90 void checkUpdate(Focusable &win);
91 bool insertFromParent(Focusable &win);
92 void attachSignals(Focusable &win);
98 void updateTitle(Focusable& win);
[all …]
H A DFocusable.hh37 class Focusable: public FbTk::ITypeAheadable { class
39 Focusable(BScreen &scr, FluxboxWindow *fbwin = 0): in Focusable() function in Focusable
47 virtual ~Focusable() { } in ~Focusable()
110 typedef FbTk::Signal<const std::string&, Focusable&> TitleSignal;
115 FbTk::Signal<Focusable&> &focusSig() { return m_focussig; } in focusSig()
116 FbTk::Signal<Focusable&> &dieSig() { return m_diesig; } in dieSig()
117 FbTk::Signal<Focusable&> &attentionSig() { return m_attentionsig; } in attentionSig()
139 FbTk::Signal<Focusable&> m_attentionsig;
140 FbTk::Signal<Focusable&> m_focussig;
141 FbTk::Signal<Focusable&> m_diesig;
H A DAttentionNoticeHandler.hh29 class Focusable;
43 typedef std::map<Focusable*, FbTk::Timer*> NoticeMap;
46 void addAttention(Focusable &client);
48 bool isDemandingAttention(const Focusable &client);
51 void windowFocusChanged(Focusable& win);
53 void removeWindow(Focusable& win);
57 void updateWindow(Focusable& win, bool died);
H A DFocusableList.cc129 void FocusableList::parentOrderChanged(Focusable *win) { in parentOrderChanged()
136 void FocusableList::parentWindowAdded(Focusable *win) { in parentWindowAdded()
151 void FocusableList::checkUpdate(Focusable &win) { in checkUpdate()
166 bool FocusableList::insertFromParent(Focusable &win) { in insertFromParent()
203 void FocusableList::pushFront(Focusable &win) { in pushFront()
209 void FocusableList::pushBack(Focusable &win) { in pushBack()
215 void FocusableList::moveToFront(Focusable &win) { in moveToFront()
225 void FocusableList::moveToBack(Focusable &win) { in moveToBack()
235 void FocusableList::remove(Focusable &win) { in remove()
247 void FocusableList::updateTitle(Focusable& win) { in updateTitle()
[all …]
H A DAttentionNoticeHandler.cc35 ToggleFrameFocusCmd(Focusable &client): in ToggleFrameFocusCmd()
43 Focusable &m_client;
54 void AttentionNoticeHandler::addAttention(Focusable &client) { in addAttention()
98 void AttentionNoticeHandler::windowFocusChanged(Focusable& win) { in windowFocusChanged()
101 void AttentionNoticeHandler::removeWindow(Focusable& win) { in removeWindow()
105 void AttentionNoticeHandler::updateWindow(Focusable& win, bool died) { in updateWindow()
119 bool AttentionNoticeHandler::isDemandingAttention(const Focusable &client) { in isDemandingAttention()
H A DFocusControl.hh33 class Focusable;
42 typedef std::list<Focusable *> Focusables;
118 void addFocusWinBack(Focusable &win);
119 void addFocusWinFront(Focusable &win);
133 Focusable *lastFocusedWindow(int workspace);
147 void removeWindow(Focusable &win);
181 Focusable *m_was_iconic;
H A DIconbarTool.hh38 class Focusable;
43 typedef std::map<Focusable *, IconButton *> IconMap;
87 void insertWindow(Focusable &win, int pos = -2);
89 void removeWindow(Focusable &win);
91 IconButton *makeButton(Focusable &win);
98 void update(UpdateReason reason, Focusable *win);
H A DClientMenu.cc39 ClientMenuItem(Focusable &client, ClientMenu &menu): in ClientMenuItem()
82 Focusable *client() { return &m_client; } in client()
85 Focusable &m_client;
132 ClientMenuItem* getMenuItem(ClientMenu& menu, Focusable& win) { in getMenuItem()
150 void ClientMenu::titleChanged(Focusable& win) { in titleChanged()
157 void ClientMenu::clientDied(Focusable &win) { in clientDied()
H A DIconButton.hh44 Focusable &window);
62 Focusable &win() { return m_win; } in win()
63 const Focusable &win() const { return m_win; } in win()
80 Focusable &m_win;
H A DFocusableTheme.hh32 FocusableTheme(Focusable &win, FbTk::ThemeProxy<BaseTheme> &focused, in FocusableTheme()
46 Focusable &win() { return m_win; } in win()
47 const Focusable &win() const { return m_win; } in win()
67 Focusable &m_win;
H A DClientMenu.hh31 class Focusable;
54 void titleChanged(Focusable& win);
57 void clientDied(Focusable& win);
H A DClientPattern.hh33 class Focusable;
62 bool match(const Focusable &win) const;
94 static FbTk::FbString getProperty(WinProperty prop, const Focusable &client);
H A DIconbarTool.cc207 explicit FocusCommand(Focusable &win): m_win(win) { } in FocusCommand()
223 Focusable &m_win;
346 *this, &IconbarTool::update, LIST_RESET, static_cast<Focusable *>(0) in setMode()
377 void IconbarTool::update(UpdateReason reason, Focusable *win) { in update()
422 void IconbarTool::insertWindow(Focusable &win, int pos) { in insertWindow()
437 list<Focusable *>::iterator it = m_winlist->clientList().begin(), in insertWindow()
508 void IconbarTool::removeWindow(Focusable &win) { in removeWindow()
523 IconButton *IconbarTool::makeButton(Focusable &win) { in makeButton()
545 list<Focusable *>::iterator it = m_winlist->clientList().begin(); in updateList()
546 list<Focusable *>::iterator it_end = m_winlist->clientList().end(); in updateList()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/org/rstudio/core/client/widget/
H A DDirectoryChooserTextBox.java23 import com.google.gwt.user.client.ui.Focusable;
35 Focusable focusAfter) in DirectoryChooserTextBox()
48 Focusable focusAfter) in DirectoryChooserTextBox()
59 …public DirectoryChooserTextBox(String label, ElementIds.TextBoxButtonId uniqueId, Focusable focusA… in DirectoryChooserTextBox()
66 Focusable focusAfter, in DirectoryChooserTextBox()
76 final Focusable focusAfter, in DirectoryChooserTextBox()
87 final Focusable focusAfter, in DirectoryChooserTextBox()
99 final Focusable focusAfter, in DirectoryChooserTextBox()
H A DFileChooserTextBox.java26 import com.google.gwt.user.client.ui.Focusable;
42 final Focusable focusAfter, in FileChooserTextBox()
60 final Focusable focusAfter, in FileChooserTextBox()
71 final Focusable focusAfter, in FileChooserTextBox()
/dports/games/wop/wop-0.4.3/sdlwidgets/
H A Dfocusmanager.h12 Focusable* _focused_widget;
17 void requestFocus( Focusable* widget );
18 void removeFocus( Focusable* widget );
19 Focusable* getFocusedWidget() { return _focused_widget; } in getFocusedWidget()
/dports/audio/bshapr-lv2/BShapr-0.13/src/
H A DEditWidget.hpp28 class EditWidget : public BWidgets::Widget, public BWidgets::Focusable
35 Focusable (std::chrono::milliseconds (BWIDGETS_DEFAULT_FOCUS_IN_MS), in EditWidget()
46 Widget (that), Focusable (that), in EditWidget()
60 Focusable::operator= (that); in operator =()
/dports/audio/bsequencer-lv2/BSEQuencer-1.8.10/src/
H A DHaloButton.hpp28 class HaloButton : public BWidgets::ValueWidget, public BWidgets::Focusable
35 Focusable (std::chrono::milliseconds (BWIDGETS_DEFAULT_FOCUS_IN_MS), in HaloButton()
46 ValueWidget (that), Focusable (that), in HaloButton()
60 Focusable::operator= (that); in operator =()
/dports/audio/boops-lv2/BOops-1.8.2/src/
H A DHaloButton.hpp28 class HaloButton : public BWidgets::ValueWidget, public BWidgets::Focusable
35 Focusable (std::chrono::milliseconds (BWIDGETS_DEFAULT_FOCUS_IN_MS), in HaloButton()
46 ValueWidget (that), Focusable (that), in HaloButton()
60 Focusable::operator= (that); in operator =()
H A DSymbolWidget.hpp30 class SymbolWidget : public BWidgets::Widget, public BWidgets::Focusable
41 Focusable (std::chrono::milliseconds (BWIDGETS_DEFAULT_FOCUS_IN_MS), in SymbolWidget()
54 Widget (that), Focusable (that), in SymbolWidget()
73 Focusable::operator= (that); in operator =()
/dports/audio/bangr-lv2/BAngr-1.6.0/src/
H A DHaloButton.hpp28 class HaloButton : public BWidgets::ValueWidget, public BWidgets::Focusable
35 Focusable (std::chrono::milliseconds (BWIDGETS_DEFAULT_FOCUS_IN_MS), in HaloButton()
46 ValueWidget (that), Focusable (that), in HaloButton()
60 Focusable::operator= (that); in operator =()
/dports/audio/bchoppr-lv2/BChoppr-1.10.10/src/
H A DHaloButton.hpp28 class HaloButton : public BWidgets::ValueWidget, public BWidgets::Focusable
35 Focusable (std::chrono::milliseconds (BWIDGETS_DEFAULT_FOCUS_IN_MS), in HaloButton()
46 ValueWidget (that), Focusable (that), in HaloButton()
60 Focusable::operator= (that); in operator =()
/dports/audio/bjumblr-lv2/BJumblr-1.6.8/src/
H A DHaloButton.hpp28 class HaloButton : public BWidgets::ValueWidget, public BWidgets::Focusable
35 Focusable (std::chrono::milliseconds (BWIDGETS_DEFAULT_FOCUS_IN_MS), in HaloButton()
46 ValueWidget (that), Focusable (that), in HaloButton()
60 Focusable::operator= (that); in operator =()
/dports/audio/bharvestr-lv2/BHarvestr-7e6a1e7c81d0af61d4fabcd823978d62c8970502/src/
H A DHaloButton.hpp28 class HaloButton : public BWidgets::ValueWidget, public BWidgets::Focusable
35 Focusable (std::chrono::milliseconds (BWIDGETS_DEFAULT_FOCUS_IN_MS), in HaloButton()
46 ValueWidget (that), Focusable (that), in HaloButton()
60 Focusable::operator= (that); in operator =()
/dports/audio/bschaffl-lv2/BSchaffl-1.4.8/src/
H A DHaloButton.hpp28 class HaloButton : public BWidgets::ValueWidget, public BWidgets::Focusable
35 Focusable (std::chrono::milliseconds (BWIDGETS_DEFAULT_FOCUS_IN_MS), in HaloButton()
46 ValueWidget (that), Focusable (that), in HaloButton()
60 Focusable::operator= (that); in operator =()

12345678910>>...15