diff options
Diffstat (limited to 'util/fbrun/FbRun.hh')
-rw-r--r-- | util/fbrun/FbRun.hh | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/util/fbrun/FbRun.hh b/util/fbrun/FbRun.hh index f6a544c..7856bdd 100644 --- a/util/fbrun/FbRun.hh +++ b/util/fbrun/FbRun.hh | |||
@@ -19,15 +19,17 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: FbRun.hh,v 1.13 2003/08/27 00:19:57 fluxgen Exp $ | 22 | // $Id: FbRun.hh,v 1.14 2003/08/27 14:04:12 fluxgen Exp $ |
23 | 23 | ||
24 | #ifndef FBRUN_HH | 24 | #ifndef FBRUN_HH |
25 | #define FBRUN_HH | 25 | #define FBRUN_HH |
26 | 26 | ||
27 | #include "EventHandler.hh" | 27 | #include "FbTk/EventHandler.hh" |
28 | #include "Font.hh" | 28 | #include "FbTk/Font.hh" |
29 | #include "FbWindow.hh" | 29 | #include "FbTk/FbWindow.hh" |
30 | #include "TextBox.hh" | 30 | #include "FbTk/TextBox.hh" |
31 | #include "FbTk/GContext.hh" | ||
32 | #include "FbTk/FbPixmap.hh" | ||
31 | 33 | ||
32 | #include <string> | 34 | #include <string> |
33 | #include <vector> | 35 | #include <vector> |
@@ -84,14 +86,14 @@ private: | |||
84 | FbTk::Font m_font; ///< font used to draw command text | 86 | FbTk::Font m_font; ///< font used to draw command text |
85 | Display *m_display; ///< display connection | 87 | Display *m_display; ///< display connection |
86 | int m_bevel; | 88 | int m_bevel; |
87 | GC m_gc; ///< graphic context | 89 | FbTk::GContext m_gc; ///< graphic context |
88 | bool m_end; ///< marks when this object is done | 90 | bool m_end; ///< marks when this object is done |
89 | std::vector<std::string> m_history; ///< history list of commands | 91 | std::vector<std::string> m_history; ///< history list of commands |
90 | size_t m_current_history_item; ///< holds current position in command history | 92 | size_t m_current_history_item; ///< holds current position in command history |
91 | std::string m_history_file; ///< holds filename for command history file | 93 | std::string m_history_file; ///< holds filename for command history file |
92 | Cursor m_cursor; | 94 | Cursor m_cursor; |
93 | 95 | ||
94 | Pixmap m_pixmap; | 96 | FbTk::FbPixmap m_pixmap; |
95 | }; | 97 | }; |
96 | 98 | ||
97 | #endif // FBRUN_HH | 99 | #endif // FBRUN_HH |