~saviq/qtubuntu/remove-content-hub-and-ual-gles

« back to all changes in this revision

Viewing changes to src/ubuntuappmenu/theme.h

  • Committer: Gerry Boland
  • Date: 2017-08-03 14:59:07 UTC
  • mfrom: (391.1.8 qtubuntu)
  • Revision ID: gerry.boland@canonical.com-20170803145907-w1vuhqxz2s6z001x
Merge papi-cleanup and fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 2016-2017 Canonical, Ltd.
3
 
 *
4
 
 * This program is free software: you can redistribute it and/or modify it under
5
 
 * the terms of the GNU Lesser General Public License version 3, as published by
6
 
 * the Free Software Foundation.
7
 
 *
8
 
 * This program is distributed in the hope that it will be useful, but WITHOUT
9
 
 * ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
10
 
 * SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11
 
 * Lesser General Public License for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU Lesser General Public License
14
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
 
 */
16
 
 
17
 
#ifndef UBUNTU_THEME_H
18
 
#define UBUNTU_THEME_H
19
 
 
20
 
#include "../shared/ubuntutheme.h"
21
 
 
22
 
class UbuntuAppMenuTheme : public UbuntuTheme
23
 
{
24
 
public:
25
 
    static const char* name;
26
 
    UbuntuAppMenuTheme();
27
 
    ~UbuntuAppMenuTheme() = default;
28
 
 
29
 
    // For the menus
30
 
    QPlatformMenuItem* createPlatformMenuItem() const override;
31
 
    QPlatformMenu* createPlatformMenu() const override;
32
 
    QPlatformMenuBar* createPlatformMenuBar() const override;
33
 
    QPlatformSystemTrayIcon *createPlatformSystemTrayIcon() const override;
34
 
};
35
 
 
36
 
#endif // UBUNTU_THEME_H