~feng-kylin/youker-assistant/youker-assistant

« back to all changes in this revision

Viewing changes to src/contentfield.h

  • Committer: kobe
  • Date: 2015-02-13 07:37:10 UTC
  • Revision ID: xiangli@ubuntukylin.com-20150213073710-0jyp02ilyi5njj10
Qt Version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 2013 ~ 2014 National University of Defense Technology(NUDT) & Kylin Ltd.
3
 
 * Author: Kobe Lee
4
 
 *
5
 
 * This program is free software; you can redistribute it and/or modify
6
 
 * it under the terms of the GNU General Public License as published by
7
 
 * the Free Software Foundation; version 3.
8
 
 *
9
 
 * This program is distributed in the hope that it will be useful,
10
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
 * GNU General Public License for more details.
13
 
 *
14
 
 * You should have received a copy of the GNU General Public License
15
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
 
 */
17
 
 
18
 
#ifndef CONTENTFIELD_H
19
 
#define CONTENTFIELD_H
20
 
 
21
 
#include <QtGui/QApplication>
22
 
#include <QStackedWidget>
23
 
#include <QDeclarativeView>
24
 
#include <QDeclarativeContext>
25
 
#include <QDeclarativeEngine>
26
 
#include <QDir>
27
 
 
28
 
class ContentField : public QStackedWidget
29
 
{
30
 
    Q_OBJECT
31
 
public:
32
 
    explicit ContentField(QWidget *parent = 0);
33
 
    ~ContentField();
34
 
    void setup();
35
 
 
36
 
private:
37
 
    QDeclarativeView *view;
38
 
    QStringList strlist;
39
 
 
40
 
public slots:
41
 
    void DoNavigate(int index);
42
 
 
43
 
signals:
44
 
    void activePushStack(int index);
45
 
};
46
 
#endif // CONTENTFIELD_H