Home
last modified time | relevance | path

Searched refs:newTelescope (Results 1 – 23 of 23) sorted by relevance

/dports/astro/stellarium/stellarium-0.21.3/plugins/TelescopeControl/src/
H A DTelescopeClient.cpp90 TelescopeClient * newTelescope = Q_NULLPTR; in create() local
95 newTelescope = new TelescopeClientDummy(name, params); in create()
99 newTelescope = new TelescopeTCP(name, params, eq); in create()
103 newTelescope = new TelescopeClientJsonRts2(name, params, eq); in create()
107 newTelescope= new TelescopeClientDirectLx200(name, params, eq); in create()
115 newTelescope = new TelescopeClientINDI(name, params); in create()
120 newTelescope = new TelescopeClientASCOM(name, params, eq); in create()
128 if (newTelescope && !newTelescope->isInitialized()) in create()
131 delete newTelescope; in create()
132 newTelescope = Q_NULLPTR; in create()
[all …]
H A DTelescopeControl.cpp1401 TelescopeClient* newTelescope = TelescopeClient::create(initString); in startClientAtSlot() local
1402 if (newTelescope) in startClientAtSlot()
1407 newTelescope->addOcular(circles[i]); in startClientAtSlot()
1409 telescopeClients.insert(slotNumber, TelescopeClientP(newTelescope)); in startClientAtSlot()
/dports/astro/kstars/kstars-3.5.6/kstars/kstarslite/qml/modules/menus/
H A DContextMenu.qml96 telescopeCol.telescope = newTelescope
97 telescopeName.text = newTelescope.deviceName
/dports/astro/kstars/kstars-3.5.6/kstars/indi/
H A Dindilistener.h84 void newTelescope(ISD::GDInterface *);
H A Dindilistener.cpp79 connect(_INDIListener, &INDIListener::newTelescope, in Instance()
260 emit newTelescope(oneDevice); in registerProperty() local
H A Dindidriver.h164 void newTelescope();
H A Dclientmanagerlite.h226 void telescopeAdded(TelescopeLite *newTelescope);
H A Ddevicemanager.cpp409 …connect(dp->stdDev, SIGNAL(newTelescope()), parent->ksw->indiDriver(), SLOT(newTelescopeDiscovered… in addDevice()
H A Dindidriver.cpp374 emit newTelescope(); in newTelescopeDiscovered()
/dports/astro/kstars/kstars-3.5.6/kstars/
H A Dskymaplite.cpp126 [this](TelescopeLite * newTelescope) in SkyMapLite()
128 this->m_newTelescopes.append(newTelescope->getDevice()); in SkyMapLite()
131 [this](TelescopeLite * newTelescope) in SkyMapLite() argument
133 this->m_delTelescopes.append(newTelescope->getDevice()); in SkyMapLite()
/dports/astro/kstars/kstars-3.5.6/kstars/kstarslite/qml/indi/modules/
H A DMotionControl.qml32 telescope = newTelescope
/dports/astro/kstars/kstars-3.5.6/kstars/ekos/mount/
H A Dmount.h78 void setTelescope(ISD::GDInterface *newTelescope);
H A Dmount.cpp226 void Mount::setTelescope(ISD::GDInterface *newTelescope) in setTelescope() argument
228 if (newTelescope == currentTelescope) in setTelescope()
239 currentTelescope = static_cast<ISD::Telescope *>(newTelescope); in setTelescope()
/dports/astro/kstars/kstars-3.5.6/kstars/ekos/guide/
H A Dguide.h195 void setTelescope(ISD::GDInterface *newTelescope);
H A Dguide.cpp425 void Guide::setTelescope(ISD::GDInterface *newTelescope) in setTelescope() argument
427 currentTelescope = dynamic_cast<ISD::Telescope *>(newTelescope); in setTelescope()
/dports/astro/kstars/kstars-3.5.6/kstars/ekos/align/
H A Dalign.h225 void setTelescope(ISD::GDInterface *newTelescope);
H A Dalign.cpp860 void Align::setTelescope(ISD::GDInterface *newTelescope) in setTelescope() argument
862 currentTelescope = static_cast<ISD::Telescope *>(newTelescope); in setTelescope()
/dports/astro/kstars/kstars-3.5.6/kstars/kstarslite/qml/dialogs/
H A DDetailsDialog.qml121 controlsObj.telescope = newTelescope
/dports/astro/kstars/kstars-3.5.6/kstars/ekos/capture/
H A Dcapture.h330 void setTelescope(ISD::GDInterface *newTelescope);
H A Dcapture.cpp3981 void Capture::setTelescope(ISD::GDInterface * newTelescope) in setTelescope() argument
3983 currentTelescope = static_cast<ISD::Telescope *>(newTelescope); in setTelescope()
/dports/astro/stellarium/stellarium-0.21.3/plugins/Oculars/src/
H A DOculars.cpp541 Telescope *newTelescope = Telescope::telescopeFromSettings(settings, index); in init() local
542 if (newTelescope != Q_NULLPTR) in init()
544 telescopes.append(newTelescope); in init()
/dports/astro/kstars/kstars-3.5.6/kstars/fitsviewer/
H A Dfitsviewer.cpp75 …connect(INDIListener::Instance(), SIGNAL(newTelescope(ISD::GDInterface*)), this, SLOT(updateWCSFun… in FITSViewer()
/dports/astro/kstars/kstars-3.5.6/kstars/ekos/
H A Dmanager.cpp838 …connect(INDIListener::Instance(), &INDIListener::newTelescope, this, &Ekos::Manager::setTelescope); in start()