Home
last modified time | relevance | path

Searched refs:cApplication (Results 1 – 25 of 78) sorted by relevance

1234

/dports/games/maxr/maxr-0.2.9/src/ui/graphical/
H A Dapplication.cpp38 cApplication::cApplication() : in cApplication() function in cApplication
73 cApplication::~cApplication() in ~cApplication()
77 void cApplication::execute() in execute()
152 void cApplication::center (cWindow& window) in center()
188 bool cApplication::hasMouseFocus() const in hasMouseFocus()
215 bool cApplication::hasKeyFocus() const in hasKeyFocus()
221 cMouse* cApplication::getActiveMouse() in getActiveMouse()
227 cKeyboard* cApplication::getActiveKeyboard() in getActiveKeyboard()
258 cWindow* cApplication::getActiveWindow() in getActiveWindow()
267 cWidget* cApplication::getKeyFocusWidget() const in getKeyFocusWidget()
[all …]
H A Dwidget.h39 class cApplication; variable
215 virtual bool handleMouseMoved(cApplication& application, cMouse& mouse, const cPosition& offset);
269 virtual bool handleKeyPressed(cApplication& application, cKeyboard& keyboard, SDL_Keycode key);
282 virtual bool handleKeyReleased(cApplication& application, cKeyboard& keyboard, SDL_Keycode key);
290 virtual void handleTextEntered(cApplication& application, cKeyboard& keyboard, const char* text);
305 virtual bool handleGetKeyFocus(cApplication& application);
314 virtual void handleLooseKeyFocus(cApplication& application);
323 virtual void handleGetMouseFocus(cApplication& application);
331 virtual void handleLooseMouseFocus(cApplication& application);
413 virtual cApplication* getActiveApplication() const;
[all …]
H A Dwidget.cpp293 bool cWidget::handleMouseMoved (cApplication& application, cMouse& mouse, const cPosition& offset) in handleMouseMoved()
299 bool cWidget::handleMousePressed (cApplication& application, cMouse& mouse, eMouseButtonType button) in handleMousePressed()
317 bool cWidget::handleKeyPressed (cApplication& application, cKeyboard& keyboard, SDL_Keycode key) in handleKeyPressed()
331 bool cWidget::handleKeyReleased (cApplication& application, cKeyboard& keyboard, SDL_Keycode key) in handleKeyReleased()
345 void cWidget::handleTextEntered (cApplication& application, cKeyboard& keyboard, const char* text) in handleTextEntered()
357 bool cWidget::handleGetKeyFocus (cApplication& application) in handleGetKeyFocus()
363 void cWidget::handleLooseKeyFocus (cApplication& application) in handleLooseKeyFocus()
367 void cWidget::handleGetMouseFocus (cApplication& application) in handleGetMouseFocus()
371 void cWidget::handleLooseMouseFocus (cApplication& application) in handleLooseMouseFocus()
420 cApplication* cWidget::getActiveApplication() const in getActiveApplication()
[all …]
H A Dwindow.h106 virtual void handleActivated (cApplication& application, bool firstTime);
123 virtual void handleDeactivated(cApplication& application, bool removed);
162 virtual cApplication* getActiveApplication() const MAXR_OVERRIDE_FUNCTION;
206 cApplication* activeApplication;
H A Dapplication.h43 class cApplication
46 cApplication();
47 ~cApplication();
136 WindowType* cApplication::show (std::shared_ptr<WindowType> window) in show()
H A Dwindow.cpp86 void cWindow::handleActivated (cApplication& application, bool firstTime) in handleActivated()
107 void cWindow::handleDeactivated (cApplication& application, bool removed) in handleDeactivated()
129 cApplication* cWindow::getActiveApplication() const in getActiveApplication()
/dports/databases/WWWdb/WWWdb-0.8.3/Apache/
H A DWWWdb_TransUri.pm55 my $cApplication;
166 $cApplication = $lDefaults[3];
201 $cApplication = ((@lRest)?
203 $cApplication or 'WWWdb/Index');
207 $cApplication =~ s.:./.g;
213 if ($cApplication =~ /([^;]*)(;(.*))/)
215 $cApplication = $1;
219 $hReqObj->subprocess_env('WWWDB_CONFIG_FILE' => $cApplication);
222 …_BASE_PATH=>$cDocRoot WWWDB_DATABASE=>$cDatabase\nWWWDB_CONFIG_FILE=>$cApplication WWWDB_PARAMS=>$…
232 printf DEBUG ("SessionId=$cSessionId Database=$cDatabase Appl=$cApplication\n");
[all …]
/dports/databases/WWWdb/WWWdb-0.8.3/tools/
H A DTestWWWdb.pl80 my $cApplication;
115 $cApplication = (@lRest)? shift @lRest: 'WWWdb/Index';
119 $cApplication =~ s.:./.g;
126 if ($cApplication =~ /([^;]*)(;(.*))/)
128 $cApplication = $1;
132 $ENV{'WWWDB_CONFIG_FILE'} = $cApplication;
/dports/games/maxr/maxr-0.2.9/src/ui/graphical/menu/widgets/
H A Dclickablewidget.h41 …virtual bool handleMouseMoved (cApplication& application, cMouse& mouse, const cPosition& offset) …
43 …virtual bool handleMousePressed (cApplication& application, cMouse& mouse, eMouseButtonType button…
44 …virtual bool handleMouseReleased (cApplication& application, cMouse& mouse, eMouseButtonType butto…
46 virtual void handleLooseMouseFocus (cApplication& application) MAXR_OVERRIDE_FUNCTION;
57 void finishMousePressed (cApplication& application, cMouse& mouse, eMouseButtonType button);
59 virtual bool handleClicked (cApplication& application, cMouse& mouse, eMouseButtonType button) = 0;
H A Dlineedit.h58 virtual bool handleGetKeyFocus (cApplication& application) MAXR_OVERRIDE_FUNCTION;
59 virtual void handleLooseKeyFocus (cApplication& application) MAXR_OVERRIDE_FUNCTION;
61 …virtual bool handleKeyPressed (cApplication& application, cKeyboard& keyboard, SDL_Keycode key) MA…
62 …virtual void handleTextEntered (cApplication& application, cKeyboard& keyboard, const char* text) …
70 …virtual bool handleClicked (cApplication& application, cMouse& mouse, eMouseButtonType button) MAX…
H A Dcolorpicker.h41 …virtual bool handleMouseMoved (cApplication& application, cMouse& mouse, const cPosition& offset) …
43 …virtual bool handleMousePressed (cApplication& application, cMouse& mouse, eMouseButtonType button…
44 …virtual bool handleMouseReleased (cApplication& application, cMouse& mouse, eMouseButtonType butto…
46 virtual void handleLooseMouseFocus (cApplication& application) MAXR_OVERRIDE_FUNCTION;
H A Dclickablewidget.cpp64 bool cClickableWidget::handleMouseMoved (cApplication& application, cMouse& mouse, const cPosition&… in handleMouseMoved()
91 bool cClickableWidget::handleMousePressed (cApplication& application, cMouse& mouse, eMouseButtonTy… in handleMousePressed()
104 void cClickableWidget::finishMousePressed (cApplication& application, cMouse& mouse, eMouseButtonTy… in finishMousePressed()
115 bool cClickableWidget::handleMouseReleased (cApplication& application, cMouse& mouse, eMouseButtonT… in handleMouseReleased()
130 void cClickableWidget::handleLooseMouseFocus (cApplication& application) in handleLooseMouseFocus()
H A Dsliderhandle.h62 …virtual bool handleMouseMoved (cApplication& application, cMouse& mouse, const cPosition& offset) …
64 …virtual bool handleMousePressed (cApplication& application, cMouse& mouse, eMouseButtonType button…
65 …virtual bool handleMouseReleased (cApplication& application, cMouse& mouse, eMouseButtonType butto…
H A Dcheckbox.h90 …virtual bool handleMousePressed (cApplication& application, cMouse& mouse, eMouseButtonType button…
91 …virtual bool handleMouseReleased (cApplication& application, cMouse& mouse, eMouseButtonType butto…
95 …virtual bool handleClicked (cApplication& application, cMouse& mouse, eMouseButtonType button) MAX…
H A Dpushbutton.h86 …virtual bool handleMousePressed (cApplication& application, cMouse& mouse, eMouseButtonType button…
87 …virtual bool handleMouseReleased (cApplication& application, cMouse& mouse, eMouseButtonType butto…
96 …virtual bool handleClicked (cApplication& application, cMouse& mouse, eMouseButtonType button) MAX…
/dports/games/maxr/maxr-0.2.9/src/ui/graphical/menu/control/
H A Dmenucontrollermultiplayerhost.h31 class cApplication; variable
45 cMenuControllerMultiplayerHost (cApplication& application);
61 cApplication& application;
81 void handleSelectMap (cApplication& application);
82 void handleSelectSettings (cApplication& application);
83 void handleSelectSaveGame (cApplication& application);
H A Dmenucontrollermultiplayerhotseat.h28 class cApplication; variable
39 cMenuControllerMultiplayerHotSeat (cApplication& application);
45 cApplication& application;
H A Dmenucontrollermultiplayerclient.h30 class cApplication; variable
43 cMenuControllerMultiplayerClient (cApplication& application);
59 cApplication& application;
/dports/games/maxr/maxr-0.2.9/src/ui/graphical/game/widgets/
H A Dminimapwidget.h50 …virtual bool handleMouseMoved (cApplication& application, cMouse& mouse, const cPosition& offset) …
52 …virtual bool handleMousePressed (cApplication& application, cMouse& mouse, eMouseButtonType button…
53 …virtual bool handleMouseReleased (cApplication& application, cMouse& mouse, eMouseButtonType butto…
55 virtual void handleLooseMouseFocus (cApplication& application) MAXR_OVERRIDE_FUNCTION;
60 …virtual bool handleClicked (cApplication& application, cMouse& mouse, eMouseButtonType button) MAX…
/dports/games/maxr/maxr-0.2.9/src/ui/graphical/game/control/
H A Drightmousebuttonscroller.h48 …virtual bool handleMouseMoved (cApplication& application, cMouse& mouse, const cPosition& offset) …
50 …virtual bool handleMousePressed (cApplication& application, cMouse& mouse, eMouseButtonType button…
51 …virtual bool handleMouseReleased (cApplication& application, cMouse& mouse, eMouseButtonType butto…
53 virtual void handleLooseMouseFocus (cApplication& application) MAXR_OVERRIDE_FUNCTION;
H A Drightmousebuttonscroller.cpp74 bool cRightMouseButtonScrollerWidget::handleMouseMoved (cApplication& application, cMouse& mouse, c… in handleMouseMoved()
101 bool cRightMouseButtonScrollerWidget::handleMousePressed (cApplication& application, cMouse& mouse,… in handleMousePressed()
139 bool cRightMouseButtonScrollerWidget::handleMouseReleased (cApplication& application, cMouse& mouse… in handleMouseReleased()
154 void cRightMouseButtonScrollerWidget::handleLooseMouseFocus (cApplication& application) in handleLooseMouseFocus()
/dports/games/maxr/maxr-0.2.9/src/ui/graphical/menu/windows/windowlandingpositionselection/
H A Dwindowlandingpositionselection.h67 virtual void handleActivated (cApplication& application, bool firstTime) MAXR_OVERRIDE_FUNCTION;
68 virtual void handleDeactivated (cApplication& application, bool removed) MAXR_OVERRIDE_FUNCTION;
70 …virtual bool handleMouseMoved (cApplication& application, cMouse& mouse, const cPosition& offset) …
/dports/games/maxr/maxr-0.2.9/src/ui/graphical/game/
H A Dgamegui.h98 …virtual bool handleMouseMoved (cApplication& application, cMouse& mouse, const cPosition& offset) …
99 …virtual bool handleMouseWheelMoved (cApplication& application, cMouse& mouse, const cPosition& amo…
101 virtual void handleActivated (cApplication& application, bool firstTime) MAXR_OVERRIDE_FUNCTION;
102 virtual void handleDeactivated (cApplication& application, bool removed) MAXR_OVERRIDE_FUNCTION;
/dports/games/maxr/maxr-0.2.9/src/game/startup/local/singleplayer/
H A Dlocalsingleplayergamesaved.h32 class cApplication; variable
37 void start (cApplication& application);
/dports/games/maxr/maxr-0.2.9/src/game/startup/network/host/
H A Dnetworkhostgamesaved.h30 class cApplication; variable
36 void start (cApplication& application);

1234