aboutsummaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2013-06-25 00:37:59 +0000
committerdos-reis <gdr@axiomatics.org>2013-06-25 00:37:59 +0000
commitbba0c431de24f2291011be1960eeb1f5d15dfb8b (patch)
tree31f9c9c1ea427283161c2fb22bbdee9caba25639 /src/gui
parent36db462d3a02e5df058861589b60d1f9c808e7c3 (diff)
downloadopen-axiom-bba0c431de24f2291011be1960eeb1f5d15dfb8b.tar.gz
Misc cleanup.
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/conversation.cc10
-rw-r--r--src/gui/server.h5
2 files changed, 7 insertions, 8 deletions
diff --git a/src/gui/conversation.cc b/src/gui/conversation.cc
index 6a1ecb18..9ffa4679 100644
--- a/src/gui/conversation.cc
+++ b/src/gui/conversation.cc
@@ -218,12 +218,6 @@ namespace OpenAxiom {
this, SLOT(reply_to_query()));
}
- // Transfter focus to this input area.
- static void
- give_focus_to(Question* q) {
- q->setFocus(Qt::OtherFocusReason);
- }
-
static void ensure_visibility(Debate* debate, Exchange* e) {
const int y = e->y() + e->height();
QScrollBar* vbar = debate->verticalScrollBar();
@@ -233,7 +227,7 @@ namespace OpenAxiom {
vbar->setValue(std::max(new_value, 0));
else if (new_value > value)
vbar->setValue(std::min(new_value, vbar->maximum()));
- give_focus_to(e->question());
+ e->question()->setFocus(Qt::OtherFocusReason);
}
void
@@ -242,6 +236,8 @@ namespace OpenAxiom {
if (empty_string(input))
return;
question()->setReadOnly(true); // Make query area read only.
+ question()->clearFocus();
+ question()->setFocusPolicy(Qt::NoFocus);
server()->input(input);
QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
}
diff --git a/src/gui/server.h b/src/gui/server.h
index 8cf1f227..acb691d7 100644
--- a/src/gui/server.h
+++ b/src/gui/server.h
@@ -1,4 +1,4 @@
-// Copyright (C) 2013, Gabriel Dos Reis.
+// Copyright (C) 2011-2013, Gabriel Dos Reis.
// All rights reserved.
// Written by Gabriel Dos Reis.
//
@@ -49,6 +49,9 @@ namespace OpenAxiom {
private:
Command cmd;
Filesystem fs;
+
+ Server(const Server&) = delete;
+ Server& operator=(const Server&) = delete;
};
}