diff options
Diffstat (limited to 'src/CommandDialog.cc')
-rw-r--r-- | src/CommandDialog.cc | 69 |
1 files changed, 47 insertions, 22 deletions
diff --git a/src/CommandDialog.cc b/src/CommandDialog.cc index 4396fde..47aeddd 100644 --- a/src/CommandDialog.cc +++ b/src/CommandDialog.cc | |||
@@ -20,7 +20,7 @@ | |||
20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
21 | // DEALINGS IN THE SOFTWARE. | 21 | // DEALINGS IN THE SOFTWARE. |
22 | 22 | ||
23 | // $Id: CommandDialog.cc,v 1.1 2003/12/19 03:53:21 fluxgen Exp $ | 23 | // $Id: CommandDialog.cc,v 1.2 2003/12/19 18:16:01 fluxgen Exp $ |
24 | 24 | ||
25 | #include "CommandDialog.hh" | 25 | #include "CommandDialog.hh" |
26 | 26 | ||
@@ -41,15 +41,12 @@ | |||
41 | #include <memory> | 41 | #include <memory> |
42 | using namespace std; | 42 | using namespace std; |
43 | 43 | ||
44 | //!! | ||
45 | //!! TODO: Fix so it uses the same font as in the theme | ||
46 | //!! | ||
47 | CommandDialog::CommandDialog(BScreen &screen, const std::string &title): | 44 | CommandDialog::CommandDialog(BScreen &screen, const std::string &title): |
48 | FbWindow(screen.rootWindow().screenNumber(), | 45 | FbWindow(screen.rootWindow().screenNumber(), |
49 | 0, 0, 1, 1, 0), | 46 | 0, 0, 200, 1, ExposureMask), |
50 | m_font("fixed"), | 47 | m_font("fixed"), |
51 | m_textbox(*this, m_font, ""), | 48 | m_textbox(*this, m_font, ""), |
52 | m_label(*this, m_font, title), | 49 | m_label(*this, screen.winFrameTheme().font(), title), |
53 | m_gc(m_textbox), | 50 | m_gc(m_textbox), |
54 | m_screen(screen), | 51 | m_screen(screen), |
55 | m_move_x(0), | 52 | m_move_x(0), |
@@ -58,12 +55,13 @@ CommandDialog::CommandDialog(BScreen &screen, const std::string &title): | |||
58 | init(); | 55 | init(); |
59 | 56 | ||
60 | } | 57 | } |
58 | |||
61 | CommandDialog::CommandDialog(BScreen &screen, const std::string &title, const std::string &precommand): | 59 | CommandDialog::CommandDialog(BScreen &screen, const std::string &title, const std::string &precommand): |
62 | FbWindow(screen.rootWindow().screenNumber(), | 60 | FbWindow(screen.rootWindow().screenNumber(), |
63 | 0, 0, 1, 1, 0), | 61 | 0, 0, 200, 1, ExposureMask), |
64 | m_font("fixed"), | 62 | m_font("fixed"), |
65 | m_textbox(*this, m_font, ""), | 63 | m_textbox(*this, m_font, ""), |
66 | m_label(*this, m_font, title), | 64 | m_label(*this, screen.winFrameTheme().font(), title), |
67 | m_gc(m_textbox), | 65 | m_gc(m_textbox), |
68 | m_screen(screen), | 66 | m_screen(screen), |
69 | m_move_x(0), | 67 | m_move_x(0), |
@@ -88,8 +86,17 @@ void CommandDialog::setText(const std::string &text) { | |||
88 | void CommandDialog::show() { | 86 | void CommandDialog::show() { |
89 | FbTk::FbWindow::show(); | 87 | FbTk::FbWindow::show(); |
90 | m_textbox.setInputFocus(); | 88 | m_textbox.setInputFocus(); |
91 | m_textbox.clear(); | ||
92 | m_label.clear(); | 89 | m_label.clear(); |
90 | // resize to correct width, which should be the width of label text | ||
91 | // no need to truncate label text in this dialog | ||
92 | // but if label text size < 200 we set 200 | ||
93 | if (m_label.textWidth() < 200) | ||
94 | return; | ||
95 | else { | ||
96 | resize(m_label.textWidth(), height()); | ||
97 | updateSizes(); | ||
98 | render(); | ||
99 | } | ||
93 | } | 100 | } |
94 | 101 | ||
95 | void CommandDialog::hide() { | 102 | void CommandDialog::hide() { |
@@ -102,6 +109,11 @@ void CommandDialog::hide() { | |||
102 | 109 | ||
103 | } | 110 | } |
104 | 111 | ||
112 | void CommandDialog::exposeEvent(XExposeEvent &event) { | ||
113 | if (event.window == window()) | ||
114 | clearArea(event.x, event.y, event.width, event.height); | ||
115 | } | ||
116 | |||
105 | void CommandDialog::buttonPressEvent(XButtonEvent &event) { | 117 | void CommandDialog::buttonPressEvent(XButtonEvent &event) { |
106 | m_textbox.setInputFocus(); | 118 | m_textbox.setInputFocus(); |
107 | m_move_x = event.x_root - x(); | 119 | m_move_x = event.x_root - x(); |
@@ -131,11 +143,16 @@ void CommandDialog::keyPressEvent(XKeyEvent &event) { | |||
131 | XLookupString(&event, keychar, 1, &ks, 0); | 143 | XLookupString(&event, keychar, 1, &ks, 0); |
132 | 144 | ||
133 | if (ks == XK_Return) { | 145 | if (ks == XK_Return) { |
146 | hide(); // hide and return focus to a FluxboxWindow | ||
134 | // create command from line | 147 | // create command from line |
135 | std::auto_ptr<FbTk::Command> cmd(CommandParser::instance(). | 148 | std::auto_ptr<FbTk::Command> cmd(CommandParser::instance(). |
136 | parseLine(m_precommand + m_textbox.text())); | 149 | parseLine(m_precommand + m_textbox.text())); |
137 | if (cmd.get()) | 150 | if (cmd.get()) |
138 | cmd->execute(); | 151 | cmd->execute(); |
152 | // post execute | ||
153 | if (*m_postcommand != 0) | ||
154 | m_postcommand->execute(); | ||
155 | |||
139 | delete this; // end this | 156 | delete this; // end this |
140 | } else if (ks == XK_Escape) | 157 | } else if (ks == XK_Escape) |
141 | delete this; // end this | 158 | delete this; // end this |
@@ -159,32 +176,40 @@ void CommandDialog::render() { | |||
159 | 176 | ||
160 | void CommandDialog::init() { | 177 | void CommandDialog::init() { |
161 | 178 | ||
162 | m_label.moveResize(0, 0, | 179 | |
163 | 200, m_font.height() + 2); | 180 | // setup label |
164 | // we listen to motion notify too | 181 | // we listen to motion notify too |
165 | m_label.setEventMask(m_label.eventMask() | ButtonPressMask | ButtonMotionMask); | 182 | m_label.setEventMask(m_label.eventMask() | ButtonPressMask | ButtonMotionMask); |
166 | |||
167 | m_label.setGC(m_screen.winFrameTheme().labelTextFocusGC()); | 183 | m_label.setGC(m_screen.winFrameTheme().labelTextFocusGC()); |
168 | render(); | ||
169 | m_label.show(); | 184 | m_label.show(); |
170 | 185 | ||
171 | m_textbox.setBackgroundColor(FbTk::Color("white", m_textbox.screenNumber())); | 186 | // setup text box |
172 | 187 | FbTk::Color white("white", m_textbox.screenNumber()); | |
188 | m_textbox.setBackgroundColor(white); | ||
173 | FbTk::Color black("black", m_textbox.screenNumber()); | 189 | FbTk::Color black("black", m_textbox.screenNumber()); |
174 | m_gc.setForeground(black); | 190 | m_gc.setForeground(black); |
175 | |||
176 | m_textbox.setGC(m_gc.gc()); | 191 | m_textbox.setGC(m_gc.gc()); |
177 | |||
178 | m_textbox.moveResize(0, m_label.height(), | ||
179 | 200, m_font.height() + 2); | ||
180 | m_textbox.show(); | 192 | m_textbox.show(); |
181 | 193 | ||
182 | resize(200, m_textbox.height() + m_label.height()); | 194 | // setup this window |
183 | 195 | setBorderWidth(1); | |
184 | 196 | setBackgroundColor(white); | |
185 | // move to center of the screen | 197 | // move to center of the screen |
186 | move((m_screen.width() - width())/2, (m_screen.height() - height())/2); | 198 | move((m_screen.width() - width())/2, (m_screen.height() - height())/2); |
187 | 199 | ||
200 | updateSizes(); | ||
201 | resize(width(), m_textbox.height() + m_label.height()); | ||
202 | |||
203 | render(); | ||
204 | |||
188 | // we need ConfigureNotify from children | 205 | // we need ConfigureNotify from children |
189 | FbTk::EventManager::instance()->addParent(*this, *this); | 206 | FbTk::EventManager::instance()->addParent(*this, *this); |
190 | } | 207 | } |
208 | |||
209 | void CommandDialog::updateSizes() { | ||
210 | m_label.moveResize(0, 0, | ||
211 | width(), m_font.height() + 2); | ||
212 | |||
213 | m_textbox.moveResize(2, m_label.height(), | ||
214 | width() - 4, m_font.height() + 2); | ||
215 | } | ||