1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
/*
SPDX-FileCopyrightText: 2019 David Barchiesi <david@barchie.si>
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
#pragma once
#include "ui_mainwindow.h"
#include <QMainWindow>
#include "core/types.h"
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
private Q_SLOTS:
/**
* Retrieves tokens from Google that we will use to authenticate
* further requests
*/
void authenticate();
/**
* Creates the Team Drive with name in newTeamdriveEdit
*/
void createTeamdrive();
/**
* Rename the selected Team Drive with name in renameTeamdriveEdit
*/
void renameSelectedTeamdrive();
/**
* Retrieves list of all teamdrive from user's Google teamdrive
* addressbook
*/
void fetchTeamdriveList();
/**
* Deletes the selected Team Drive
*/
void deleteSelectedTeamdrive();
/**
* A specific team drive in teamdrive list has been selected. Sends a request
* to Google to retrieve the team drive file list.
*/
void teamdriveSelected();
/**
* A specific item in the teamdrive list has been selected. Sends a request
* to Google to retrieve full details about the specific file
*/
void teamdriveItemSelected();
private:
Ui::MainWindow ui;
KGAPI2::AccountPtr m_account;
};
|