File indexing completed on 2024-11-10 08:11:56
0001 /*************************************************************************** 0002 * Copyright (C) 2005 by David Saxton * 0003 * david@bluehaze.org * 0004 * * 0005 * This program is free software; you can redistribute it and/or modify * 0006 * it under the terms of the GNU General Public License as published by * 0007 * the Free Software Foundation; either version 2 of the License, or * 0008 * (at your option) any later version. * 0009 ***************************************************************************/ 0010 0011 #ifndef FLOWCODEVIEW_H 0012 #define FLOWCODEVIEW_H 0013 0014 #include <icnview.h> 0015 0016 class FlowCodeDocument; 0017 0018 /** 0019 @author David Saxton 0020 */ 0021 class FlowCodeView : public ICNView 0022 { 0023 Q_OBJECT 0024 public: 0025 FlowCodeView(FlowCodeDocument *flowCodeDocument, ViewContainer *viewContainer, uint viewAreaId); 0026 ~FlowCodeView() override; 0027 0028 protected: 0029 void dragEnterEvent(QDragEnterEvent *e) override; 0030 0031 FlowCodeDocument *p_flowCodeDocument; 0032 }; 0033 0034 #endif