Fawkes API Fawkes Development Version
eclipse_debugger.h
1
2/***************************************************************************
3 * eclipse_debugger.h - Eclipse Debugger Tool
4 *
5 * Created: Mon Feb 25 14:22:00 2013
6 * Copyright 2013 Gesche Gierse
7 *
8 ****************************************************************************/
9
10/* This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Library General Public License for more details.
19 *
20 * Read the full text in the LICENSE.GPL file in the doc directory.
21 */
22
23#ifndef _TOOLS_ECLIPSEDEBUGGER_ECLIPSEDEBUGGER_H_
24#define _TOOLS_ECLIPSEDEBUGGER_ECLIPSEDEBUGGER_H_
25
26#include <gui_utils/connection_dispatcher.h>
27#include <interfaces/EclipseDebuggerInterface.h>
28
29#include <gtkmm.h>
30
31namespace fawkes {
32class BlackBoard;
33class InterfaceDispatcher;
34class LogView;
35} // namespace fawkes
36
37class EclipseDebugger : public Gtk::Window
38{
39public:
40 EclipseDebugger(BaseObjectType *cobject, const Glib::RefPtr<Gtk::Builder> &builder);
42
43private:
44 void establish_connection();
45 void on_connect();
46 void on_disconnect();
47 void close_bb();
49
51 fawkes::ConnectionDispatcher connection_dispatcher;
52};
53
54#endif
ECLiPSe-clp Debugger GUI Wrapper.
~EclipseDebugger()
Destructor.
EclipseDebugger(BaseObjectType *cobject, const Glib::RefPtr< Gtk::Builder > &builder)
Constructor.
The BlackBoard abstract class.
Definition: blackboard.h:46
Watches network client events and dispatches them as signals.
EclipseDebuggerInterface Fawkes BlackBoard Interface.
Fawkes library namespace.