aboutsummaryrefslogtreecommitdiff
path: root/util/fbrun/FbRun.hh
blob: e351d28d6386e62e955d0fe25f89ed9d6431b283 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// FbRun.hh
// Copyright (c) 2002 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org)
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.

#ifndef FBRUN_HH
#define FBRUN_HH

#include "FbTk/EventHandler.hh"
#include "FbTk/Font.hh"
#include "FbTk/FbWindow.hh"
#include "FbTk/TextBox.hh"
#include "FbTk/GContext.hh"
#include "FbTk/FbPixmap.hh"

#include <string>
#include <vector>

/**
   Creates and managed a run window
*/
class FbRun: public FbTk::TextBox {
public:
    FbRun(int x = 0, int y = 0, size_t width = 200);
    ~FbRun();
    void setTitle(const std::string &title);
    void resize(unsigned int width, unsigned int height);
    void setPrint(bool print) { m_print = print; }
    void setAutocomplete(bool complete) { m_autocomplete = complete; }

    /// load and reconfigure for new font
    bool loadFont(const std::string &fontname);
    void setForegroundColor(const FbTk::Color &color);
    void setAntialias(bool val) { /*m_font.setAntialias(val);*/ }
    const FbTk::Font &font() const { return m_font; }
    /// execute command and exit
    void run(const std::string &execstring);
    /// is this application done?
    bool end() const { return m_end; }
    /**
       loads history file.
       @return true on success, else false
    */
    bool loadHistory(const char *filename);
    bool loadCompletion(const char *filename);
    /**
       @name events
    */
    ///@{
    void keyPressEvent(XKeyEvent &ev);
    ///@}

    /// set no maximizable for this window
    void lockPosition(bool size_too);

private:
    void nextHistoryItem();
    void prevHistoryItem();
    void drawString(int x, int y, const char *text, size_t len);
    void getSize(size_t &width, size_t &height);
    void createWindow(int x, int y, size_t width, size_t height);
    void redrawLabel();

    void insertCharacter(char key);
    void adjustStartPos();
    void adjustEndPos();
    void firstHistoryItem();
    void lastHistoryItem();
    void tabComplete(const std::vector<std::string> &list, int &current, bool reverse = false);
    void tabCompleteApps();

    bool m_print; ///< the input should be printed to stdout rather than run
    FbTk::Font m_font; ///< font used to draw command text
    Display *m_display;  ///< display connection
    int m_bevel;
    FbTk::GContext m_gc; ///< graphic context
    bool m_end; ///< marks when this object is done

    std::vector<std::string> m_history; ///< history list of commands
    std::string m_history_file; ///< holds filename for command history file
    int m_current_history_item; ///< holds current position in command history

    std::vector<std::string> m_files;
    int m_current_files_item;
    std::string m_last_completion_path; ///< last prefix we completed on

    std::vector<std::string> m_apps;
    int m_current_apps_item; ///< holds current position in apps-history

    size_t m_completion_pos;
    bool m_autocomplete;

    Cursor m_cursor;

    FbTk::FbPixmap m_pixmap;
};

#endif // FBRUN_HH