mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Added the skeleton for the Download / Upload from Divelogs.de
Added the skeleton code for the Download / Upload from Divelogs. de webservice. Now I need to hoopup things from the .ui side and do the actual implementation of the code. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
This commit is contained in:
parent
06ba04ab78
commit
216f9212b9
2 changed files with 73 additions and 4 deletions
|
|
@ -36,6 +36,12 @@ void WebServices::hideUpload()
|
|||
ui.upload->hide();
|
||||
}
|
||||
|
||||
// #
|
||||
// #
|
||||
// # Subsurface Web Service Implementation.
|
||||
// #
|
||||
// #
|
||||
|
||||
SubsurfaceWebServices* SubsurfaceWebServices::instance()
|
||||
{
|
||||
static SubsurfaceWebServices *self = new SubsurfaceWebServices();
|
||||
|
|
@ -254,3 +260,49 @@ static bool merge_locations_into_dives(void)
|
|||
}
|
||||
return changed > 0;
|
||||
}
|
||||
|
||||
// #
|
||||
// #
|
||||
// # Divelogs DE Web Service Implementation.
|
||||
// #
|
||||
// #
|
||||
|
||||
DivelogsDeWebServices* DivelogsDeWebServices::instance()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
DivelogsDeWebServices::DivelogsDeWebServices(QWidget* parent, Qt::WindowFlags f): WebServices(parent, f)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void DivelogsDeWebServices::startUpload()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void DivelogsDeWebServices::startDownload()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void DivelogsDeWebServices::downloadFinished()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void DivelogsDeWebServices::setStatusText(int status)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void DivelogsDeWebServices::downloadError(QNetworkReply::NetworkError error)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void DivelogsDeWebServices::buttonClicked(QAbstractButton* button)
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue