summaryrefslogtreecommitdiff
path: root/otk
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-02-16 12:23:35 +0000
committerDana Jansens <danakj@orodu.net>2003-02-16 12:23:35 +0000
commitc71738f3f47535492eadcf0e463282b681d2271f (patch)
tree532acdca92e49ba82b2173d9def99c85bc238c72 /otk
parent010e12c42ac2a1a21886785f3c882c38eeebc66e (diff)
let you .focus() a messagedialog
Diffstat (limited to 'otk')
-rw-r--r--otk/messagedialog.cc6
-rw-r--r--otk/messagedialog.hh1
2 files changed, 7 insertions, 0 deletions
diff --git a/otk/messagedialog.cc b/otk/messagedialog.cc
index 21618981..c11a181e 100644
--- a/otk/messagedialog.cc
+++ b/otk/messagedialog.cc
@@ -112,6 +112,12 @@ const DialogButton& MessageDialog::run()
return *_result;
}
+void MessageDialog::focus()
+{
+ if (visible())
+ XSetInputFocus(**display, window(), None, CurrentTime);
+}
+
void MessageDialog::show()
{
std::vector<DialogButton>::const_iterator it, end = _buttons.end();
diff --git a/otk/messagedialog.hh b/otk/messagedialog.hh
index d68c1726..cc8adc70 100644
--- a/otk/messagedialog.hh
+++ b/otk/messagedialog.hh
@@ -40,6 +40,7 @@ public:
virtual void show();
virtual void hide();
+ virtual void focus();
virtual const DialogButton& result() const { return *_result; }
virtual void setResult(const DialogButton &result) { _result = &result; }