Lines Matching refs:appCore

61     appCore = core;  in KdeGlWidget()
62 appRenderer=appCore->getRenderer(); in KdeGlWidget()
63 appSim = appCore->getSimulation(); in KdeGlWidget()
69 appCore->setCursorHandler(this); in KdeGlWidget()
91 appCore->draw(); in paintGL()
101 if (!appCore->initRenderer()) in initializeGL()
108 appCore->start(astro::UTCtoTDB((double) curtime / 86400.0 + (double) astro::Date(1970, 1, 1))); in initializeGL()
112 appCore->setTimeZoneBias(temptime->tm_gmtoff); in initializeGL()
113 appCore->setTimeZoneName(temptime->tm_zone); in initializeGL()
116 appCore->setTimeZoneBias(-timezone+3600*daylight); in initializeGL()
117 appCore->setTimeZoneName(tzname[daylight?0:1]); in initializeGL()
119 appCore->tick(); in initializeGL()
131 appCore->setFaintest(KGlobal::config()->readDoubleNumEntry("FaintestVisible")); in initializeGL()
133 appCore->setHudDetail(KGlobal::config()->readNumEntry("HudDetail")); in initializeGL()
135 appCore->setTimeZoneBias(KGlobal::config()->readNumEntry("TimeZoneBias")); in initializeGL()
140 if (!appCore->getRenderer()->getGLContext()->renderPathSupported(GLContext::GLPath_Basic)) in initializeGL()
142 … if (!appCore->getRenderer()->getGLContext()->renderPathSupported(GLContext::GLPath_Multitexture)) in initializeGL()
144 if (!appCore->getRenderer()->getGLContext()->renderPathSupported(GLContext::GLPath_NvCombiner)) in initializeGL()
146 if (!appCore->getRenderer()->getGLContext()->renderPathSupported(GLContext::GLPath_DOT3_ARBVP)) in initializeGL()
148 …if (!appCore->getRenderer()->getGLContext()->renderPathSupported(GLContext::GLPath_NvCombiner_NvVP… in initializeGL()
150 …if (!appCore->getRenderer()->getGLContext()->renderPathSupported(GLContext::GLPath_NvCombiner_ARBV… in initializeGL()
152 if (!appCore->getRenderer()->getGLContext()->renderPathSupported(GLContext::GLPath_ARBFP_ARBVP)) in initializeGL()
154 if (!appCore->getRenderer()->getGLContext()->renderPathSupported(GLContext::GLPath_NV30)) in initializeGL()
156 if (!appCore->getRenderer()->getGLContext()->renderPathSupported(GLContext::GLPath_GLSL)) in initializeGL()
161 if (appCore->getRenderer()->getGLContext()->renderPathSupported(path)) { in initializeGL()
162 appCore->getRenderer()->getGLContext()->setRenderPath(path); in initializeGL()
166 switch (appCore->getRenderer()->getGLContext()->getRenderPath()) { in initializeGL()
199 appCore->setScreenDpi(pdm.logicalDpiY()); in initializeGL()
204 appCore->resize(w, h); in resizeGL()
225 appCore->mouseMove(x - lastX, y - lastY, buttons); in mouseMoveEvent()
227 appCore->mouseMove(x, y); in mouseMoveEvent()
239 appCore->mouseButtonDown(m->x(), m->y(), CelestiaCore::LeftButton); in mousePressEvent()
241 appCore->mouseButtonDown(m->x(), m->y(), CelestiaCore::MiddleButton); in mousePressEvent()
243 appCore->mouseButtonDown(m->x(), m->y(), CelestiaCore::RightButton); in mousePressEvent()
252 appCore->mouseButtonUp(m->x(), m->y(), CelestiaCore::LeftButton); in mouseReleaseEvent()
254 appCore->mouseButtonUp(m->x(), m->y(), CelestiaCore::MiddleButton); in mouseReleaseEvent()
256 appCore->mouseButtonUp(m->x(), m->y(), CelestiaCore::RightButton); in mouseReleaseEvent()
263 appCore->mouseWheel(-1.0f, 0); in wheelEvent()
267 appCore->mouseWheel(1.0f, 0); in wheelEvent()
387 appCore->keyDown(k, buttons); in handleSpecialKey()
389 appCore->keyUp(k); in handleSpecialKey()
404 appCore->charEntered('\033'); in keyPressEvent()
407 appCore->charEntered(CelestiaCore::Key_BackTab); in keyPressEvent()
414 appCore->charEntered(e->text().utf8().data()); in keyPressEvent()