Welcome to mirror list, hosted at ThFree Co, Russian Federation.

owncloudtheme.h « mirall « src - github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9ab83a9ab314d4c7e846daafc89a59dcabd6b0b0 (plain)
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
/*
 * Copyright (C) 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 OWNCLOUD_THEME_H
#define OWNCLOUD_THEME_H

#include "theme.h"

namespace Mirall {

class ownCloudTheme : public Theme
{
    Q_OBJECT
public:
    ownCloudTheme();

    QString configFileName() const Q_DECL_OVERRIDE;
    QString about() const Q_DECL_OVERRIDE;
    QPixmap splashScreen() const;

    QIcon   folderIcon( const QString& ) const;
    QIcon   trayFolderIcon( const QString& ) const Q_DECL_OVERRIDE;
    QIcon   applicationIcon() const Q_DECL_OVERRIDE;
    QString appName() const Q_DECL_OVERRIDE;
    QString appNameGUI() const Q_DECL_OVERRIDE;

    QVariant customMedia(CustomMediaType type) Q_DECL_OVERRIDE;
    QString helpUrl() const Q_DECL_OVERRIDE;

    QColor  wizardHeaderBackgroundColor() const Q_DECL_OVERRIDE;
    QColor  wizardHeaderTitleColor() const Q_DECL_OVERRIDE;
    QPixmap wizardHeaderLogo() const Q_DECL_OVERRIDE;
private:


};

}
#endif // OWNCLOUD_MIRALL_THEME_H