Mercurial > hg > easyhg
annotate annotatedialog.h @ 365:1482f5b9f9dc feature_101
Add an explosion of menus and many keyboard shortcuts.
author | Chris Cannam |
---|---|
date | Fri, 18 Mar 2011 13:14:14 +0000 |
parents | acfe9390d5c6 |
children |
rev | line source |
---|---|
Chris@331 | 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ |
Chris@331 | 2 |
Chris@331 | 3 /* |
Chris@331 | 4 EasyMercurial |
Chris@331 | 5 |
Chris@331 | 6 Based on hgExplorer by Jari Korhonen |
Chris@331 | 7 Copyright (c) 2010 Jari Korhonen |
Chris@331 | 8 Copyright (c) 2011 Chris Cannam |
Chris@331 | 9 Copyright (c) 2011 Queen Mary, University of London |
Chris@331 | 10 |
Chris@331 | 11 This program is free software; you can redistribute it and/or |
Chris@331 | 12 modify it under the terms of the GNU General Public License as |
Chris@331 | 13 published by the Free Software Foundation; either version 2 of the |
Chris@331 | 14 License, or (at your option) any later version. See the file |
Chris@331 | 15 COPYING included with this distribution for more information. |
Chris@331 | 16 */ |
Chris@331 | 17 |
Chris@331 | 18 #ifndef ANNOTATE_DIALOG_H |
Chris@331 | 19 #define ANNOTATE_DIALOG_H |
Chris@331 | 20 |
Chris@331 | 21 #include <QDialog> |
Chris@331 | 22 |
Chris@331 | 23 class AnnotateDialog : public QDialog |
Chris@331 | 24 { |
Chris@331 | 25 Q_OBJECT |
Chris@331 | 26 |
Chris@331 | 27 public: |
Chris@331 | 28 AnnotateDialog(QWidget *parent, QString output); |
Chris@331 | 29 }; |
Chris@331 | 30 |
Chris@331 | 31 #endif |