Lumiera  0.pre.03
»edit your freedom«
focus-tracker.hpp
Go to the documentation of this file.
1 /*
2  FOCUS-TRACKER.hpp - track focus and activation changes to move the activity spot
3 
4  Copyright (C)
5  2017, Hermann Vosseler <Ichthyostega@web.de>
6 
7   **Lumiera** is free software; you can redistribute it and/or modify it
8   under the terms of the GNU General Public License as published by the
9   Free Software Foundation; either version 2 of the License, or (at your
10   option) any later version. See the file COPYING for further details.
11 
12 */
13 
14 
45 #ifndef STAGE_INTERACT_FOCUS_TRACKER_H
46 #define STAGE_INTERACT_FOCUS_TRACKER_H
47 
48 #include "stage/gtk-base.hpp"
49 #include "lib/nocopy.hpp"
50 
51 //#include <string>
52 //#include <memory>
53 
54 
55 namespace stage {
56 namespace interact {
57 
58 // using std::unique_ptr;
59 // using std::string;
60 
61 // class GlobalCtx;
62  class Navigator;
63 
64 
65 
76  {
77  Navigator& navigator_;
78 
79  public:
81  ~FocusTracker ();
82 
83  private:
84 
85  };
86 
87 
88 
89 }}// namespace stage::interact
90 #endif /*STAGE_INTERACT_FOCUS_TRACKER_H*/
Helper to pick up typical focus/activity changes, for the purpose of keeping a coherent system of Wor...
Any copy and copy construction prohibited.
Definition: nocopy.hpp:37
Mix-Ins to allow or prohibit various degrees of copying and cloning.
Lumiera GTK UI implementation root.
Definition: guifacade.cpp:37
A set of basic GTK includes for the UI.
Global cross-cutting navigation within user interface space.
Definition: navigator.hpp:58