~ubuntu-branches/ubuntu/trusty/grantlee/trusty

« back to all changes in this revision

Viewing changes to examples/dbus-chat/chat.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-12-07 08:09:15 UTC
  • Revision ID: james.westby@ubuntu.com-20101207080915-ee6wcs8nv625su4b
Tags: 0.1.7-0ubuntu2
* Backport upstream commits 128272d4f65d7f02372cb606c148817c2f15a78d and
  5a71ed118f6fae67a4a26ab867ab7575e5a3e34c to moderate test requirements so
  it will build on armel
* Include missing grantlee_i18ntags.so and grantlee_mutabletags.so in
  libgrantlee-core0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
 
4
** Contact: Qt Software Information (qt-info@nokia.com)
 
5
**
 
6
** This file is part of the examples of the Qt Toolkit.
 
7
**
 
8
** $QT_BEGIN_LICENSE:LGPL$
 
9
** No Commercial Usage
 
10
** This file contains pre-release code and may not be distributed.
 
11
** You may use this file in accordance with the terms and conditions
 
12
** contained in the either Technology Preview License Agreement or the
 
13
** Beta Release License Agreement.
 
14
**
 
15
** GNU Lesser General Public License Usage
 
16
** Alternatively, this file may be used under the terms of the GNU Lesser
 
17
** General Public License version 2.1 as published by the Free Software
 
18
** Foundation and appearing in the file LICENSE.LGPL included in the
 
19
** packaging of this file.  Please review the following information to
 
20
** ensure the GNU Lesser General Public License version 2.1 requirements
 
21
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 
22
**
 
23
** In addition, as a special exception, Nokia gives you certain
 
24
** additional rights. These rights are described in the Nokia Qt LGPL
 
25
** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
 
26
** package.
 
27
**
 
28
** GNU General Public License Usage
 
29
** Alternatively, this file may be used under the terms of the GNU
 
30
** General Public License version 3.0 as published by the Free Software
 
31
** Foundation and appearing in the file LICENSE.GPL included in the
 
32
** packaging of this file.  Please review the following information to
 
33
** ensure the GNU General Public License version 3.0 requirements will be
 
34
** met: http://www.gnu.org/copyleft/gpl.html.
 
35
**
 
36
** If you are unsure which license is appropriate for your use, please
 
37
** contact the sales department at qt-sales@nokia.com.
 
38
** $QT_END_LICENSE$
 
39
**
 
40
****************************************************************************/
 
41
 
 
42
#ifndef CHAT_H
 
43
#define CHAT_H
 
44
 
 
45
#include <QtCore/QStringList>
 
46
#include <QtDBus/QtDBus>
 
47
#include "ui_chatmainwindow.h"
 
48
#include "ui_chatsetnickname.h"
 
49
 
 
50
#include <grantlee/mutabletemplate.h>
 
51
 
 
52
class ChatItem;
 
53
 
 
54
namespace Grantlee
 
55
{
 
56
class Engine;
 
57
}
 
58
 
 
59
class ChatMainWindow: public QMainWindow, Ui::ChatMainWindow
 
60
{
 
61
    Q_OBJECT
 
62
    QString m_nickname;
 
63
    QStringList m_messages;
 
64
    QVariantList m_chatItems;
 
65
    QVariantHash m_nameColours;
 
66
    QStringList m_availableColours;
 
67
    Grantlee::MutableTemplate m_template;
 
68
public:
 
69
    ChatMainWindow();
 
70
    ~ChatMainWindow();
 
71
 
 
72
    void rebuildHistory();
 
73
    void addItem(ChatItem *item);
 
74
    void addColour(const QString &nickname, const QString &colour);
 
75
 
 
76
Q_SIGNALS:
 
77
    void message(const QString &nickname, const QString &text);
 
78
    void action(const QString &nickname, const QString &text);
 
79
 
 
80
private Q_SLOTS:
 
81
    void messageSlot(const QString &nickname, const QString &text);
 
82
    void actionSlot(const QString &nickname, const QString &text);
 
83
    void textChangedSlot(const QString &newText);
 
84
    void sendClickedSlot();
 
85
    void changeNickname();
 
86
    void changeTheme(const QString &themeName);
 
87
    void aboutQt();
 
88
    void exiting();
 
89
 
 
90
private:
 
91
  Grantlee::Engine *m_engine;
 
92
};
 
93
 
 
94
class NicknameDialog: public QDialog, public Ui::NicknameDialog
 
95
{
 
96
    Q_OBJECT
 
97
public:
 
98
    NicknameDialog(QWidget *parent = 0);
 
99
};
 
100
 
 
101
#endif