summaryrefslogtreecommitdiffstats
path: root/src/libgui/main_global.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-24 18:42:24 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-24 18:42:24 +0000
commitf508189682b6fba62e08feeb1596f682bad5fff9 (patch)
tree28aeb0e6c19386c385c1ce5edf8a92c1bca15281 /src/libgui/main_global.h
downloadpiklab-f508189682b6fba62e08feeb1596f682bad5fff9.tar.gz
piklab-f508189682b6fba62e08feeb1596f682bad5fff9.zip
Added KDE3 version of PikLab
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/piklab@1095639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/libgui/main_global.h')
-rw-r--r--src/libgui/main_global.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/src/libgui/main_global.h b/src/libgui/main_global.h
new file mode 100644
index 0000000..020253e
--- /dev/null
+++ b/src/libgui/main_global.h
@@ -0,0 +1,70 @@
+/***************************************************************************
+ * Copyright (C) 2005-2006 Nicolas Hadacek <hadacek@kde.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. *
+ ***************************************************************************/
+#ifndef MAIN_GLOBAL_H
+#define MAIN_GLOBAL_H
+
+#include <qstring.h>
+#include <qpopupmenu.h>
+#include <kstdaction.h>
+
+#include "progs/base/generic_prog.h"
+
+class EditorManager;
+namespace ProjectManager { class View; }
+class Editor;
+class Project;
+namespace Compile { class LogWidget; class Manager; }
+namespace Register { class List; class WatchView; }
+namespace Breakpoint { class View; }
+class MainWindow;
+namespace Programmer { class Group; class Base; }
+namespace Device { class Data; }
+namespace Tool { class Group; }
+class ConsoleView;
+
+class Main
+{
+public:
+ enum State { Idle, Compiling, Programming, Closing };
+ static void setState(State state);
+ static State state() { return _state; }
+
+ static MainWindow &toplevel() { return *_toplevel; }
+ static const Programmer::Group &programmerGroup();
+ static Programmer::Base *programmer();
+ static Programmer::State programmerState();
+ static KAction *action(const char *name);
+ static KAction *action(KStdAction::StdAction action);
+ static QPopupMenu &popup(const char *name);
+ static EditorManager &editorManager() { return *_editorManager; }
+ static Editor *currentEditor();
+ static QString device();
+ static const Device::Data *deviceData();
+ static Breakpoint::View &breakpointsView() { return *_breakpointsView; }
+ static ProjectManager::View &projectManager() { return *_projectManager; }
+ static Project *project();
+ static Register::WatchView &watchView() { return *_watchView; }
+ static Compile::LogWidget &compileLog() { return *_compileLog; }
+ static const Tool::Group &toolGroup();
+
+private:
+ static State _state;
+ static MainWindow *_toplevel;
+ static EditorManager *_editorManager;
+ static ProjectManager::View *_projectManager;
+ static Breakpoint::View *_breakpointsView;
+ static Register::WatchView *_watchView;
+ static Compile::LogWidget *_compileLog;
+ static Compile::Manager *_compileManager;
+ static ConsoleView *_consoleView;
+
+ friend class MainWindow;
+};
+
+#endif