summaryrefslogtreecommitdiffstats
path: root/parts/classview/classviewpart.h
diff options
context:
space:
mode:
Diffstat (limited to 'parts/classview/classviewpart.h')
-rw-r--r--parts/classview/classviewpart.h99
1 files changed, 99 insertions, 0 deletions
diff --git a/parts/classview/classviewpart.h b/parts/classview/classviewpart.h
new file mode 100644
index 00000000..d10553e4
--- /dev/null
+++ b/parts/classview/classviewpart.h
@@ -0,0 +1,99 @@
+/*
+ * Copyright (C) 2003 Roberto Raggi (roberto@kdevelop.org)
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; see the file COPYING.LIB. If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *
+ */
+
+#ifndef __KDEVPART_CLASSVIEW_H__
+#define __KDEVPART_CLASSVIEW_H__
+
+#include "kdevlanguagesupport.h"
+#include "viewcombos.h"
+
+#include <qguardedptr.h>
+#include <qmap.h>
+
+#include <kdevplugin.h>
+
+#include <codemodel.h>
+#include <codebrowserfrontend.h>
+
+using namespace Extensions;
+
+namespace KParts { class Part; }
+namespace KTextEditor
+{
+ class Document;
+ class View;
+ class EditInterface;
+ class SelectionInterface;
+ class ViewCursorInterface;
+}
+
+
+class ClassViewWidget;
+class KListViewAction;
+class QListViewItem;
+class KToolBarPopupAction;
+class NamespaceItem;
+class Navigator;
+class HierarchyDialog;
+class ClassViewPart : public Extensions::KDevCodeBrowserFrontend
+{
+ Q_OBJECT
+public:
+ ClassViewPart(QObject *parent, const char *name, const QStringList &);
+ virtual ~ClassViewPart();
+
+ bool langHasFeature(KDevLanguageSupport::Features feature);
+
+ KListViewAction *m_functionsnav;
+ Navigator *navigator;
+
+ inline ClassViewWidget* widget() {
+ return &( *m_widget );
+ }
+
+ virtual bool jumpedToItem( ItemDom item );
+
+private slots:
+ void slotProjectOpened();
+ void slotProjectClosed();
+ void graphicalClassView();
+ void refresh();
+ void slotFocusNavbar();
+
+ void activePartChanged(KParts::Part*);
+
+private:
+ void setupActions();
+
+ QGuardedPtr<ClassViewWidget> m_widget;
+
+ QString m_activeFileName;
+ KTextEditor::Document* m_activeDocument;
+ KTextEditor::View* m_activeView;
+ KTextEditor::SelectionInterface* m_activeSelection;
+ KTextEditor::EditInterface* m_activeEditor;
+ KTextEditor::ViewCursorInterface* m_activeViewCursor;
+
+ HierarchyDialog* m_hierarchyDlg;
+ friend class Navigator;
+};
+
+
+#endif