~bregma/+junk/libertine

« back to all changes in this revision

Viewing changes to libertine/qml/AppAddView.qml

  • Committer: Stephen M. Webb
  • Date: 2015-05-19 15:57:28 UTC
  • Revision ID: stephen.webb@canonical.com-20150519155728-8f1mk4hvj1f34tb6
roughed-in the Container Apps view

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * @file AppAddView.qml
 
3
 * @brief Libertine app add view
 
4
 */
 
5
/*
 
6
 * Copyright 2015 Canonical Ltd
 
7
 *
 
8
 * Libertine is free software: you can redistribute it and/or modify it under
 
9
 * the terms of the GNU General Public License, version 3, as published by the
 
10
 * Free Software Foundation.
 
11
 *
 
12
 * Libertine is distributed in the hope that it will be useful, but WITHOUT ANY
 
13
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 
14
 * A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
import QtQuick 2.0
 
20
import Ubuntu.Components 1.1
 
21
 
 
22
 
 
23
Page {
 
24
    id: appAddView
 
25
    title: i18n.tr("Install Apps")
 
26
 
 
27
    head.actions: [
 
28
        Action {
 
29
            iconName: "search"
 
30
            onTriggered: print("search")
 
31
        }
 
32
    ]
 
33
}