ignorelisteditor.ui
ignorelisttablewidget.ui
networksettings.ui
- synclogdialog.ui
settingsdialog.ui
sharedialog.ui
sharelinkwidget.ui
authenticationdialog.cpp
proxyauthhandler.cpp
proxyauthdialog.cpp
- synclogdialog.cpp
tooltipupdater.cpp
notificationconfirmjob.cpp
guiutility.cpp
#include "configfile.h"
#include "owncloudsetupwizard.h"
#include "accountmanager.h"
-#include "synclogdialog.h"
#if defined(BUILD_UPDATER)
#include "updater/updater.h"
GeneralSettings::~GeneralSettings()
{
delete _ui;
- delete _syncLogDialog;
}
QSize GeneralSettings::sizeHint() const
Ui::GeneralSettings *_ui;
QPointer<IgnoreListEditor> _ignoreEditor;
- QPointer<SyncLogDialog> _syncLogDialog;
bool _currentlyLoading = false;
};
+++ /dev/null
-/*
- * Copyright (C) by Roeland Jago Douma <roeland@famdouma.nl>
- * Copyright (C) 2015 by Klaas Freitag <freitag@owncloud.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
- * for more details.
- */
-
-#include "synclogdialog.h"
-#include "ui_synclogdialog.h"
-#include "theme.h"
-#include "syncresult.h"
-#include "configfile.h"
-#include "capabilities.h"
-
-#include "QProgressIndicator.h"
-
-#include <QPushButton>
-
-
-namespace OCC {
-
-SyncLogDialog::SyncLogDialog(QWidget *parent)
- : QDialog(parent)
- , _ui(new Ui::SyncLogDialog)
-{
- setObjectName("SyncLogDialog"); // required as group for saveGeometry call
-
- _ui->setupUi(this);
-
- QPushButton *closeButton = _ui->buttonBox->button(QDialogButtonBox::Close);
- if (closeButton) {
- connect(closeButton, &QAbstractButton::clicked, this, &QWidget::close);
- }
-}
-
-SyncLogDialog::~SyncLogDialog() = default;
-}
+++ /dev/null
-/*
- * Copyright (C) by Roeland Jago Douma <roeland@famdouma.nl>
- * Copyright (C) 2015 by Klaas Freitag <freitag@owncloud.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
- * for more details.
- */
-
-#ifndef SyncLogDialog_H
-#define SyncLogDialog_H
-
-#include <QDialog>
-
-namespace OCC {
-
-
-namespace Ui {
- class SyncLogDialog;
-}
-
-
-/**
- * @brief The SyncLogDialog class
- * @ingroup gui
- */
-class SyncLogDialog : public QDialog
-{
- Q_OBJECT
-
-public:
- explicit SyncLogDialog(QWidget *parent = nullptr);
- ~SyncLogDialog();
-
-private slots:
-
-private:
- Ui::SyncLogDialog *_ui;
-};
-}
-
-#endif // SyncLogDialog_H
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<ui version="4.0">
- <class>OCC::SyncLogDialog</class>
- <widget class="QDialog" name="OCC::SyncLogDialog">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>372</width>
- <height>247</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Synchronisation Log</string>
- </property>
- <layout class="QGridLayout" name="gridLayout">
- <item row="0" column="0">
- <layout class="QVBoxLayout" name="logWidgetLayout"/>
- </item>
- <item row="1" column="0">
- <widget class="QDialogButtonBox" name="buttonBox">
- <property name="sizePolicy">
- <sizepolicy hsizetype="MinimumExpanding" vsizetype="Minimum">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="standardButtons">
- <set>QDialogButtonBox::Close</set>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <layoutdefault spacing="6" margin="11"/>
- <resources/>
- <connections/>
-</ui>