~gerboland/qtubuntu/fix_1351024

« back to all changes in this revision

Viewing changes to src/platforms/ubuntu/ubuntucommon/integration.h

  • Committer: CI bot
  • Author(s): Gerry Boland, Daniel d'Andrada
  • Date: 2014-07-28 02:37:08 UTC
  • mfrom: (231.1.14 ubuntumirclient-only)
  • Revision ID: ps-jenkins@lists.canonical.com-20140728023708-iv11mcwrd0pzjv0c
Major refactor: remove SurfaceFlinger & Mir in-server-process-client support, flatten class hierarchy. Only Mir client QPA remains


 
Approved by: Michael Terry, Ricardo Mendoza

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// This file is part of QtUbuntu, a set of Qt components for Ubuntu.
2
 
// Copyright © 2013 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
 
#ifndef QUBUNTUINTEGRATION_H
17
 
#define QUBUNTUINTEGRATION_H
18
 
 
19
 
#include "base/integration.h"
20
 
#include "screen.h"
21
 
#include <ubuntu/application/instance.h>
22
 
#include <ubuntu/application/ui/session.h>
23
 
 
24
 
class QUbuntuInputAdaptorFactory;
25
 
class QUbuntuInput;
26
 
 
27
 
class QUbuntuIntegration : public QUbuntuBaseIntegration {
28
 
 public:
29
 
  QUbuntuIntegration(QUbuntuInputAdaptorFactory* input_factory);
30
 
  ~QUbuntuIntegration();
31
 
 
32
 
  // QPlatformIntegration methods.
33
 
  QPlatformWindow* createPlatformWindow(QWindow* window) const;
34
 
  QPlatformWindow* createPlatformWindow(QWindow* window);
35
 
  QPlatformInputContext* inputContext() const { return inputContext_; }
36
 
  QPlatformClipboard* clipboard() const { return clipboard_; }
37
 
  QUbuntuScreen* screen() const { return screen_; }
38
 
 
39
 
 private:
40
 
  int argc_;
41
 
  char** argv_;
42
 
  QUbuntuScreen* screen_;
43
 
  QUbuntuInput* input_;
44
 
  QPlatformInputContext* inputContext_;
45
 
  QPlatformClipboard* clipboard_;
46
 
  bool isShell_;
47
 
 
48
 
  UApplicationOptions* options_;
49
 
  UApplicationDescription* desc_;
50
 
  UApplicationInstance* instance_;
51
 
  UAUiSessionProperties* props_;
52
 
  UAUiSession* session_;
53
 
};
54
 
 
55
 
#endif  // QUBUNTUINTEGRATION_H