nbtab.h
author hegyi
Mon, 02 Oct 2006 19:00:23 +0000
changeset 158 aa50a64b3a6e
parent 156 c5cdf6690cdf
child 160 14a76109b561
permissions -rw-r--r--
Two redundant lines were removed.
hegyi@96
     1
// -*- C++ -*- //
hegyi@96
     2
hegyi@96
     3
#ifndef NBTAB_H
hegyi@96
     4
#define NBTAB_H
hegyi@96
     5
hegyi@96
     6
class NoteBookTab;
hegyi@96
     7
hegyi@96
     8
#include "mapstorage.h"
hegyi@96
     9
#include "map_win.h"
hegyi@96
    10
#include "graph_displayer_canvas.h"
hegyi@96
    11
#include <libgnomecanvasmm.h>
hegyi@96
    12
#include <libgnomecanvasmm/polygon.h>
hegyi@96
    13
hegyi@121
    14
///One tab in the Notebook that is placed in the main window (\ref MainWin).
hegyi@121
    15
hegyi@121
    16
///One graph and all of its accessories like maps are assigned to one tab in the notebook.
hegyi@121
    17
///\ref NoteBookTab is responsible for the user defined display of the graph: view can be
hegyi@121
    18
///set by visualized maps, therefore \ref NoteBookTab must provide an interface to set the
hegyi@121
    19
///view of graph. This is \ref Mapwin window.
hegyi@121
    20
///
hegyi@121
    21
///\ref NoteBookTab is also
hegyi@121
    22
///responsible for modify the graph if it is
hegyi@121
    23
///requested. Therefore it is responsible for translating user events to modifications to
hegyi@121
    24
///do on graph, like node/edge addition/deletion, map modification, addition and so on.
hegyi@121
    25
///
hegyi@121
    26
///To be able to solve these tasks the help of \ref MainWin is also needed, for example to
hegyi@121
    27
///know which editor-tool is active at the moment. Therefore \ref MainWin knows \ref NoteBookTab.
hegyi@121
    28
///
hegyi@121
    29
///Some information in the other direction is needed as well: for example when new map creation is requested for this tab
hegyi@121
    30
///\ref NoteBookTab must ask \ref MainWin to pop-up a \ref NewMapWin. Communication in this direction is realized by signals
hegyi@121
    31
///therefore \ref NoteBookTab does not know \ref MainWin at all, but in this way it is not necessary.
hegyi@96
    32
class NoteBookTab : public Gtk::VBox
hegyi@96
    33
{
hegyi@96
    34
public:
hegyi@121
    35
  
hegyi@121
    36
  ///Constructor of \ref NoteBookTab
hegyi@121
    37
hegyi@121
    38
  ///It initiates the \re GraphDisplayerCanvas, on which the graph will be drawn
hegyi@121
    39
  ///Signals of \ref MapStorage will be bound to the appropriate callback functions here.
hegyi@96
    40
  NoteBookTab();
hegyi@96
    41
  
hegyi@121
    42
  ///Maps assigned to the graph displayed in this \ref NoteBookTab of notebook.
hegyi@96
    43
  MapStorage mapstorage;
hegyi@96
    44
    
hegyi@121
    45
  ///Title changement indicator.
hegyi@121
    46
hegyi@121
    47
  ///If graph is loaded from disk or saved to disk or changed its name somehow
hegyi@121
    48
  ///this signal will be emit to let
hegyi@121
    49
  ///\ref MainWin know that it has to modify the title of the main window.
hegyi@121
    50
  ///It contains the new title.
hegyi@96
    51
  sigc::signal<void, std::string> signal_title;
hegyi@96
    52
hegyi@121
    53
  ///Returns \ref signal_title to be the caller able to connect it to a callback function.
hegyi@96
    54
  sigc::signal<void, std::string> signal_title_ch();
hegyi@96
    55
hegyi@121
    56
  ///Indicates that new map window should be popped up.
hegyi@121
    57
hegyi@121
    58
  ///\ref NoteBookTab can ask \ref MainWin to pop up a \ref NweMapWin ny emitting this signal.
hegyi@121
    59
  ///The signal contains whether an edgemap or a nodemap should be popped up. \ref NewMapWin
hegyi@121
    60
  ///is not popped up by \ref NoteBookTab, because not only \ref NoteBookTab needs \ref NewMapWin,
hegyi@121
    61
  ///but for example \ref MainWin and \ref AlgoWin s as well.
hegyi@96
    62
  sigc::signal<void, NoteBookTab *, bool> signal_newmap;
hegyi@96
    63
hegyi@121
    64
  ///Returns \ref signal_newmap to be the caller able to connect it to a callback function.
hegyi@96
    65
  sigc::signal<void, NoteBookTab *, bool> signal_newmap_needed();
hegyi@96
    66
hegyi@121
    67
  ///Loads the given file.
hegyi@121
    68
hegyi@121
    69
  ///The given file will be load in the \ref MapStorage and afeter that
hegyi@121
    70
  ///\ref GraphDisplayerCanvas will be requested to display the graph.
hegyi@121
    71
  ///\ref GraphDisplayer will get datas from the recently set \ref MapStorage.
hegyi@96
    72
  void readFile(const std::string &);
hegyi@96
    73
    
hegyi@96
    74
  ///The graph will be drawn on this \ref GraphDisplayerCanvas
hegyi@96
    75
  GraphDisplayerCanvas * gd_canvas;
hegyi@96
    76
hegyi@121
    77
  ///Indicates whether the \ref MapWin is opened or not. See \ref mapwin.
hegyi@96
    78
  bool mapwinexists;
hegyi@96
    79
hegyi@121
    80
  ///Address of the only \ref MapWin that the \ref NoteBookTab can open.
hegyi@121
    81
hegyi@121
    82
  ///Only one of this window can be opened at the same time (\ref mapwinexists), 
hegyi@121
    83
  ///because there is no need for more, one per tab is enough.
hegyi@121
    84
  ///There won1t be benefit of more than one, but it would be
hegyi@121
    85
  ///more complicated to synchronize them.
hegyi@96
    86
  MapWin * mapwin;
hegyi@96
    87
    
hegyi@96
    88
public:
hegyi@96
    89
  ///Callback for 'FileNew' action.
hegyi@96
    90
  virtual void newFile();
hegyi@96
    91
  ///Callback for 'FileOpen' action.
hegyi@96
    92
  virtual void openFile();
hegyi@96
    93
  ///Callback for 'FileSave' action.
hegyi@96
    94
  virtual void saveFile();
hegyi@96
    95
  ///Callback for 'FileSaveAs' action.
hegyi@96
    96
  virtual void saveFileAs();
hegyi@96
    97
  ///Callback for 'Close' action.
hegyi@96
    98
  virtual void close();
hegyi@96
    99
hegyi@121
   100
  ///Handles changement of view of graph.
hegyi@96
   101
hegyi@121
   102
  ///If the user changes the map to show by a property to a nother in \ref MapWin,
hegyi@121
   103
  ///\ref MapWin will call this function. This function will registrate in \ref MapStorage
hegyi@121
   104
  ///the new map to display by the changed property. After that \ref MapStorage will
hegyi@121
   105
  ///emits a signal that will be forwarded to \ref GraphDisplayerCanvas to update the
hegyi@121
   106
  ///appropriate parts of graph.
hegyi@121
   107
  ///\param itiesedge whether the changed property is edge property or node property
hegyi@121
   108
  ///\param prop id of property, see all_include.h
hegyi@121
   109
  ///\param mapname name of the recently selected map
hegyi@121
   110
  void propertyChange(bool itisedge, int prop, std::string mapname);
hegyi@96
   111
hegyi@121
   112
  ///Emits a signal that request \ref MainWin to pop up \ref NewMapWin
hegyi@96
   113
hegyi@121
   114
  ///This function is called by \ref MapWin.
hegyi@121
   115
  ///\param itisedge whether the new map should be an edgemap or a nodemap.
hegyi@121
   116
  void popupNewMapWin(bool itisedge);
hegyi@121
   117
hegyi@121
   118
  ///Returns the actually selected edgemap to visualize by the given property.
hegyi@121
   119
hegyi@121
   120
  ///\ref MapWin calls this function, beacuse it does not know \ref MapStorage.
hegyi@121
   121
  ///\param prop property to inquire.
hegyi@121
   122
  std::string getActiveEdgeMap(int prop);
hegyi@121
   123
hegyi@121
   124
  ///Returns the actually selected nodemap to visualize by the given property.
hegyi@121
   125
hegyi@121
   126
  ///\ref MapWin calls this function, beacuse it does not know \ref MapStorage.
hegyi@121
   127
  ///\param prop property to inquire.
hegyi@121
   128
  std::string getActiveNodeMap(int prop);
hegyi@121
   129
hegyi@121
   130
  ///Registers recently created edgemap in \ref MapWin.
hegyi@121
   131
hegyi@121
   132
  ///After creation of new map \ref MapStorage emits a signal.
hegyi@121
   133
  ///This signal is bound to this callback function, that will call
hegyi@121
   134
  ///a function with the same name and same parameterin \ref MapWin.
hegyi@121
   135
  ///This call-forwarder function is needed, because \ref Mapstorage does not know \ref MapWin
hegyi@121
   136
  ///\param mapname name of new map
hegyi@121
   137
  void registerNewEdgeMap(std::string mapname);
hegyi@121
   138
hegyi@121
   139
  ///Registers recently created nodemap in \ref MapWin.
hegyi@121
   140
hegyi@121
   141
  ///After creation of new map \ref MapStorage emits a signal.
hegyi@121
   142
  ///This signal is bound to this callback function, that will call
hegyi@121
   143
  ///a function with the same name and same parameter in \ref MapWin.
hegyi@121
   144
  ///This call-forwarder function is needed, because \ref Mapstorage does not know \ref MapWin
hegyi@121
   145
  ///\param mapname name of new map
hegyi@121
   146
  void registerNewNodeMap(std::string mapname);
hegyi@121
   147
hegyi@121
   148
  ///Pops up and registrates the \ref MapWin of \ref NoteBookTab.
hegyi@121
   149
  
hegyi@121
   150
  ///See also
hegyi@121
   151
  ///\ref mapwin.
hegyi@96
   152
  void createMapWin(std::string);
hegyi@121
   153
hegyi@121
   154
  ///Closes and deregistrates the \ref MapWin of \ref NoteBookTab.
hegyi@121
   155
  
hegyi@121
   156
  ///See also
hegyi@121
   157
  ///\ref mapwin.
hegyi@96
   158
  void closeMapWin();
hegyi@154
   159
hegyi@154
   160
  ///Sets node representation settings
hegyi@157
   161
  void setView(bool, bool, double, double);
hegyi@154
   162
hegyi@154
   163
  ///Gets node representation settings
hegyi@157
   164
  void getView(bool &, bool &, double&, double&);
hegyi@96
   165
};
hegyi@96
   166
hegyi@96
   167
#endif //NBTAB_H