aboutsummaryrefslogtreecommitdiff
path: root/src/TextDialog.hh
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2008-08-17 11:10:17 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2008-08-17 11:10:17 (GMT)
commita23778a44d2469fdc414884f5fe72fde09c100cc (patch)
treedcff8778bef2f70fb1112f60f6de290a0aebe777 /src/TextDialog.hh
parent72fd5e03a48396e6feec86534d266c68a9edd915 (diff)
downloadfluxbox-a23778a44d2469fdc414884f5fe72fde09c100cc.zip
fluxbox-a23778a44d2469fdc414884f5fe72fde09c100cc.tar.bz2
add SetTitle and SetTitleDialog key commands
Diffstat (limited to 'src/TextDialog.hh')
-rw-r--r--src/TextDialog.hh64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/TextDialog.hh b/src/TextDialog.hh
new file mode 100644
index 0000000..41579b1
--- /dev/null
+++ b/src/TextDialog.hh
@@ -0,0 +1,64 @@
1// CommandDialog.hh
2// Copyright (c) 2008 Fluxbox Team (fluxgen at fluxbox dot org)
3//
4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"),
6// to deal in the Software without restriction, including without limitation
7// the rights to use, copy, modify, merge, publish, distribute, sublicense,
8// and/or sell copies of the Software, and to permit persons to whom the
9// Software is furnished to do so, subject to the following conditions:
10//
11// The above copyright notice and this permission notice shall be included in
12// all copies or substantial portions of the Software.
13//
14// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE.
21
22#ifndef TEXTDIALOG_HH
23#define TEXTDIALOG_HH
24
25#include "FbTk/TextBox.hh"
26#include "FbTk/TextButton.hh"
27#include "FbTk/GContext.hh"
28
29class BScreen;
30
31class TextDialog: public FbTk::FbWindow, public FbTk::EventHandler {
32public:
33 TextDialog(BScreen &screen, const std::string &title);
34 virtual ~TextDialog();
35
36 /// Sets the entry text.
37 void setText(const std::string &text);
38
39 void show();
40 void hide();
41
42 void exposeEvent(XExposeEvent &event);
43 void motionNotifyEvent(XMotionEvent &event);
44 void buttonPressEvent(XButtonEvent &event);
45 void handleEvent(XEvent &event);
46 void keyPressEvent(XKeyEvent &event);
47
48protected:
49 virtual void exec(const std::string &text) = 0;
50 virtual void tabComplete() { }
51
52 void init();
53 void render();
54 void updateSizes();
55
56 FbTk::TextBox m_textbox; //< entry field
57 FbTk::TextButton m_label; //< text in the titlebar
58 FbTk::GContext m_gc;
59 BScreen &m_screen;
60 int m_move_x, m_move_y;
61 Pixmap m_pixmap;
62};
63
64#endif // TEXTDIALOG_HH