Mercurial > hg > easyhg
annotate 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 |
rev | line source |
---|---|
Chris@125 | 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ |
Chris@125 | 2 |
Chris@125 | 3 /* |
Chris@125 | 4 EasyMercurial |
Chris@125 | 5 |
Chris@125 | 6 Based on hgExplorer by Jari Korhonen |
Chris@125 | 7 Copyright (c) 2010 Jari Korhonen |
Chris@125 | 8 Copyright (c) 2010 Chris Cannam |
Chris@125 | 9 Copyright (c) 2010 Queen Mary, University of London |
Chris@125 | 10 |
Chris@125 | 11 This program is free software; you can redistribute it and/or |
Chris@125 | 12 modify it under the terms of the GNU General Public License as |
Chris@125 | 13 published by the Free Software Foundation; either version 2 of the |
Chris@125 | 14 License, or (at your option) any later version. See the file |
Chris@125 | 15 COPYING included with this distribution for more information. |
Chris@125 | 16 */ |
Chris@125 | 17 |
Chris@125 | 18 #ifndef INCOMING_DIALOG_H |
Chris@125 | 19 #define INCOMING_DIALOG_H |
Chris@125 | 20 |
Chris@125 | 21 #include <QDialog> |
Chris@125 | 22 |
Chris@125 | 23 class IncomingDialog : public QDialog |
Chris@125 | 24 { |
Chris@125 | 25 Q_OBJECT |
Chris@125 | 26 |
Chris@125 | 27 public: |
Chris@125 | 28 IncomingDialog(QWidget *parent, QString incoming); |
Chris@125 | 29 }; |
Chris@125 | 30 |
Chris@125 | 31 #endif |