comparison incomingdialog.h @ 125:63c2f3f61c79

* Add Incoming dialog and better layouts for dialogs generally
author Chris Cannam
date Mon, 29 Nov 2010 17:03:17 +0000
parents
children 8fd71f570884
comparison
equal deleted inserted replaced
124:1f27f71a7034 125:63c2f3f61c79
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
2
3 /*
4 EasyMercurial
5
6 Based on hgExplorer by Jari Korhonen
7 Copyright (c) 2010 Jari Korhonen
8 Copyright (c) 2010 Chris Cannam
9 Copyright (c) 2010 Queen Mary, University of London
10
11 This program is free software; you can redistribute it and/or
12 modify it under the terms of the GNU General Public License as
13 published by the Free Software Foundation; either version 2 of the
14 License, or (at your option) any later version. See the file
15 COPYING included with this distribution for more information.
16 */
17
18 #ifndef INCOMING_DIALOG_H
19 #define INCOMING_DIALOG_H
20
21 #include <QDialog>
22
23 class IncomingDialog : public QDialog
24 {
25 Q_OBJECT
26
27 public:
28 IncomingDialog(QWidget *parent, QString incoming);
29 };
30
31 #endif